From 1224b3ea4245253884eaa92c3481bf279879cc30 Mon Sep 17 00:00:00 2001
From: Lance <moodles@users.sourceforge.net>
Date: Mon, 3 Dec 2007 13:34:37 +0000
Subject: [PATCH] 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
---
 engine/Makefile | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/engine/Makefile b/engine/Makefile
index e88460f0a..d176299a5 100644
--- a/engine/Makefile
+++ b/engine/Makefile
@@ -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