aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorTeddy <ted.sybil@gmail.com>2013-08-13 14:34:15 +0800
committerTeddy <ted.sybil@gmail.com>2013-08-13 14:34:15 +0800
commitbac19b8e0e820ef748439891f6bbd46aabb4fcf7 (patch)
tree79cf4d7629ae3870375f71949cda5679196677e3 /Makefile
parent283cc828e86a7177edbacfe3860ca7765661f811 (diff)
in-place arithmetic opt & fix gc bug in `eval`
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index ee70498..ce8a500 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 -DGMP_SUPPORT -Wall -DGC_INFO -O2
+ g++ $< -c -O2 -DGMP_SUPPORT -Wall
clean:
rm -f *.o