1234567891011121314151617181920212223 |
- # Configuration for Linux with Intel C compiler, static libs
-
- include $(TOP)/configs/default
-
- CONFIG_NAME = linux-icc-static
-
- # Compiler and flags
- CC = icc
- CXX = icpc
- CFLAGS = -O3 -ansi -D_POSIX_SOURCE -D_POSIX_C_SOURCE=199309L -D_SVID_SOURCE -D_BSD_SOURCE -DUSE_XSHM -DPTHREADS -I/usr/X11R6/include
- CXXFLAGS = -O3 -ansi -D_POSIX_SOURCE -D_POSIX_C_SOURCE=199309L -D_SVID_SOURCE -D_BSD_SOURCE -DUSE_XSHM -DPTHREADS -I/usr/X11R6/include
- MKLIB_OPTIONS = -static -arch icc-istatic
-
- # Library names (actual file names)
- GL_LIB_NAME = libGL.a
- GLU_LIB_NAME = libGLU.a
- GLW_LIB_NAME = libGLw.a
- OSMESA_LIB_NAME = libOSMesa.a
-
- GL_LIB_DEPS =
- GLU_LIB_DEPS =
- GLW_LIB_DEPS =
|