From fcb069b98bb6a2f59e5ebfd2ad0ab5ee82a1bdb8 Mon Sep 17 00:00:00 2001 From: Teddy Date: Tue, 13 Aug 2013 22:07:31 +0800 Subject: add cycle detect for `Pair`, `ProcObj`, `Envt` and `Cont` --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 50b7f45..1f44815 100644 --- a/Makefile +++ b/Makefile @@ -1,8 +1,8 @@ CXX = g++ -DGMP_SUPPORT BUILD_DIR = build -all: release -debug: CXX += -g -pg +all: gc_debug +debug: CXX += -DGC_INFO -g -pg gc_debug: CXX += -DGC_INFO -DGC_DEBUG -g -pg release: $(BUILD_DIR) $(BUILD_DIR)/sonsi @@ -24,7 +24,7 @@ $(BUILD_DIR): mkdir -p $(BUILD_DIR) $(BUILD_DIR)/%.o : %.cpp - $(CXX) -o $@ -c $< -Wall -O2 + $(CXX) -o $@ -c $< -Wall clean: rm -rf $(BUILD_DIR) -- cgit v1.2.3