Changed build script to use -O2 instead of -O3

This commit is contained in:
rxi
2016-09-29 21:39:34 +01:00
parent 43d115fc08
commit 1e830e47d2

View File

@@ -8,7 +8,7 @@ BIN_NAME = "love.exe"
EMBED_DIR = "src/embed"
TEMPSRC_DIR = ".tempsrc"
CFLAGS = [ "-O3", "-Wall", "-s", "-Wno-misleading-indentation" ]
CFLAGS = [ "-O2", "-Wall", "-s", "-Wno-misleading-indentation" ]
DLIBS = [ "m" ]
DEFINES = [ "DMT_ABORT_NULL", "LUA_COMPAT_ALL" ]
INCLUDES = [ TEMPSRC_DIR ]