diff options
author | MadCamel <madcamel@gmail.com> | 2009-09-30 13:50:50 -0400 |
---|---|---|
committer | MadCamel <madcamel@gmail.com> | 2009-09-30 13:50:50 -0400 |
commit | cf1920e296365c8323fd52b6d927766d296b59c6 (patch) | |
tree | adb2d732b8243f017b1c1367222f80eaeb9b5313 /Makefile | |
parent | 765c84f370747e35902757b6771368009ae2a8f6 (diff) | |
download | tmwa-cf1920e296365c8323fd52b6d927766d296b59c6.tar.gz tmwa-cf1920e296365c8323fd52b6d927766d296b59c6.tar.bz2 tmwa-cf1920e296365c8323fd52b6d927766d296b59c6.tar.xz tmwa-cf1920e296365c8323fd52b6d927766d296b59c6.zip |
Revert "Added -fno-strict-aliasing to CFLAGS This will likely fix a few minor weirdnesses, and compiler warnings."
This reverts commit 765c84f370747e35902757b6771368009ae2a8f6.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -18,10 +18,10 @@ OPT = -g -O2 ${M32} ifeq ($(findstring CYGWIN,$(PLATFORM)), CYGWIN) OS_TYPE = -DCYGWIN -CFLAGS = $(OPT) -Wall -fno-strict-aliasing -DFD_SETSIZE=4096 -I../common $(PACKETDEF) $(OS_TYPE) +CFLAGS = $(OPT) -Wall -DFD_SETSIZE=4096 -I../common $(PACKETDEF) $(OS_TYPE) else OS_TYPE = -CFLAGS = $(OPT) -Wall -fno-strict-aliasing -Wno-pointer-sign -I../common $(PACKETDEF) $(OS_TYPE) +CFLAGS = $(OPT) -Wall -Wno-pointer-sign -I../common $(PACKETDEF) $(OS_TYPE) endif MKDEF = CC="$(CC)" CFLAGS="$(CFLAGS)" |