From 60a45fc08f2b550d4b8d3a21ed199a5f3c7450c6 Mon Sep 17 00:00:00 2001 From: Achim Gsell Date: Wed, 9 Mar 2016 15:26:36 +0100 Subject: [PATCH] Compiler/boost/build - build shared libraries --- Compiler/boost/build | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/Compiler/boost/build b/Compiler/boost/build index 00cfcef..b590133 100755 --- a/Compiler/boost/build +++ b/Compiler/boost/build @@ -1,8 +1,5 @@ #!/usr/bin/env modbuild -# :TODO: detect compiler -TOOLSET=intel-linux - BOOST_BUILD_PATH="${MODULE_BUILDDIR}" pbuild::configure() { @@ -11,7 +8,6 @@ pbuild::configure() { --prefix="${PREFIX}" \ --with-libraries=all \ --with-python-root="${PYTHON_PREFIX}" \ - -with-toolset=${TOOLSET} \ || exit 1 } @@ -23,7 +19,7 @@ pbuild::build() { --layout=system \ --without-mpi \ variant=release \ - link=static \ + link=shared \ threading=multi \ stage } @@ -36,7 +32,7 @@ pbuild::install() { --layout=system \ --without-mpi \ variant=release \ - link=static \ + link=shared \ threading=multi \ install }