From: Oliver Schmidt Date: Wed, 17 May 2017 16:30:12 +0000 (+0200) Subject: Increased GCC optimization level. X-Git-Tag: V2.17~146 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=298dda0e71646112f0d0a57146acbb3a62a145fd;p=cc65 Increased GCC optimization level. --- diff --git a/src/Makefile b/src/Makefile index f4f29b949..3ce4b676a 100644 --- a/src/Makefile +++ b/src/Makefile @@ -62,7 +62,7 @@ else endif endif -CFLAGS += -MMD -MP -O -I common \ +CFLAGS += -MMD -MP -O3 -I common \ -Wall -Wextra -Wno-char-subscripts $(USER_CFLAGS) \ -DCA65_INC=$(CA65_INC) -DCC65_INC=$(CC65_INC) -DCL65_TGT=$(CL65_TGT) \ -DLD65_LIB=$(LD65_LIB) -DLD65_OBJ=$(LD65_OBJ) -DLD65_CFG=$(LD65_CFG) \