Support "none" for stl when using ndk
Change-Id: I13ecf0a6be591814546a9a1c8b8356988348feb0
This commit is contained in:
parent
a8e07cc653
commit
4a97cb4328
1 changed files with 2 additions and 0 deletions
|
@ -46,6 +46,8 @@ func (stl *stl) begin(ctx BaseModuleContext) {
|
||||||
"stlport_shared", "stlport_static",
|
"stlport_shared", "stlport_static",
|
||||||
"gnustl_static":
|
"gnustl_static":
|
||||||
return "ndk_lib" + stl.Properties.Stl
|
return "ndk_lib" + stl.Properties.Stl
|
||||||
|
case "none":
|
||||||
|
return ""
|
||||||
default:
|
default:
|
||||||
ctx.ModuleErrorf("stl: %q is not a supported STL with sdk_version set", stl.Properties.Stl)
|
ctx.ModuleErrorf("stl: %q is not a supported STL with sdk_version set", stl.Properties.Stl)
|
||||||
return ""
|
return ""
|
||||||
|
|
Loading…
Reference in a new issue