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.

darwin-static-x86ppc 1.1KB

123456789101112131415161718192021222324252627282930
  1. # Configuration for Darwin / MacOS X, making static libs
  2. include $(TOP)/configs/darwin
  3. CONFIG_NAME = darwin-static
  4. # Compiler and flags
  5. CFLAGS = -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk \
  6. -I/usr/X11R6/include -O3 -fno-common -ffast-math -funroll-loops -fexpensive-optimizations -no-cpp-precomp -dynamic -Ddarwin
  7. CXXFLAGS = -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk \
  8. -I/usr/X11R6/include -O3 -fno-common -ffast-math -funroll-loops -fexpensive-optimizations -no-cpp-precomp -dynamic -Ddarwin
  9. MKLIB_OPTIONS = -static -archopt "-isysroot /Developer/SDKs/MacOSX10.4u.sdk"
  10. # Work around aliasing bugs - developers should comment this out
  11. CFLAGS += -fno-strict-aliasing
  12. CXXFLAGS += -fno-strict-aliasing
  13. # Library names (actual file names)
  14. GL_LIB_NAME = libGL.a
  15. GLU_LIB_NAME = libGLU.a
  16. GLUT_LIB_NAME = libglut.a
  17. GLW_LIB_NAME = libGLw.a
  18. OSMESA_LIB_NAME = libOSMesa.a
  19. GL_LIB_DEPS =
  20. OSMESA_LIB_DEPS =
  21. GLU_LIB_DEPS =
  22. GLUT_LIB_DEPS =
  23. GLW_LIB_DEPS =
  24. APP_LIB_DEPS = -Wl,-search_paths_first -L$(TOP)/lib -l$(GLUT_LIB) -l$(GLU_LIB) -l$(GL_LIB) -L/usr/X11R6/lib -lX11 -lXmu -lXt -lXi -lstdc++ -lgcc_s.1 -lm