summaryrefslogtreecommitdiff
path: root/configs/linux-directfb
diff options
context:
space:
mode:
authorDan Nicholson <dbn.lists@gmail.com>2007-10-31 09:47:39 -0700
committerDan Nicholson <dbn.lists@gmail.com>2007-10-31 09:47:39 -0700
commit013dbcd6111bc880e65ed00a7ca31e19230a81d5 (patch)
tree9f8df16e43a9c39963dcd14a50dbfda92eb0a92e /configs/linux-directfb
parent2bdd467dfd3cfe9a479a8e8395620ecc414e18dc (diff)
Add -fno-strict-aliasing workaround for Linux GCC targets
Most Linux distros work around aliasing problems in Mesa by compiling with the GCC option -fno-strict-aliasing. Two examples: https://bugs.freedesktop.org/show_bug.cgi?id=6046 http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=394311 This makes -fno-strict-aliasing the default with a comment that developers should consider commenting it out. There is a already a note about these bugs in docs/helpwanted.html.
Diffstat (limited to 'configs/linux-directfb')
-rw-r--r--configs/linux-directfb4
1 files changed, 4 insertions, 0 deletions
diff --git a/configs/linux-directfb b/configs/linux-directfb
index 09332f48081..2a9843e93c2 100644
--- a/configs/linux-directfb
+++ b/configs/linux-directfb
@@ -13,6 +13,10 @@ CFLAGS = -Wall -O3 -ffast-math -fPIC -std=c99 -D_GNU_SOURCE -D_POSIX_SOURCE -D
CXXFLAGS = -Wall -O3 -fPIC -D_POSIX_SOURCE -D_POSIX_C_SOURCE=199309L -D_SVID_SOURCE -D_BSD_SOURCE
+# Work around aliasing bugs - developers should comment this out
+CFLAGS += -fno-strict-aliasing
+CXXFLAGS += -fno-strict-aliasing
+
HAVE_X86 = $(shell uname -m | grep 'i[3-6]86' >/dev/null && echo yes)
ifeq ($(HAVE_X86), yes)
CFLAGS += -DUSE_X86_ASM -DUSE_MMX_ASM -DUSE_3DNOW_ASM -DUSE_SSE_ASM