Merge "Append ".static" to ubsan runtime for static binaries" am: e2f39b038d

Original change: https://android-review.googlesource.com/c/platform/build/soong/+/1655969

Change-Id: I0751f20ee8b2064c1e20fc2adf20fca4165fe443
This commit is contained in:
Treehugger Robot 2021-03-30 03:30:13 +00:00 committed by Automerger Merge Worker
commit c1f3f6acbc
1 changed files with 3 additions and 0 deletions

View File

@ -1129,6 +1129,9 @@ func sanitizerRuntimeMutator(mctx android.BottomUpMutatorContext) {
Bool(c.sanitize.Properties.Sanitize.Undefined) ||
Bool(c.sanitize.Properties.Sanitize.All_undefined) {
runtimeLibrary = config.UndefinedBehaviorSanitizerRuntimeLibrary(toolchain)
if c.staticBinary() {
runtimeLibrary += ".static"
}
}
if runtimeLibrary != "" && (toolchain.Bionic() || c.sanitize.Properties.UbsanRuntimeDep) {