Compiler/boost/build

- build shared libraries
This commit is contained in:
2016-03-09 15:26:36 +01:00
parent a8c7acb601
commit 60a45fc08f

View File

@@ -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
}