From: H.J. Lu Date: Mon, 17 Nov 2014 22:12:55 +0000 (+0000) Subject: Export "detect_leaks=0" X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=5a4e7cade9b48522942a62b1064a4bd6b02f95e0;p=gcc.git Export "detect_leaks=0" PR bootstrap/63888 * bootstrap-asan.mk (ASAN_OPTIONS): Export "detect_leaks=0". From-SVN: r217678 --- diff --git a/config/ChangeLog b/config/ChangeLog index 793e4d263b9..6f27566974d 100644 --- a/config/ChangeLog +++ b/config/ChangeLog @@ -1,3 +1,8 @@ +2014-11-17 H.J. Lu + + PR bootstrap/63888 + * bootstrap-asan.mk (ASAN_OPTIONS): Export "detect_leaks=0". + 2014-11-13 Kirill Yukhin * target-posix: New file. diff --git a/config/bootstrap-asan.mk b/config/bootstrap-asan.mk index fbef02125dc..52ef30e99c8 100644 --- a/config/bootstrap-asan.mk +++ b/config/bootstrap-asan.mk @@ -1,5 +1,8 @@ # This option enables -fsanitize=address for stage2 and stage3. +# Suppress LeakSanitizer in bootstrap. +export ASAN_OPTIONS="detect_leaks=0" + STAGE2_CFLAGS += -fsanitize=address STAGE3_CFLAGS += -fsanitize=address POSTSTAGE1_LDFLAGS += -fsanitize=address -static-libasan \