summaryrefslogtreecommitdiff
path: root/mk/compiler.mk
diff options
context:
space:
mode:
authorgrant <grant@pkgsrc.org>2005-02-15 07:43:43 +0000
committergrant <grant@pkgsrc.org>2005-02-15 07:43:43 +0000
commit9fd9fe53317823a81e44451c9d9a964a7fd5281a (patch)
treec1273d3f6640df9366e9233a012376a7d0a2cb6b /mk/compiler.mk
parente9eb68750b4b7515008f16d5cc410baba352cc45 (diff)
downloadpkgsrc-9fd9fe53317823a81e44451c9d9a964a7fd5281a.tar.gz
add support for icc, the Intel C++ Compiler (Linux).
icc is a high performance compiler suite for Linux/i386 and ia64, and is free for non-commercial use. see: http://www.intel.com/software/products/compilers/clin/ for more information. tested with icc version 8.0 and 8.1 on Slackware 10/i386.
Diffstat (limited to 'mk/compiler.mk')
-rw-r--r--mk/compiler.mk5
1 files changed, 3 insertions, 2 deletions
diff --git a/mk/compiler.mk b/mk/compiler.mk
index a3dcc817671..9d7c21a74ce 100644
--- a/mk/compiler.mk
+++ b/mk/compiler.mk
@@ -1,4 +1,4 @@
-# $NetBSD: compiler.mk,v 1.44 2005/01/24 18:07:56 tv Exp $
+# $NetBSD: compiler.mk,v 1.45 2005/02/15 07:43:43 grant Exp $
#
# This Makefile fragment implements handling for supported C/C++/Fortran
# compilers.
@@ -14,6 +14,7 @@
# ccache compiler cache (chainable)
# distcc distributed C/C++ (chainable)
# f2c Fortran 77 to C compiler (chainable)
+# icc Intel C++ Compiler (Linux)
# gcc GNU
# mipspro Silicon Graphics, Inc. MIPSpro (n32/n64)
# mipspro-ucode Silicon Graphics, Inc. MIPSpro (o32)
@@ -81,7 +82,7 @@ USE_LANGUAGES:= c ${USE_LANGUAGES}
_USE_PKGSRC_GCC= yes
.endif
-_COMPILERS= ccc gcc mipspro mipspro-ucode sunpro xlc
+_COMPILERS= ccc gcc icc mipspro mipspro-ucode sunpro xlc
_PSEUDO_COMPILERS= ccache distcc f2c
.if defined(NOT_FOR_COMPILER) && !empty(NOT_FOR_COMPILER)