boost(without MPI): support for Clang added to build-script

This commit is contained in:
2021-11-17 13:48:41 +01:00
parent 34e400bc44
commit d658d83223

View File

@@ -13,13 +13,14 @@ pbuild::pre_configure() {
gcc )
TOOLSET=gcc
;;
clang )
TOOLSET=clang
;;
* )
std::die 1 "Unsupported compiler!"
;;
esac
}
pbuild::compile() {
cd "${SRC_DIR}"
./bootstrap.sh \
--prefix="${PREFIX}" \
@@ -39,6 +40,9 @@ pbuild::compile() {
|| exit 1
}
pbuild::compile() {
:
}
pbuild::install() {
:
}