diff options
author | Brian Paul <[email protected]> | 2004-03-26 15:16:35 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2004-03-26 15:16:35 +0000 |
commit | a70ad91209b08ebe7122ace6d6656b11d9b04542 (patch) | |
tree | dc8b1e08f6348809afcc29fc66d392061a5876fe /configs/linux-x86-64-static | |
parent | f262b70d5a3fb7bcc2b280735fc7ff643cebe433 (diff) |
new system configurations
Diffstat (limited to 'configs/linux-x86-64-static')
-rw-r--r-- | configs/linux-x86-64-static | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/configs/linux-x86-64-static b/configs/linux-x86-64-static new file mode 100644 index 00000000000..9fc0131f598 --- /dev/null +++ b/configs/linux-x86-64-static @@ -0,0 +1,40 @@ +# Configuration for Linux for 64-bit X86 (Opteron), static libs + +include $(TOP)/configs/default + +CONFIG_NAME = linux-x86-64-static + +# Compiler and flags +CC = gcc +CXX = g++ + +CFLAGS = -m64 -Wall -O3 -ansi -pedantic -D_POSIX_SOURCE -D_POSIX_C_SOURCE=199309L -D_SVID_SOURCE -D_BSD_SOURCE -DUSE_XSHM -DUSE_X86_ASM -DUSE_MMX_ASM -DUSE_3DNOW_ASM -DUSE_SSE_ASM -DPTHREADS -I/usr/X11R6/include + +CXXFLAGS = -m64 -Wall -O3 -ansi -pedantic -D_POSIX_SOURCE -D_POSIX_C_SOURCE=199309L -D_SVID_SOURCE -D_BSD_SOURCE + +GLUT_CFLAGS = -fexceptions + +MKLIB_OPTIONS = -static + + +# Library names (actual file names) +GL_LIB_NAME = libGL.a +GLU_LIB_NAME = libGLU.a +GLUT_LIB_NAME = libglut.a +GLW_LIB_NAME = libGLw.a +OSMESA_LIB_NAME = libOSMesa.a + + +ASM_SOURCES = $(X86_SOURCES) + + +LIB_DIR = $(TOP)/lib64 + + +# Library/program dependencies (static libs don't have dependencies) +GL_LIB_DEPS = +OSMESA_LIB_DEPS = +GLU_LIB_DEPS = +GLUT_LIB_DEPS = +GLW_LIB_DEPS = +APP_LIB_DEPS = -L$(LIB_DIR) -lglut -lGLU -lGL -L/usr/X11R6/lib64 -lX11 -lXext -lXmu -lXt -lXi -lpthread -lm -lstdc++ |