commit | 4a97cb432823899dfc70cd5a874409b353e08115 | [log] [tgz] |
---|---|---|
author | Colin Cross <ccross@android.com> | Thu Apr 21 15:53:42 2016 -0700 |
committer | Colin Cross <ccross@android.com> | Thu Apr 21 16:39:28 2016 -0700 |
tree | 004ff0092a63cbc1073f52afe51d0a5881fc9c89 | |
parent | a8e07cc6530b08e67aaf3bb6f64bedfc753d344f [diff] [blame] |
Support "none" for stl when using ndk Change-Id: I13ecf0a6be591814546a9a1c8b8356988348feb0
diff --git a/cc/stl.go b/cc/stl.go index 23989d3..b84bb6a 100644 --- a/cc/stl.go +++ b/cc/stl.go
@@ -46,6 +46,8 @@ "stlport_shared", "stlport_static", "gnustl_static": return "ndk_lib" + stl.Properties.Stl + case "none": + return "" default: ctx.ModuleErrorf("stl: %q is not a supported STL with sdk_version set", stl.Properties.Stl) return ""