aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2024-03-26 21:02:38 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2024-03-26 21:02:38 +0000
commit41da84b2e63502d1823c956316626fa1d28d869e (patch)
tree867a5b38ad58e51bc58983cb3adf1b12d9a70b9f
parent3e39bb6025c4b5c654156e2ae081ac5fa335f8ab (diff)
parentc903b8d69fbe7a2405dcec600f7deb90b0a08206 (diff)
downloadsoong-41da84b2e63502d1823c956316626fa1d28d869e.tar.gz
Merge "Re-enable abi checking for hwasan builds." into main
-rw-r--r--cc/ndk_library.go7
1 files changed, 0 insertions, 7 deletions
diff --git a/cc/ndk_library.go b/cc/ndk_library.go
index 183e81805..64193b166 100644
--- a/cc/ndk_library.go
+++ b/cc/ndk_library.go
@@ -325,13 +325,6 @@ func canDumpAbi(config android.Config) bool {
if runtime.GOOS == "darwin" {
return false
}
- // abidw doesn't currently handle top-byte-ignore correctly. Disable ABI
- // dumping for those configs while we wait for a fix. We'll still have ABI
- // checking coverage from non-hwasan builds.
- // http://b/190554910
- if android.InList("hwaddress", config.SanitizeDevice()) {
- return false
- }
// http://b/156513478
return config.ReleaseNdkAbiMonitored()
}