Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a066a603 authored by Treehugger Robot's avatar Treehugger Robot Committed by Automerger Merge Worker
Browse files

Merge "[config_sanitizers] Support LOCAL_SANITIZE_BLOCKLIST" am: 96abdc1b...

Merge "[config_sanitizers] Support LOCAL_SANITIZE_BLOCKLIST" am: 96abdc1b am: 9e3142d3 am: 43455d8f am: 1c137f3f

Original change: https://android-review.googlesource.com/c/platform/build/+/1380903

Change-Id: I0bf5aa70547d2625fc1f4644057768f996d740c2
parents b7a00ac3 1c137f3f
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -259,6 +259,7 @@ LOCAL_SANITIZE_DIAG:=
LOCAL_SANITIZE_RECOVER:=
LOCAL_SANITIZE_NO_RECOVER:=
LOCAL_SANITIZE_BLACKLIST :=
LOCAL_SANITIZE_BLOCKLIST :=
LOCAL_SDK_LIBRARIES :=
LOCAL_SDK_RES_VERSION:=
LOCAL_SDK_VERSION:=
+3 −0
Original line number Diff line number Diff line
@@ -147,6 +147,9 @@ ifneq ($(my_sanitize)$(my_global_sanitize),)
  ifneq ($(LOCAL_SANITIZE_BLACKLIST),)
    my_cflags += -fsanitize-blacklist=$(LOCAL_PATH)/$(LOCAL_SANITIZE_BLACKLIST)
  endif
  ifneq ($(LOCAL_SANITIZE_BLOCKLIST),)
    my_cflags += -fsanitize-blacklist=$(LOCAL_PATH)/$(LOCAL_SANITIZE_BLOCKLIST)
  endif
endif

# Disable integer_overflow if LOCAL_NOSANITIZE=integer.