Changed the RELEASE_CFLAGS from -O6 and the other wierd optimizations to
just: -O2 -fno-strict-aliasing git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@2803 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
parent
17a004d9c5
commit
1224b3ea42
1 changed files with 2 additions and 1 deletions
|
@ -221,7 +221,8 @@ DEBUG_CFLAGS=-ggdb -g
|
|||
ifeq ($(FTE_TARGET),win32)
|
||||
RELEASE_CFLAGS=-fno-strict-aliasing -ffast-math -fexpensive-optimizations $(CPUOPTIMIZATIONS)
|
||||
else
|
||||
RELEASE_CFLAGS=-O6 -fno-strict-aliasing -ffast-math -funroll-loops -fexpensive-optimizations $(CPUOPTIMIZATIONS)
|
||||
RELEASE_CFLAGS=-O2 -fno-strict-aliasing $(CPUOPTIMIZATIONS)
|
||||
#RELEASE_CFLAGS=-O6 -fno-strict-aliasing -ffast-math -funroll-loops -fexpensive-optimizations $(CPUOPTIMIZATIONS)
|
||||
endif
|
||||
|
||||
GLCFLAGS=-DGLQUAKE
|
||||
|
|
Loading…
Reference in a new issue