From 1e830e47d2e914f9e4c086d6b7fc3f907e300a05 Mon Sep 17 00:00:00 2001 From: rxi Date: Thu, 29 Sep 2016 21:39:34 +0100 Subject: [PATCH] Changed build script to use -O2 instead of -O3 --- build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.py b/build.py index 2758cd9..c2a121f 100755 --- a/build.py +++ b/build.py @@ -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 ]