about summary refs log tree commit diff stats
path: root/build_and_test_until
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-09-14 23:10:31 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-09-14 23:10:31 -0700
commite28fa5f1508ef7ffeb0b72406558534928c28f9e (patch)
treebb223bb8e4031ad37dfe8b58054a4db696940ad3 /build_and_test_until
parent9c362f85a1171f3dcc7f415029ce2ba7d610715d (diff)
downloadmu-e28fa5f1508ef7ffeb0b72406558534928c28f9e.tar.gz
2197
Diffstat (limited to 'build_and_test_until')
-rwxr-xr-xbuild_and_test_until2
1 files changed, 1 insertions, 1 deletions
diff --git a/build_and_test_until b/build_and_test_until
index 73c2b6ca..e001ed5e 100755
--- a/build_and_test_until
+++ b/build_and_test_until
@@ -8,4 +8,4 @@ make tangle/tangle
 make enumerate/enumerate
 ./tangle/tangle $(./enumerate/enumerate --until $* |grep -v '.mu$') |grep -v "^\s*//:" > mu.cc
 cat /dev/null $(./enumerate/enumerate --until $* |grep '.mu$') > core.mu
-CXX=clang++ CFLAGS="-O3 -fsanitize=undefined" make valgrind
+CXX=${CXX:-clang++} CFLAGS=${CFLAGS:-"-O3 -fsanitize=undefined"} make valgrind