disabled debug features by default

This commit is contained in:
CPunch 2020-11-12 17:02:12 -06:00
parent 01b796460a
commit ffe4fc6930
2 changed files with 3 additions and 3 deletions

View File

@ -1,8 +1,8 @@
# make clean && make && ./bin/cosmo
CC=clang
CFLAGS=-fPIE -g3 #-O3
LDFLAGS=-fsanitize=address
CFLAGS=-fPIE -O3
LDFLAGS=#-fsanitize=address
OUT=bin/cosmo
CHDR=\

View File

@ -5,7 +5,7 @@
#include "cstate.h"
#define GC_STRESS
//#define GC_STRESS
//#define GC_DEBUG
// arrays will grow by a factor of 2
#define GROW_FACTOR 2