commit | 91738fddb39dc51874563c7ece2073075a3069fd | [log] [tgz] |
---|---|---|
author | Ivan Lozano <ivanlozano@google.com> | Thu Oct 12 12:53:43 2023 +0000 |
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | Thu Oct 12 12:53:43 2023 +0000 |
tree | d1d903b853afa4ed41780ec94998ffcec62c98e8 | |
parent | 57beac1b762e0c2da5aad5fe71cb5b81cfeaa01b [diff] | |
parent | 839b5f9ac535f3996f15ab78f6837ed1c5deda24 [diff] |
Merge "rust: Temporarily disable ASAN builds for Host" into main
diff --git a/rust/sanitize.go b/rust/sanitize.go index 2f5afd7..0b10435 100644 --- a/rust/sanitize.go +++ b/rust/sanitize.go
@@ -203,6 +203,11 @@ s.Address = nil } + // TODO: Remove once b/304507701 is resolved + if Bool(s.Address) && ctx.Host() { + s.Address = nil + } + // Memtag_heap is only implemented on AArch64. if ctx.Arch().ArchType != android.Arm64 || !ctx.Os().Bionic() { s.Memtag_heap = nil