index
:
sonsi
Stupid and Obvious Non-recursive Scheme Interpreter
log msg
author
committer
range
faster_fetch
gc
gc_cyc
gc_imp
gc_sweep
master
new_ext
numeric_types
restructure
skip_removal
tail_recursion
about
summary
refs
log
tree
commit
diff
path:
root
/
Makefile
diff options
context:
1
2
3
4
5
6
7
8
9
10
15
20
25
30
35
40
space:
include
ignore
mode:
unified
ssdiff
stat only
Diffstat
(limited to 'Makefile')
-rw-r--r--
Makefile
2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index acdab1a..4d4db95 100644
--- a/
Makefile
+++ b/
Makefile
@@ -2,7 +2,7 @@ sonsi: main.o parser.o builtin.o model.o eval.o exc.o consts.o types.o gc.o
g++ -o sonsi $^ -pg -lgmp
.cpp.o:
- g++ $< -c -g -pg -DGMP_SUPPORT -Wall -DGC_DEBUG
+ g++ $< -c -pg -DGMP_SUPPORT -Wall -DGC_INFO -O2
clean:
rm -f *.o