Clone of mesa.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

solaris-x86-gcc-static 925B

12345678910111213141516171819202122232425262728
  1. # Configuration for Solaris on x86 with gcc, static libs
  2. include $(TOP)/configs/default
  3. CONFIG_NAME = solaris-x86-gcc
  4. # Compiler and flags
  5. CC = gcc
  6. CXX = g++
  7. CFLAGS = -O3 -march=i486 -fPIC -I/usr/openwin/include -DUSE_XSHM
  8. CXXFLAGS = -O3 -march=i486 -fPIC
  9. GLUT_CFLAGS = -fexceptions
  10. MKLIB_OPTIONS = -static
  11. # Work around aliasing bugs - developers should comment this out
  12. CFLAGS += -fno-strict-aliasing
  13. CXXFLAGS += -fno-strict-aliasing
  14. GL_LIB_DEPS = -L/usr/openwin/lib -lX11 -lXext -lm -lpthread
  15. GLU_LIB_DEPS = -L$(TOP)/$(LIB_DIR) -l$(GL_LIB) -lm
  16. GLUT_LIB_DEPS = -L$(TOP)/$(LIB_DIR) -l$(GLU_LIB) -l$(GL_LIB) -L/usr/openwin/lib -lX11 -lXmu -lXt -lXi -lm
  17. APP_LIB_DEPS = -L$(TOP)/$(LIB_DIR) -L/usr/openwin/lib -R/usr/openwin/lib -l$(GLUT_LIB) -l$(GLU_LIB) -l$(GL_LIB) -lm -lX11 -lXext -lXi -lXmu
  18. GL_LIB_NAME = libGL.a
  19. GLU_LIB_NAME = libGLU.a
  20. GLUT_LIB_NAME = libglut.a
  21. GLW_LIB_NAME = libGLw.a
  22. OSMESA_LIB_NAME = libOSMesa.a