aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorTeddy <ted.sybil@gmail.com>2013-08-14 23:28:20 +0800
committerTeddy <ted.sybil@gmail.com>2013-08-14 23:28:20 +0800
commitaddbfae58d8afceb06d92f6ef1cdfed89c07518b (patch)
tree22668b260beac6177871ea5570452c5bfdedd08f /Makefile
parent640a20d0b6a2137617b7f217defce7979338e289 (diff)
significant improvement on gc efficiency
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 5232363..2558d7b 100644
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,7 @@
CXX = g++ -DGMP_SUPPORT
BUILD_DIR = build
-all: debug
+all: gc_debug
debug: CXX += -DGC_INFO -g -pg
gc_debug: CXX += -DGC_INFO -DGC_DEBUG -g -pg
release: CXX += -O2