From f853d878845089e35a46ff87dbf2edf6f857cf88 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Fri, 10 Nov 2017 23:11:40 -0500 Subject: [PATCH] Switches SConstruct build file to producing an optimised result. --- OSBindings/SDL/SConstruct | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OSBindings/SDL/SConstruct b/OSBindings/SDL/SConstruct index cc01c41d4..3dbdb9ff2 100644 --- a/OSBindings/SDL/SConstruct +++ b/OSBindings/SDL/SConstruct @@ -69,7 +69,7 @@ SOURCES += glob.glob('../../Storage/Tape/Formats/*.cpp') SOURCES += glob.glob('../../Storage/Tape/Parsers/*.cpp') # add additional compiler flags -env.Append(CCFLAGS = ['-g', '--std=c++11']) +env.Append(CCFLAGS = ['--std=c++11', '-O3']) # add additional libraries to link against env.Append(LIBS = ['libz', 'pthread', 'GL'])