diff options
author | grant <grant@pkgsrc.org> | 2005-02-15 07:43:43 +0000 |
---|---|---|
committer | grant <grant@pkgsrc.org> | 2005-02-15 07:43:43 +0000 |
commit | eb1ef296ebf3807d7fa8eab5a58c4d5d0cc89be6 (patch) | |
tree | c1273d3f6640df9366e9233a012376a7d0a2cb6b /mk/compiler.mk | |
parent | fd9c46f153c02d596d63344850fb5b8c072f0a16 (diff) | |
download | pkgsrc-eb1ef296ebf3807d7fa8eab5a58c4d5d0cc89be6.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.mk | 5 |
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) |