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 }