diff options
Diffstat (limited to 'build0')
-rwxr-xr-x | build0 | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/build0 b/build0 index efcbfcd3..7cc6fc95 100755 --- a/build0 +++ b/build0 @@ -21,12 +21,12 @@ cd tangle grep -h "^[[:space:]]*void test_" [0-9]*.cc |sed 's/^\s*void \(.*\)() {$/\1,/' > test_list # } # Now that we have all the _lists, compile 'tangle' - g++ -g -O3 boot.cc -o tangle + g++ -g -O2 boot.cc -o tangle cd .. cd termbox - gcc -g -O3 -c termbox.c - gcc -g -O3 -c utf8.c + gcc -g -O2 -c termbox.c + gcc -g -O2 -c utf8.c ar rcs libtermbox.a *.o cd .. @@ -38,6 +38,6 @@ cd .. grep -h "^[^[:space:]#].*) {$" mu.cc |grep -v ":.*(" |sed 's/ {.*/;/' > function_list # auto-generate list of tests to run grep -h "^\s*void test_" mu.cc |sed 's/^\s*void \(.*\)() {.*/\1,/' > test_list -g++ -g -O3 mu.cc termbox/libtermbox.a -o mu_bin +g++ -g -O2 mu.cc termbox/libtermbox.a -o mu_bin cat [0-9]*.mu > core.mu |