diff options
author | ludwig <ludwig@edf5b092-35ff-0310-97b2-ce42778d08ea> | 2008-11-12 13:40:04 +0000 |
---|---|---|
committer | ludwig <ludwig@edf5b092-35ff-0310-97b2-ce42778d08ea> | 2008-11-12 13:40:04 +0000 |
commit | 68531f54f07de417ceb1acd56eb81968cd6a7747 (patch) | |
tree | f19ee6902e59b9291e56c4730c0cdb738b56ba76 /Makefile | |
parent | 8ba546241137c6c1c43751b25e40bbaf610658a1 (diff) | |
download | ioquake3-aero-68531f54f07de417ceb1acd56eb81968cd6a7747.tar.gz ioquake3-aero-68531f54f07de417ceb1acd56eb81968cd6a7747.zip |
use -fno-strict-aliasing again. code is just not ready yet.
git-svn-id: svn://svn.icculus.org/quake3/trunk@1488 edf5b092-35ff-0310-97b2-ce42778d08ea
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 16 |
1 files changed, 8 insertions, 8 deletions
@@ -237,7 +237,7 @@ ifeq ($(PLATFORM),linux) endif endif - BASE_CFLAGS = -Wall -Wimplicit -Wstrict-prototypes \ + BASE_CFLAGS = -Wall -fno-strict-aliasing -Wimplicit -Wstrict-prototypes \ -pipe -DUSE_ICON $(shell sdl-config --cflags) ifeq ($(USE_OPENAL),1) @@ -360,7 +360,7 @@ ifeq ($(PLATFORM),darwin) BASE_CFLAGS += -mstackrealign endif - BASE_CFLAGS += -DMACOS_X -fno-common -pipe + BASE_CFLAGS += -fno-strict-aliasing -DMACOS_X -fno-common -pipe ifeq ($(USE_OPENAL),1) BASE_CFLAGS += -DUSE_OPENAL @@ -431,7 +431,7 @@ ifeq ($(PLATFORM),mingw32) ARCH=x86 - BASE_CFLAGS = -Wall -Wimplicit -Wstrict-prototypes \ + BASE_CFLAGS = -Wall -fno-strict-aliasing -Wimplicit -Wstrict-prototypes \ -DUSE_ICON # In the absence of wspiapi.h, require Windows XP or later @@ -524,7 +524,7 @@ ifeq ($(PLATFORM),freebsd) endif #alpha test - BASE_CFLAGS = -Wall -Wimplicit -Wstrict-prototypes \ + BASE_CFLAGS = -Wall -fno-strict-aliasing -Wimplicit -Wstrict-prototypes \ -DUSE_ICON $(shell sdl-config --cflags) ifeq ($(USE_OPENAL),1) @@ -590,7 +590,7 @@ ifeq ($(PLATFORM),openbsd) ARCH=i386 - BASE_CFLAGS = -Wall -Wimplicit -Wstrict-prototypes \ + BASE_CFLAGS = -Wall -fno-strict-aliasing -Wimplicit -Wstrict-prototypes \ -DUSE_ICON $(shell sdl-config --cflags) ifeq ($(USE_OPENAL),1) @@ -652,7 +652,7 @@ ifeq ($(PLATFORM),netbsd) SHLIBLDFLAGS=-shared $(LDFLAGS) THREAD_LIBS=-lpthread - BASE_CFLAGS = -Wall -Wimplicit -Wstrict-prototypes + BASE_CFLAGS = -Wall -fno-strict-aliasing -Wimplicit -Wstrict-prototypes ifneq ($(ARCH),i386) BASE_CFLAGS += -DNO_VM_COMPILED @@ -716,7 +716,7 @@ ifeq ($(PLATFORM),sunos) endif - BASE_CFLAGS = -Wall -Wimplicit -Wstrict-prototypes \ + BASE_CFLAGS = -Wall -fno-strict-aliasing -Wimplicit -Wstrict-prototypes \ -pipe -DUSE_ICON $(shell sdl-config --cflags) OPTIMIZE = -O3 -ffast-math -funroll-loops @@ -1028,7 +1028,7 @@ makedirs: # QVM BUILD TOOLS ############################################################################# -TOOLS_OPTIMIZE = -g -O2 -Wall +TOOLS_OPTIMIZE = -g -O2 -Wall -fno-strict-aliasing TOOLS_CFLAGS = $(TOOLS_OPTIMIZE) \ -DTEMPDIR=\"$(TEMPDIR)\" -DSYSTEM=\"\" \ -I$(Q3LCCSRCDIR) \ |