Skip to content

Commit 00611d8

Browse files
peffgitster
authored andcommitted
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>
1 parent b68e875 commit 00611d8

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1594,6 +1594,7 @@ BASIC_CFLAGS += -DSHA1DC_FORCE_ALIGNED_ACCESS
15941594
endif
15951595
ifneq ($(filter leak,$(SANITIZERS)),)
15961596
BASIC_CFLAGS += -O0
1597+
NO_MMAP = CatchMapLeaks
15971598
SANITIZE_LEAK = YesCompiledWithIt
15981599
endif
15991600
ifneq ($(filter address,$(SANITIZERS)),)

0 commit comments

Comments
 (0)