Drop rust dependency on musl_linker_script
musl_linker_script is no longer required as the entry point is now _start. Bug: 242601708 Test: m USE_HOST_MUSL=true host-native Change-Id: I5acfaeb181a2dd39aac72edd94bd2030881d9d27
This commit is contained in:
@@ -106,7 +106,7 @@ func (binary *binaryDecorator) compilerDeps(ctx DepsContext, deps Deps) Deps {
|
||||
if static {
|
||||
deps.CrtBegin = []string{"libc_musl_crtbegin_static"}
|
||||
} else {
|
||||
deps.CrtBegin = []string{"libc_musl_crtbegin_dynamic", "musl_linker_script"}
|
||||
deps.CrtBegin = []string{"libc_musl_crtbegin_dynamic"}
|
||||
}
|
||||
deps.CrtEnd = []string{"libc_musl_crtend"}
|
||||
}
|
||||
|
Reference in New Issue
Block a user