diff options
author | Dan Nicholson <dbn.lists@gmail.com> | 2007-10-31 09:47:39 -0700 |
---|---|---|
committer | Dan Nicholson <dbn.lists@gmail.com> | 2007-11-01 10:56:01 -0700 |
commit | 00e7dd8a1387155f73030b2ab28902ecf031e6e0 (patch) | |
tree | 2e025b3c9b9fe844e92f67841f09b57aff5719d4 /configs/linux-fbdev | |
parent | d11b375b16d2d16cf324777aa854ea3222ac89a2 (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.
(cherry picked from commit 013dbcd6111bc880e65ed00a7ca31e19230a81d5)
Diffstat (limited to 'configs/linux-fbdev')
-rw-r--r-- | configs/linux-fbdev | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/configs/linux-fbdev b/configs/linux-fbdev index e36d20a702..69d10127c8 100644 --- a/configs/linux-fbdev +++ b/configs/linux-fbdev @@ -6,6 +6,9 @@ CONFIG_NAME = linux-fbdev CFLAGS = -O3 -ffast-math -ansi -pedantic -fPIC -D_POSIX_C_SOURCE=199309L -D_SVID_SOURCE -D_BSD_SOURCE -DPTHREADS -DUSE_GLFBDEV_DRIVER +# Work around aliasing bugs - developers should comment this out +CFLAGS += -fno-strict-aliasing + SRC_DIRS = mesa glu glut/fbdev DRIVER_DIRS = fbdev osmesa PROGRAM_DIRS = fbdev demos redbook samples |