From f1a3e0798d2c9a6f35d2cb9aeba4a45ae27e5b50 Mon Sep 17 00:00:00 2001 From: Achim Gsell Date: Thu, 2 Jul 2015 11:15:24 +0200 Subject: [PATCH] scripts/Compiler/boost/build: - add Intel C support --- scripts/Compiler/boost/build | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/scripts/Compiler/boost/build b/scripts/Compiler/boost/build index 9f94bb7..6ba3d07 100755 --- a/scripts/Compiler/boost/build +++ b/scripts/Compiler/boost/build @@ -3,7 +3,9 @@ source "$(dirname $0)/../../../lib/libpmodules.bash" # :TODO: detect compiler -TOOLSET=gcc +TOOLSET=intel-linux + +BOOST_BUILD_PATH="${MODULE_BUILDDIR}" pmodules.configure() { cd "${MODULE_SRCDIR}" @@ -11,6 +13,7 @@ pmodules.configure() { --prefix="${PREFIX}" \ --with-libraries=all \ --with-python-root="${PYTHON_PREFIX}" \ + -with-toolset=${TOOLSET} \ || exit 1 }