Added support for Intel C++ 7.0.

committer: mfx <mfx> 1042686101 +0000
This commit is contained in:
Markus F.X.J. Oberhumer
2003-01-16 03:01:41 +00:00
parent 888ac8a220
commit e96ad21db1
10 changed files with 55 additions and 25 deletions
+23
View File
@@ -217,6 +217,29 @@ CHMOD_EXE = chmod 755 $@
endif # linux
###
### Linux/i386 with Intel C++ 7.0
###
ifeq ($(target),linux-intelc70)
CC = icc
CXX = icc
CFLAGS_OUTPUT = -o $@
LINK_EXE_OUTPUT = -o $@
DEFS += '-DUPX_CONFIG_H="config_h/linux.h"'
CFLAGS = $(CFLAGS_WERROR)
ifeq ($(DEBUG),1)
CFLAGS += -g -O0
else
CFLAGS += -O2
endif
CXXFLAGS_2 += -fno-rtti
LDFLAGS += -Wl,-Map,$T.map
endif
###
### Linux cross compilers
###