Merge "rust: Temporarily disable ASAN builds for Host" into main

This commit is contained in:
Ivan Lozano
2023-10-12 12:53:43 +00:00
committed by Gerrit Code Review

View File

@@ -203,6 +203,11 @@ func (sanitize *sanitize) begin(ctx BaseModuleContext) {
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