aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2024-03-25 16:29:26 -0700
committerElliott Hughes <enh@google.com>2024-03-25 16:29:26 -0700
commitc903b8d69fbe7a2405dcec600f7deb90b0a08206 (patch)
tree81c2b40e60487dfd0bb6b9b8772bbc59f96d7956
parent949157d58251ca627f3a06c4eb468e6002f5206a (diff)
downloadsoong-c903b8d69fbe7a2405dcec600f7deb90b0a08206.tar.gz
Re-enable abi checking for hwasan builds.
The tool that had the bug this disablement worked around is no longer in use, and the current tool "works for me"... Test: ran locally Change-Id: I801da20a00f54a90777b99ea264d9ab420b7f942
-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()
}