mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-28 06:00:10 +01:00
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.
38 lines
1.1 KiB
Text
38 lines
1.1 KiB
Text
# Configuration for DirectFB
|
|
|
|
include $(TOP)/configs/default
|
|
|
|
CONFIG_NAME = linux-directfb
|
|
|
|
# Compiler and flags
|
|
CC = gcc
|
|
CXX = g++
|
|
|
|
CFLAGS = -Wall -O3 -ffast-math -fPIC -std=c99 -D_GNU_SOURCE -D_POSIX_SOURCE -D_SVID_SOURCE \
|
|
-D_POSIX_C_SOURCE=199309L -D_BSD_SOURCE -DPTHREADS
|
|
|
|
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
|
|
CXXFLAGS += -DUSE_X86_ASM -DUSE_MMX_ASM -DUSE_3DNOW_ASM -DUSE_SSE_ASM
|
|
ASM_SOURCES = $(X86_SOURCES)
|
|
ASM_API = $(X86_API)
|
|
endif
|
|
|
|
# Directories
|
|
SRC_DIRS = mesa glu glut/directfb
|
|
GLU_DIRS = sgi
|
|
DRIVER_DIRS = directfb
|
|
PROGRAM_DIRS = demos directfb
|
|
|
|
# Library/program dependencies
|
|
GL_LIB_DEPS = -lm -lpthread
|
|
GLUT_LIB_DEPS = -L$(TOP)/$(LIB_DIR) -l$(GL_LIB) -l$(GLU_LIB)
|
|
APP_LIB_DEPS = -L$(TOP)/$(LIB_DIR) -l$(GL_LIB) -l$(GLU_LIB) -l$(GLUT_LIB)
|
|
|