Clone of mesa.
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

linux-static 929B

123456789101112131415161718192021222324252627282930
  1. # Configuration for generic Linux, making static libs
  2. include $(TOP)/configs/default
  3. CONFIG_NAME = linux-static
  4. # Compiler and flags
  5. CC = gcc
  6. CXX = g++
  7. CFLAGS = -O3 -ansi -pedantic -ffast-math -D_POSIX_SOURCE -D_POSIX_C_SOURCE=199309L -D_SVID_SOURCE -D_BSD_SOURCE -DUSE_XSHM -DPTHREADS -I/usr/X11R6/include
  8. CXXFLAGS = -O3 -ansi -pedantic -ffast-math -D_POSIX_SOURCE -D_POSIX_C_SOURCE=199309L -D_SVID_SOURCE -D_BSD_SOURCE
  9. GLUT_CFLAGS = -fexceptions
  10. MKLIB_OPTIONS = -static
  11. # Library names (actual file names)
  12. GL_LIB_NAME = libGL.a
  13. GLU_LIB_NAME = libGLU.a
  14. GLUT_LIB_NAME = libglut.a
  15. GLW_LIB_NAME = libGLw.a
  16. OSMESA_LIB_NAME = libOSMesa.a
  17. # Library/program dependencies (static libs don't have dependencies)
  18. GL_LIB_DEPS =
  19. OSMESA_LIB_DEPS =
  20. GLU_LIB_DEPS =
  21. GLUT_LIB_DEPS =
  22. GLW_LIB_DEPS =
  23. APP_LIB_DEPS = -L$(LIB_DIR) -l$(GLUT_LIB) -l$(GLU_LIB) -l$(GL_LIB) -L/usr/X11R6/lib -lX11 -lXext -lXmu -lXt -lXi -lpthread -lm -lstdc++