2016-04-27 14:58:07 +07:00
|
|
|
#!/bin/bash -u
|
2017-07-20 08:01:46 -07:00
|
|
|
# Assumptions:
|
|
|
|
# 1) BOOST_ROOT and BOOST_URL are already defined,
|
|
|
|
# and contain valid values.
|
|
|
|
# 2) The last namepart of BOOST_ROOT matches the
|
|
|
|
# folder name internal to boost's .tar.gz
|
|
|
|
# When testing you can force a boost build by clearing travis caches:
|
|
|
|
# https://travis-ci.org/ripple/rippled/caches
|
|
|
|
set -e
|
|
|
|
if [ ! -d "$BOOST_ROOT/lib" ]
|
|
|
|
then
|
|
|
|
wget $BOOST_URL -O /tmp/boost.tar.gz
|
|
|
|
cd `dirname $BOOST_ROOT`
|
|
|
|
rm -fr ${BOOST_ROOT}
|
|
|
|
tar xzf /tmp/boost.tar.gz
|
2016-04-27 14:58:07 +07:00
|
|
|
|
|
|
|
params="define=_GLIBCXX_USE_CXX11_ABI=0 \
|
|
|
|
address-model=$ADDRESS_MODEL --with-program_options \
|
|
|
|
--with-system --with-coroutine --with-filesystem"
|
2017-07-20 08:01:46 -07:00
|
|
|
cd $BOOST_ROOT && \
|
|
|
|
./bootstrap.sh --prefix=$BOOST_ROOT && \
|
|
|
|
./b2 -d1 $params && \
|
|
|
|
./b2 -d0 $params install
|
|
|
|
else
|
|
|
|
echo "Using cached boost at $BOOST_ROOT"
|
|
|
|
fi
|
|
|
|
|