diff options
author | Dan Nicholson <dbn.lists@gmail.com> | 2007-11-01 06:01:53 -0700 |
---|---|---|
committer | Dan Nicholson <dbn.lists@gmail.com> | 2007-11-01 11:07:02 -0700 |
commit | b88e2be609f09ddc8c2a12fb4080437fcc69f765 (patch) | |
tree | 173616174b9eebd9814b338da00b8cdd18b14176 /configs/darwin | |
parent | 08229c8bb8e63ac5fe28cfca594bc45ae34da509 (diff) |
Add -fno-strict-aliasing workaround for all GCC targets
Use a GCC option to work around aliasing bugs. See commit 013dbcd for
more details.
(cherry picked from commit 01b18abf93c1999397563e75fe1bfbbe0e080ae9)
Conflicts:
configs/freebsd
Diffstat (limited to 'configs/darwin')
-rw-r--r-- | configs/darwin | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/configs/darwin b/configs/darwin index 7826ecc605..76f3f74d4e 100644 --- a/configs/darwin +++ b/configs/darwin @@ -10,6 +10,10 @@ CXX = cc CFLAGS = -I/usr/X11R6/include -O3 -fPIC -fno-common -ffast-math -funroll-loops -fexpensive-optimizations -no-cpp-precomp -dynamic -Ddarwin CXXFLAGS = -I/usr/X11R6/include -O3 -fPIC -fno-common -ffast-math -funroll-loops -fexpensive-optimizations -no-cpp-precomp -dynamic -Ddarwin +# Work around aliasing bugs - developers should comment this out +CFLAGS += -fno-strict-aliasing +CXXFLAGS += -fno-strict-aliasing + # Library names (actual file names) GL_LIB_NAME = libGL.dylib GLU_LIB_NAME = libGLU.dylib |