Add AArch64 device Rust toolchain.
Bug: 141207434 Test: build example rust device module. Change-Id: I0932a614942bf4a4d4b6c153fcc4fc79c7f202bd
This commit is contained in:
@@ -191,6 +191,16 @@ func (library *libraryDecorator) compilerProps() []interface{} {
|
||||
&library.MutatedProperties)
|
||||
}
|
||||
|
||||
func (library *libraryDecorator) compilerDeps(ctx DepsContext, deps Deps) Deps {
|
||||
deps = library.baseCompiler.compilerDeps(ctx, deps)
|
||||
|
||||
if ctx.toolchain().Bionic() && library.dylib() {
|
||||
deps = library.baseCompiler.bionicDeps(ctx, deps)
|
||||
}
|
||||
|
||||
return deps
|
||||
}
|
||||
|
||||
func (library *libraryDecorator) compile(ctx ModuleContext, flags Flags, deps PathDeps) android.Path {
|
||||
var outputFile android.WritablePath
|
||||
|
||||
|
Reference in New Issue
Block a user