Merge branch '7.8'
[mesa.git] / configs / bluegene-osmesa
1 # Configuration for building only libOSMesa on BlueGene, no Xlib driver
2 # This doesn't really have a lot of dependencies, so it should be usable
3 # on other (gcc-based) systems too.
4 # It uses static linking and disables multithreading.
5
6 include $(TOP)/configs/default
7
8 CONFIG_NAME = bluegene-osmesa
9
10 # Compiler and flags
11 CC = /bgl/BlueLight/ppcfloor/blrts-gnu/bin/powerpc-bgl-blrts-gnu-gcc
12 CXX = /bgl/BlueLight/ppcfloor/blrts-gnu/bin/powerpc-bgl-blrts-gnu-g++
13 CFLAGS = -O3 -ansi -pedantic -fPIC -ffast-math -D_POSIX_SOURCE -D_POSIX_C_SOURCE=199309L -D_SVID_SOURCE -D_BSD_SOURCE
14 CXXFLAGS = -O3 -ansi -pedantic -fPIC -ffast-math -D_POSIX_SOURCE -D_POSIX_C_SOURCE=199309L -D_SVID_SOURCE -D_BSD_SOURC
15
16 # Work around aliasing bugs - developers should comment this out
17 CFLAGS += -fno-strict-aliasing
18 CXXFLAGS += -fno-strict-aliasing
19
20 MKLIB_OPTIONS = -static
21
22 OSMESA_LIB_NAME = libOSMesa.a
23
24 # Directories
25 SRC_DIRS = mesa glu
26 DRIVER_DIRS = osmesa
27 PROGRAM_DIRS = osdemos
28
29
30 # Dependencies
31 OSMESA_LIB_DEPS = -lm
32 GLU_LIB_DEPS = -L$(TOP)/$(LIB_DIR) -l$(OSMESA_LIB)
33 APP_LIB_DEPS = -lOSMesa -lGLU -lm