From cc16e74f8bd5cc171726f8cb558f600ac3aed28c Mon Sep 17 00:00:00 2001 From: John Sully Date: Sun, 7 Jun 2020 20:17:32 -0400 Subject: [PATCH] fix valgrind false error Former-commit-id: 887d8bdd110e04b30ffb215726e8aade39f0387a --- src/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Makefile b/src/Makefile index 81ccece77..b85500cfe 100644 --- a/src/Makefile +++ b/src/Makefile @@ -425,7 +425,7 @@ noopt: $(MAKE) OPTIMIZATION="-O0" valgrind: - $(MAKE) OPTIMIZATION="-O0" MALLOC="libc" + $(MAKE) OPTIMIZATION="-O0" MALLOC="libc" CFLAGS="-DSANITIZE" CXXFLAGS="-DSANITIZE" helgrind: $(MAKE) OPTIMIZATION="-O0" MALLOC="libc" CFLAGS="-D__ATOMIC_VAR_FORCE_SYNC_MACROS"