Increase max stack frame for sanitizers to handle x86.
Currently, when building asan-ified Android image
for aosp_x86-eng, it surpasses the limit for the
stack frame size and stops the compilation.
The resulting image (after increasing the limit)
was tested in the emulator.
Change-Id: I99c4871f38abab526bdf28575f44400432ec61ba
diff --git a/build/Android.common_build.mk b/build/Android.common_build.mk
index ad2feeb..acce68b 100644
--- a/build/Android.common_build.mk
+++ b/build/Android.common_build.mk
@@ -333,7 +333,7 @@
ifneq ($(NATIVE_COVERAGE),true)
art_host_non_debug_cflags += -Wframe-larger-than=2700
ifdef SANITIZE_TARGET
- art_target_non_debug_cflags += -Wframe-larger-than=5450
+ art_target_non_debug_cflags += -Wframe-larger-than=6400
else
art_target_non_debug_cflags += -Wframe-larger-than=1728
endif