Add ubsan_standalone library name to the toolchain.
and export the library name to make. Refactor the code a bit to avoid repeating the library name
multiple times.
Bug: 22033465
Test: Ran external/clang/build.py for aosp-llvm
Change-Id: I25eb3858eb92e1dd493b09524d559802551b2547
diff --git a/cc/config/mips64_device.go b/cc/config/mips64_device.go
index f6132dc..e414c7e 100644
--- a/cc/config/mips64_device.go
+++ b/cc/config/mips64_device.go
@@ -177,8 +177,8 @@
return "${config.Mips64ClangLdflags}"
}
-func (toolchainMips64) AddressSanitizerRuntimeLibrary() string {
- return "libclang_rt.asan-mips64-android.so"
+func (toolchainMips64) SanitizerRuntimeLibraryArch() string {
+ return "mips64"
}
func mips64ToolchainFactory(arch android.Arch) Toolchain {