Stubs libs are built with version script
Stubs libs are built with the generated version script file. Bug: 120266448 (comment #23) Test: lunch walleye_hwasan-userdebug make SANITIZE_TARGET=hwaddress oatdump Change-Id: I38652e61d0b336227b7f541590b0e70fe291f0a3
This commit is contained in:
@@ -646,6 +646,11 @@ func (library *libraryDecorator) linkShared(ctx ModuleContext,
|
||||
linkerDeps = append(linkerDeps, forceWeakSymbols.Path())
|
||||
}
|
||||
}
|
||||
if library.buildStubs() {
|
||||
linkerScriptFlags := "-Wl,--version-script," + library.versionScriptPath.String()
|
||||
flags.LdFlags = append(flags.LdFlags, linkerScriptFlags)
|
||||
linkerDeps = append(linkerDeps, library.versionScriptPath)
|
||||
}
|
||||
|
||||
fileName := library.getLibName(ctx) + flags.Toolchain.ShlibSuffix()
|
||||
outputFile := android.PathForModuleOut(ctx, fileName)
|
||||
|
Reference in New Issue
Block a user