add debug-fast compilation mode

This commit is contained in:
Joel Dice 2008-01-11 17:15:34 -07:00
parent d1ec7cd0e8
commit 48e532f8e9

View File

@ -106,6 +106,9 @@ endif
ifeq ($(mode),debug)
cflags += -O0 -g3
endif
ifeq ($(mode),debug-fast)
cflags += -O0 -g3 -DNDEBUG
endif
ifeq ($(mode),stress)
cflags += -O0 -g3 -DVM_STRESS
endif