about summary refs log tree commit diff stats
path: root/makefile
diff options
context:
space:
mode:
Diffstat (limited to 'makefile')
-rw-r--r--makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/makefile b/makefile
index 2ccf8f2c..50f88f7c 100644
--- a/makefile
+++ b/makefile
@@ -26,7 +26,7 @@ valgrind: clang
 	valgrind --leak-check=yes -q --error-exitcode=1 ./mu test
 
 clang: makefile mu.cc termbox/libtermbox.a autogenerated_lists
-	clang++ -fsanitize=undefined mu.cc termbox/libtermbox.a -o mu
+	clang++ -g -fsanitize=undefined mu.cc termbox/libtermbox.a -o mu
 
 clang+opt: makefile mu.cc termbox/libtermbox.a autogenerated_lists
 	clang++ -O3 -fsanitize=undefined mu.cc termbox/libtermbox.a -o mu