diff options
author | Ian Romanick <[email protected]> | 2005-07-28 00:11:10 +0000 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2005-07-28 00:11:10 +0000 |
commit | 9f23a3a1bff6c8af93e651273c9887bbf119f555 (patch) | |
tree | 0bdc6e08b24ee9f855aa7132944d5a26e1edf37c /configs/sunos5-gcc | |
parent | 3e36986e5a59c734b7bd198a16fb9af3314860de (diff) |
Fix SPARC assembly for 64-bit
- The test for whether or not we're building for 64-bit is '#ifdef __arch64__'.
This appears to be correct on both Linux and Solaris.
- The test for Solaris is now '#if defined(SVR4) || defined(__SVR4) ||
defined(__svr4__)'. GCC 3.4.0 has all three defined on Solaris 9.
- Enables assembly language clip routines.
- Fixes to make GLSL code build on Solaris.
- Update gl_SPARC_asm.py.
Diffstat (limited to 'configs/sunos5-gcc')
-rw-r--r-- | configs/sunos5-gcc | 30 |
1 files changed, 22 insertions, 8 deletions
diff --git a/configs/sunos5-gcc b/configs/sunos5-gcc index ba32c7e2d0a..7917c9b004d 100644 --- a/configs/sunos5-gcc +++ b/configs/sunos5-gcc @@ -4,18 +4,32 @@ include $(TOP)/configs/default CONFIG_NAME = sunos5-gcc -ASM_SOURCES = $(SPARC_SOURCES) $(SPARC_API) - # Compiler and flags CC = gcc CXX = g++ -CFLAGS = -O3 -I/usr/openwin/include -fPIC -fomit-frame-pointer -D_REENTRANT -DUSE_XSHM -DUSE_SPARC_ASM -CXXFLAGS = -O3 -I/usr/openwin/include -fPIC -fomit-frame-pointer -D_REENTRANT -DUSE_SPARC_ASM + +WARN_FLAGS = -Wall +OPT_FLAGS = -O3 -g -fomit-frame-pointer -pipe +PIC_FLAGS = -fPIC + +ARCH_FLAGS ?= + +DEFINES = -D_REENTRANT -DUSE_XSHM + +ASM_SOURCES = $(SPARC_SOURCES) $(SPARC_API) +ASM_FLAGS = -DUSE_SPARC_ASM + +CFLAGS = $(WARN_FLAGS) $(OPT_FLAGS) $(PIC_FLAGS) $(ARCH_FLAGS) $(DEFINES) \ + $(ASM_FLAGS) -std=c99 -ffast-math -I/usr/openwin/include + +CXXFLAGS = $(WARN_FLAGS) $(OPT_FLAGS) $(PIC_FLAGS) $(ARCH_FLAGS) $(DEFINES) \ + -I/usr/openwin/include + GLUT_CFLAGS = -fexceptions -DSOLARIS_2_4_BUG -GL_LIB_DEPS = -L/usr/openwin/lib -lX11 -lXext -lXmu -lXi -lm -GLU_LIB_DEPS = -L$(LIB_DIR) -l$(GL_LIB) -lm +# Library/program dependencies +EXTRA_LIB_PATH=-L/usr/openwin/lib + +GL_LIB_DEPS = $(EXTRA_LIB_PATH) -lX11 -lXext -lXmu -lXi -lm GLUT_LIB_DEPS = -L$(LIB_DIR) -l$(GLU_LIB) -l$(GL_LIB) -lm -GLW_LIB_DEPS = -L$(LIB_DIR) -l$(GL_LIB) -L/usr/openwin/lib -lXt -lX11 APP_LIB_DEPS = -L$(LIB_DIR) -lX11 -l$(GLUT_LIB) -l$(GLU_LIB) -l$(GL_LIB) -lm - |