Make change and version bump to SD2A.210527.002

Change-Id: Ibb566f70ca72d9f69ab47c4a692aedeadde4d77a
This commit is contained in:
android-build-team Robot 2021-05-27 11:22:03 +00:00
commit 1dea90c0af
2 changed files with 8 additions and 1 deletions

View File

@ -18,4 +18,4 @@
# (like "CRB01"). It must be a single word, and is
# capitalized by convention.
BUILD_ID=SD2A.210527.001
BUILD_ID=SD2A.210527.002

View File

@ -167,6 +167,13 @@ ifneq ($(filter address,$(my_sanitize)),)
my_sanitize_diag := $(filter-out cfi,$(my_sanitize_diag))
endif
# Disable memtag for host targets. Host executables in AndroidMk files are
# deprecated, but some partners still have them floating around.
ifdef LOCAL_IS_HOST_MODULE
my_sanitize := $(filter-out memtag_heap,$(my_sanitize))
my_sanitize_diag := $(filter-out memtag_heap,$(my_sanitize_diag))
endif
# Disable sanitizers which need the UBSan runtime for host targets.
ifdef LOCAL_IS_HOST_MODULE
my_sanitize := $(filter-out cfi,$(my_sanitize))