Add crtbegin_so/crtend_so to Bionic Rust libraries.
Bug: 153430438 Test: Example library no longer experiences linkage errors during build. Change-Id: I73870a68693415b37c9b7bf051b1879bcb8df0c6
This commit is contained in:
parent
1c5d4fe4f7
commit
12ee9cac91
|
@ -318,6 +318,8 @@ func (library *libraryDecorator) compilerDeps(ctx DepsContext, deps Deps) Deps {
|
|||
|
||||
if ctx.toolchain().Bionic() && (library.dylib() || library.shared()) {
|
||||
deps = library.baseCompiler.bionicDeps(ctx, deps)
|
||||
deps.CrtBegin = "crtbegin_so"
|
||||
deps.CrtEnd = "crtend_so"
|
||||
}
|
||||
|
||||
return deps
|
||||
|
|
Loading…
Reference in New Issue