about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-06-22 00:56:44 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-06-22 00:56:44 -0700
commitc49efefc235e2cf91a44f4459b67ad780dd3bb1f (patch)
treec2976bded42dc877ad5c89ec948c62827a28af82
parent290fe117c444399495a83266d602e2f4fc3fc099 (diff)
downloadmu-c49efefc235e2cf91a44f4459b67ad780dd3bb1f.tar.gz
1619
-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