summaryrefslogtreecommitdiff
path: root/configs/ultrix-gcc
diff options
context:
space:
mode:
authorDan Nicholson <dbn.lists@gmail.com>2007-11-01 06:01:53 -0700
committerDan Nicholson <dbn.lists@gmail.com>2007-11-01 11:07:02 -0700
commitb88e2be609f09ddc8c2a12fb4080437fcc69f765 (patch)
tree173616174b9eebd9814b338da00b8cdd18b14176 /configs/ultrix-gcc
parent08229c8bb8e63ac5fe28cfca594bc45ae34da509 (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/ultrix-gcc')
-rw-r--r--configs/ultrix-gcc4
1 files changed, 4 insertions, 0 deletions
diff --git a/configs/ultrix-gcc b/configs/ultrix-gcc
index 5c0f22d7ae7..455b6932d37 100644
--- a/configs/ultrix-gcc
+++ b/configs/ultrix-gcc
@@ -12,6 +12,10 @@ CXXFLAGS = -pedantic -O2
GLUT_CFLAGS = -fexceptions
MKLIB_OPTIONS = -static
+# Work around aliasing bugs - developers should comment this out
+CFLAGS += -fno-strict-aliasing
+CXXFLAGS += -fno-strict-aliasing
+
GL_LIB_NAME = libGL.a
GLU_LIB_NAME = libGLU.a
GLUT_LIB_NAME = libglut.a