diff options
author | IOhannes m zmölnig <zmoelnig@users.sourceforge.net> | 2006-11-12 12:58:58 +0000 |
---|---|---|
committer | IOhannes m zmölnig <zmoelnig@users.sourceforge.net> | 2006-11-12 12:58:58 +0000 |
commit | f235eb7c9dcf3ed14cacf65ebfa3007afed56b5c (patch) | |
tree | adc8371607da0e27aa783bd78ca24a4048282026 /externals/build/linux | |
parent | 20b5c3c795f422eb3cbe7171dbc48d1ebfc02d54 (diff) |
added "-fno-strict-aliasing" to the CFLAGS to make the use of
anti-denormal-macros produce proper results
svn path=/trunk/; revision=6272
Diffstat (limited to 'externals/build/linux')
-rw-r--r-- | externals/build/linux/makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/externals/build/linux/makefile b/externals/build/linux/makefile index 604dac26..3e778283 100644 --- a/externals/build/linux/makefile +++ b/externals/build/linux/makefile @@ -43,7 +43,7 @@ CPU_FLAGS = -O2 # PowerPC G5 #CPU_FLAGS = -O3 -mpowerpc64 -maltivec -falign-functions=32 -falign-labels=32 -falign-loops=32 -falign-jumps=32 -OPTIM_FLAGS = -funroll-loops -fomit-frame-pointer $(CPU_FLAGS) +OPTIM_FLAGS = -funroll-loops -fomit-frame-pointer -fno-strict-aliasing $(CPU_FLAGS) CFLAGS = -fPIC -DPD -DUNIX $(OPTIM_FLAGS) \ -Wall -W -Wshadow -Wstrict-prototypes \ |