diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2015-06-22 00:56:44 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2015-06-22 00:56:44 -0700 |
commit | c49efefc235e2cf91a44f4459b67ad780dd3bb1f (patch) | |
tree | c2976bded42dc877ad5c89ec948c62827a28af82 /makefile | |
parent | 290fe117c444399495a83266d602e2f4fc3fc099 (diff) | |
download | mu-c49efefc235e2cf91a44f4459b67ad780dd3bb1f.tar.gz |
1619
Diffstat (limited to 'makefile')
-rw-r--r-- | makefile | 2 |
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 |