am fbaaddc5
: am 19584247
: am ee08fb53
: Merge "asan: update condition to work with multiple SANITIZE_TARGET values."
* commit 'fbaaddc588f9d716cff71225a5c510f3b33b90cf': asan: update condition to work with multiple SANITIZE_TARGET values.
This commit is contained in:
commit
f09111a9dd
1 changed files with 2 additions and 2 deletions
|
@ -13,7 +13,7 @@ include $(BUILD_PREBUILT)
|
|||
|
||||
#######################################
|
||||
# asan.options
|
||||
ifeq (address,$(strip $(SANITIZE_TARGET)))
|
||||
ifneq ($(filter address,$(SANITIZE_TARGET)),)
|
||||
include $(CLEAR_VARS)
|
||||
|
||||
LOCAL_MODULE := asan.options
|
||||
|
@ -33,7 +33,7 @@ LOCAL_MODULE := init.environ.rc
|
|||
LOCAL_MODULE_PATH := $(TARGET_ROOT_OUT)
|
||||
|
||||
EXPORT_GLOBAL_ASAN_OPTIONS :=
|
||||
ifeq (address,$(strip $(SANITIZE_TARGET)))
|
||||
ifneq ($(filter address,$(SANITIZE_TARGET)),)
|
||||
EXPORT_GLOBAL_ASAN_OPTIONS := export ASAN_OPTIONS include=/system/asan.options
|
||||
LOCAL_REQUIRED_MODULES := asan.options
|
||||
endif
|
||||
|
|
Loading…
Reference in a new issue