diff options
author | Dan Nicholson <[email protected]> | 2007-11-01 06:01:53 -0700 |
---|---|---|
committer | Dan Nicholson <[email protected]> | 2007-11-01 06:03:31 -0700 |
commit | 01b18abf93c1999397563e75fe1bfbbe0e080ae9 (patch) | |
tree | 65e03b995e094bf8bbb4d0a5b5c2e405a4ae2d78 /configs/bluegene-osmesa | |
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/bluegene-osmesa')
-rw-r--r-- | configs/bluegene-osmesa | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/configs/bluegene-osmesa b/configs/bluegene-osmesa index 02c69e6c67e..d22454fa2d9 100644 --- a/configs/bluegene-osmesa +++ b/configs/bluegene-osmesa @@ -13,6 +13,10 @@ CXX = /bgl/BlueLight/ppcfloor/blrts-gnu/bin/powerpc-bgl-blrts-gnu-g++ CFLAGS = -O3 -ansi -pedantic -fPIC -ffast-math -D_POSIX_SOURCE -D_POSIX_C_SOURCE=199309L -D_SVID_SOURCE -D_BSD_SOURCE CXXFLAGS = -O3 -ansi -pedantic -fPIC -ffast-math -D_POSIX_SOURCE -D_POSIX_C_SOURCE=199309L -D_SVID_SOURCE -D_BSD_SOURC +# Work around aliasing bugs - developers should comment this out +CFLAGS += -fno-strict-aliasing +CXXFLAGS += -fno-strict-aliasing + MKLIB_OPTIONS = -static OSMESA_LIB_NAME = libOSMesa.a |