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-icc 753B

12345678910111213141516171819202122
  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 = g++
  7. CFLAGS = -O3 -tpp6 -axK -KPIC -D_GCC_LIMITS_H_ -D__GNUC__ -D_POSIX_SOURCE -D_POSIX_C_SOURCE=199309L -D_SVID_SOURCE -D_BSD_SOURCE -DUSE_XSHM -DUSE_X86_ASM -DUSE_MMX_ASM -DUSE_3DNOW_ASM -DUSE_SSE_ASM -DPTHREADS -I/usr/X11R6/include
  8. CXXFLAGS = -O3
  9. GLUT_CFLAGS = -fexceptions
  10. MKLIB_OPTIONS = -arch icc
  11. GL_LIB_DEPS = -L/usr/X11R6/lib -lX11 -lXext -lm -lpthread
  12. GLUT_LIB_DEPS = -L$(TOP)/$(LIB_DIR) -l$(GLU_LIB) -l$(GL_LIB) -L/usr/X11R6/lib -lX11 -lXmu -lXt -lXi -lm
  13. APP_LIB_DEPS = -L$(TOP)/$(LIB_DIR) -l$(GLUT_LIB) -l$(GLU_LIB) -l$(GL_LIB) -lm
  14. MESA_ASM_SOURCES = $(X86_SOURCES)
  15. GLAPI_ASM_SOURCES = $(X86_API)