Allow cc_object modules to use STL

cc_object modules may need access to the STL headers.

Test: m checkbuild
Change-Id: I88ad556a349d9530d24949f05eebf8b6fab4c62a
This commit is contained in:
Colin Cross 2018-09-27 11:02:39 -07:00
parent daf5ec0c28
commit 907769f0fb
1 changed files with 1 additions and 0 deletions

View File

@ -39,6 +39,7 @@ func objectFactory() android.Module {
baseLinker: NewBaseLinker(nil),
}
module.compiler = NewBaseCompiler()
module.stl = &stl{}
return module.Init()
}