Add more optimisations to release mode

This commit is contained in:
build.powdertoy.co.uk 2012-07-20 20:11:55 +01:00
parent e77a43d9a4
commit 947102cccf

View File

@ -112,7 +112,7 @@ if(GetOption('lin32') or GetOption('lin64')):
if(GetOption('release')):
env.Append(CCFLAGS='-O3')
env.Append(CCFLAGS=['-O3', '-ftree-vectorize', '-msse2', '-funsafe-math-optimizations', '-ffast-math', '-fomit-frame-pointer', '-funsafe-loop-optimizations', '-Wunsafe-loop-optimizations'])
if(GetOption('opengl')):
env.Append(CPPDEFINES=["OGLI", "PIX32OGL"])