summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2020-02-14 20:42:29 (GMT)
committerJunio C Hamano <gitster@pobox.com>2020-02-14 20:42:29 (GMT)
commit54bbadaeca930183989bcd097bde7befa98dc2f9 (patch)
treefb8b156be7627ec4672c5a86cda98820894ed3f6 /Makefile
parent8dbeba198ee6759874bb68a74131d1d3adfd75ea (diff)
parentf65d07fffaadc556b1a18cda7bb611c7f68717ea (diff)
downloadgit-54bbadaeca930183989bcd097bde7befa98dc2f9.zip
git-54bbadaeca930183989bcd097bde7befa98dc2f9.tar.gz
git-54bbadaeca930183989bcd097bde7befa98dc2f9.tar.bz2
Merge branch 'jk/asan-build-fix' into maint
Work around test breakages caused by custom regex engine used in libasan, when address sanitizer is used with more recent versions of gcc and clang. * jk/asan-build-fix: Makefile: use compat regex with SANITIZE=address
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 09f98b7..9cd9826 100644
--- a/Makefile
+++ b/Makefile
@@ -1220,6 +1220,9 @@ endif
ifneq ($(filter leak,$(SANITIZERS)),)
BASIC_CFLAGS += -DSUPPRESS_ANNOTATED_LEAKS
endif
+ifneq ($(filter address,$(SANITIZERS)),)
+NO_REGEX = NeededForASAN
+endif
endif
ifndef sysconfdir