aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff King <peff@peff.net>2026-03-05 18:13:05 -0500
committerJunio C Hamano <gitster@pobox.com>2026-03-06 21:12:10 -0800
commit00611d86c66f4230eb229b2b7dc5ac413aef2221 (patch)
treed31f030719dc2802e492957a4e9f4358a54fc919
parentb68e875bec29e538a67ad38009ea1c02fa877258 (diff)
downloadgit-00611d86c66f4230eb229b2b7dc5ac413aef2221.tar.xz
Makefile: turn on NO_MMAP when building with LSan
The past few commits fixed some cases where we leak memory allocated by mmap(). Building with SANITIZE=leak doesn't detect these because it covers only heap buffers allocated by malloc(). But if we build with NO_MMAP, our compat mmap() implementation will allocate a heap buffer and pread() into it. And thus Lsan will detect these leaks for free. Using NO_MMAP is less performant, of course, since we have to use extra memory and read in the whole file, rather than faulting in pages from disk. But LSan builds are already slow, and this doesn't make them measurably worse. Getting extra coverage for our leak-checking is worth it. Signed-off-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r--Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 8aa489f3b6..6b121daf1e 100644
--- a/Makefile
+++ b/Makefile
@@ -1594,6 +1594,7 @@ BASIC_CFLAGS += -DSHA1DC_FORCE_ALIGNED_ACCESS
endif
ifneq ($(filter leak,$(SANITIZERS)),)
BASIC_CFLAGS += -O0
+NO_MMAP = CatchMapLeaks
SANITIZE_LEAK = YesCompiledWithIt
endif
ifneq ($(filter address,$(SANITIZERS)),)