summaryrefslogtreecommitdiff
path: root/mk/compiler/icc.mk
blob: fe57be245224c01f5a1643e938eb2c3071a3629b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
# $NetBSD: icc.mk,v 1.1.2.3 2005/02/25 14:46:51 tv Exp $

.if !defined(COMPILER_ICC_MK)
COMPILER_ICC_MK=	defined

.include "../../mk/bsd.prefs.mk"

ICCBASE?=		/opt/intel_cc_80

# LANGUAGES.<compiler> is the list of supported languages by the
# compiler.
#
LANGUAGES.icc=		# empty

_ICC_DIR=		${WRKDIR}/.icc
_ICC_VARS=		# empty
.if exists(${ICCBASE}/bin/icc)
LANGUAGES.icc+=		c
_ICC_VARS+=		CC
_ICC_CC=		${_ICC_DIR}/bin/icc
_ALIASES.CC=		cc
CCPATH=			${ICCBASE}/bin/icc
PKG_CC:=		${_ICC_CC}
LANGUAGES.icc+=		c++
_ICC_VARS+=		CXX
_ICC_CXX=		${_ICC_DIR}/bin/icpc
_ALIASES.CXX=		CC c++
CXXPATH=		${ICCBASE}/bin/icpc
PKG_CXX:=		${_ICC_CXX}
.endif
_COMPILER_STRIP_VARS+=	${_ICC_VARS}

# icc passes rpath directives to the linker using "-Wl,-R".
_LINKER_RPATH_FLAG=	-Wl,-R

# icc passes rpath directives to the linker using "-Wl,-R".
_COMPILER_RPATH_FLAG=	-Wl,-R

.if exists(${CCPATH})
CC_VERSION_STRING!=	${CCPATH} -V 2>&1 | ${GREP} '^Intel'
_CC_VERSION!=		${CCPATH} -v 2>&1 || ${TRUE}
CC_VERSION=		Intel C++ Compiler ${_CC_VERSION}
.else
CC_VERSION_STRING?=	${CC_VERSION}
CC_VERSION?=		Intel C++ Compiler
.endif

# _LANGUAGES.<compiler> is ${LANGUAGES.<compiler>} restricted to the
# ones requested by the package in USE_LANGUAGES.
#
_LANGUAGES.icc=	# empty
.for _lang_ in ${USE_LANGUAGES}
_LANGUAGES.icc+=	${LANGUAGES.icc:M${_lang_}}
.endfor

# Prepend the path to the compiler to the PATH.
.if !empty(_LANGUAGES.icc)
PREPEND_PATH+=	${_ICC_DIR}/bin
.endif

# icc supports __attribute__, but the GNU configure test uses a nested
# function, which icc does not support. #undef'ing __attribute__ has the
# unfortunate side-effect of breaking many of the Linux header files, which
# cannot be compiled properly without __attribute__. The test must be
# overridden so that __attribute__ is assumed supported by the compiler.
.if defined(GNU_CONFIGURE)
CONFIGURE_ENV+=		ac_cv___attribute__=yes
.endif

# Create compiler driver scripts in ${WRKDIR}.
.for _var_ in ${_ICC_VARS}
.  if !target(${_ICC_${_var_}})
override-tools: ${_ICC_${_var_}}        
${_ICC_${_var_}}:
	${_PKG_SILENT}${_PKG_DEBUG}${MKDIR} ${.TARGET:H}
	${_PKG_SILENT}${_PKG_DEBUG}					\
	(${ECHO} '#!${TOOLS_SHELL}';					\
	 ${ECHO} 'exec ${ICCBASE}/bin/${.TARGET:T} "$$@"';		\
	) > ${.TARGET}
	${_PKG_SILENT}${_PKG_DEBUG}${CHMOD} +x ${.TARGET}
.    for _alias_ in ${_ALIASES.${_var_}:S/^/${.TARGET:H}\//}
	${_PKG_SILENT}${_PKG_DEBUG}					\
	if [ ! -x "${_alias_}" ]; then					\
		${LN} -f ${.TARGET} ${_alias_};				\
	fi
.    endfor
.  endif
.endfor

.endif	# COMPILER_ICC_MK