diff --git a/v1/intel-linux-tools.html b/v1/intel-linux-tools.html index d774e357c..f11a482cb 100644 --- a/v1/intel-linux-tools.html +++ b/v1/intel-linux-tools.html @@ -1,90 +1,76 @@ - -
- - - - -|
- |
-
-
- Boost.Build- -intel-linux toolset- |
-
Boost.Build's intel-linux toolset supports the Intel - C++ Compiler for Linux.
- --sVARIABLE_NAME=value. If neither
- variable is set but iccvars.sh can be found in the
- PATH, then the version of the tools installed where
- iccvars.sh lives is used.
-
- | Variable Name | - -Semantics | - -Default | - -Notes | -
|---|---|---|---|
INTEL_VERSION |
-
- The version of the compiler to use. | - -70 |
-
- If INTEL_PATH is set, this variable is ignored.
-
-
- |
INTEL_PATH |
-
- The path to the compiler installation. | - -The default installation location for the version specified by
-INTEL_VERSION
-
- |
Revised - - 3 Jan, 2004
- -Copyright © Dave Abrahams 2002-2003.
- -Use, modification, and distribution are subject to the Boost - Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at www.boost.org/LICENSE_1_0.txt)
- + +|
+ |
+
+ Boost.Build+intel-linux toolset+ |
+
Boost.Build's intel-linux toolset supports the + Intel C++ Compiler for Linux.
+
+ The intel-linux toolset responds to the following variables which can be set in
+ the environment or configured on the jam command-line using -sVARIABLE_NAME=value.
+ If neither variable is set but iccvars.sh can be found in the PATH,
+ then the version of the tools installed where iccvars.sh lives is
+ used.
+
+
| Variable Name | +Semantics | +Defaults | +Notes | +
INTEL_VERSION |
+ The version of the compiler to use. | +80 | +If INTEL_PATH is set, this variable is ignored. |
+
| INTEL_PATH | +The path to the compiler installation. | +The default installation location for the version specified by INTEL_VERSION. |
+ + |
| INTEL_CC | +The name of the C compiler. | +icc | ++ |
| INTEL_CXX | +The name of the C++ compiler/linker. | +icpc | ++ |
Revised + + 01 Oct, 2004
+Copyright © Dave Abrahams 2002-2003.
+Use, modification, and distribution are subject to the Boost Software + License, Version 1.0. (See accompanying file LICENSE_1_0.txt + or copy at www.boost.org/LICENSE_1_0.txt)
+ diff --git a/v1/intel-linux-tools.jam b/v1/intel-linux-tools.jam index ed4e5188a..cf4bf081a 100644 --- a/v1/intel-linux-tools.jam +++ b/v1/intel-linux-tools.jam @@ -14,6 +14,8 @@ set-as-singleton INTEL_PATH ; INTEL_VERSION ?= $(INTEL_LINUX_VERSION) ; # For backwards compatibility +INTEL_CC ?= icc ; +INTEL_CXX ?= icpc ; # Attempt to look in the PATH if no variables have been set up. if ! $(INTEL_VERSION) && ! $(INTEL_PATH) @@ -22,7 +24,7 @@ if ! $(INTEL_VERSION) && ! $(INTEL_PATH) INTEL_PATH ?= $(paths[0]) ; } -INTEL_VERSION ?= 70 ; +INTEL_VERSION ?= 80 ; # In case the path is unspecified, try to deduce it from the version if $(INTEL_VERSION) in 50 60 70 @@ -82,6 +84,7 @@ flags intel-linux LINKFLAGS