File: install_boost.sh

package info (click to toggle)
wsclean 3.7-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 10,968 kB
  • sloc: cpp: 85,742; python: 3,526; sh: 245; makefile: 21
file content (12 lines) | stat: -rw-r--r-- 340 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
# SPDX-License-Identifier: LGPL-3.0-only

# Script to install extra boost libraries from source

set -euo pipefail

# Boost is already in the container as leftover from casacore install
pushd /build/boost_${BOOST_}
./bootstrap.sh --prefix=/opt/boost --with-libraries=math
./b2 -j${THREADS} cxxflags="-fPIC" link=static,shared install

popd