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 06:03:31 -0700 |
commit | 01b18abf93c1999397563e75fe1bfbbe0e080ae9 (patch) | |
tree | 65e03b995e094bf8bbb4d0a5b5c2e405a4ae2d78 /configs/darwin-x86ppc | |
parent | ee793281b221415f794af6aadaa9764023612e0b (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.
Diffstat (limited to 'configs/darwin-x86ppc')
-rw-r--r-- | configs/darwin-x86ppc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/configs/darwin-x86ppc b/configs/darwin-x86ppc index 13172327a7..c87b206f92 100644 --- a/configs/darwin-x86ppc +++ b/configs/darwin-x86ppc @@ -14,6 +14,10 @@ CXXFLAGS = -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk \ MKLIB_OPTIONS = -archopt "-isysroot /Developer/SDKs/MacOSX10.4u.sdk" +# 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 |