Skip to content

Commit

Permalink
Reenable cc optims, even -O3
Browse files Browse the repository at this point in the history
See issue #6. Apparently the old jit problem was fixed with
0275bfa
  • Loading branch information
Reini Urban committed Mar 4, 2013
1 parent cac51e4 commit 25a3e89
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions config.mak
Original file line number Diff line number Diff line change
Expand Up @@ -77,11 +77,7 @@ ifneq ($(shell ./tools/config.sh "${CC}" clang),0)
CFLAGS += -Wno-unused-value
endif
ifeq (${DEBUG},0)
DEBUGFLAGS += -fno-stack-protector
# -O or -O2 is unstable with JIT, test/closures/long.pn
ifneq (${JIT},1)
DEBUGFLAGS += -O2
endif
DEBUGFLAGS += -O3 -fno-stack-protector
else
DEFINES += -DDEBUG
STRIP = echo
Expand Down

0 comments on commit 25a3e89

Please sign in to comment.