aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAryadev Chavali <aryadev@aryadevchavali.com>2021-11-23 06:08:44 +0000
committerAryadev Chavali <aryadev@aryadevchavali.com>2021-11-23 06:08:44 +0000
commit868af38c6784ca7a8c63750cd0b56937e6704ac7 (patch)
tree07dfddf3b2752b9bf75c712f9e80384e2f9ab088
parentf8093dceca4800991ba1f18ea9e379d37ea597f4 (diff)
downloadalgorithms-868af38c6784ca7a8c63750cd0b56937e6704ac7.tar.gz
algorithms-868af38c6784ca7a8c63750cd0b56937e6704ac7.tar.bz2
algorithms-868af38c6784ca7a8c63750cd0b56937e6704ac7.zip
(General)~memcheck recipes now has --show-leak-kinds=all
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 8e575b7..171f2af 100644
--- a/Makefile
+++ b/Makefile
@@ -6,11 +6,11 @@ list: list.cpp
.PHONY: memcheck_list
memcheck_list: list
- valgrind --leak-check=full ./list;
+ valgrind --show-leak-kinds=all --leak-check=full ./list;
btree: btree.cpp
$(CC) $(CFLAGS) $^ -o $@
.PHONY: memcheck_btree
memcheck_btree: btree
- valgrind --leak-check=full ./btree;
+ valgrind --show-leak-kinds=all --leak-check=full ./btree;