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.

linux-ia64-icc 829B

123456789101112131415161718192021
  1. # Configuration for Linux with Intel C compiler
  2. include $(TOP)/configs/default
  3. CONFIG_NAME = linux-icc
  4. # Compiler and flags
  5. CC = icc
  6. CXX = icpc
  7. CFLAGS = -O3 -ansi -KPIC -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 -KPIC -D_POSIX_SOURCE -D_POSIX_C_SOURCE=199309L -D_SVID_SOURCE -D_BSD_SOURCE -DUSE_XSHM -DPTHREADS -I/usr/X11R6/include
  9. GLUT_CFLAGS = -fexceptions
  10. MKLIB_OPTIONS = -arch icc-istatic
  11. GL_LIB_DEPS = -L/usr/X11R6/lib -lX11 -lXext -lpthread
  12. GLU_LIB_DEPS = -L$(TOP)/$(LIB_DIR) -l$(GL_LIB)
  13. GLUT_LIB_DEPS = -L$(TOP)/$(LIB_DIR) -l$(GLU_LIB) -l$(GL_LIB) -L/usr/X11R6/lib -lX11 -lXmu -lXt -lXi
  14. GLW_LIB_DEPS = -L$(TOP)/$(LIB_DIR) -l$(GL_LIB) $(GL_LIB_DEPS)
  15. APP_LIB_DEPS = -L$(TOP)/$(LIB_DIR) -l$(GLUT_LIB) -l$(GLU_LIB) -l$(GL_LIB)