mirror of
https://github.com/boostorg/beast.git
synced 2025-07-31 05:17:26 +02:00
Don't use cached Boost
This commit is contained in:
@ -1,6 +1,7 @@
|
|||||||
Version 63:
|
Version 63:
|
||||||
|
|
||||||
* Use std::to_string instead of lexical_cast
|
* Use std::to_string instead of lexical_cast
|
||||||
|
* Don't use cached Boost
|
||||||
|
|
||||||
--------------------------------------------------------------------------------
|
--------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
@ -7,8 +7,8 @@
|
|||||||
# When testing you can force a boost build by clearing travis caches:
|
# When testing you can force a boost build by clearing travis caches:
|
||||||
# https://travis-ci.org/ripple/rippled/caches
|
# https://travis-ci.org/ripple/rippled/caches
|
||||||
set -eu
|
set -eu
|
||||||
if [ ! -d "$BOOST_ROOT/lib" ]
|
#if [ ! -d "$BOOST_ROOT" ]
|
||||||
then
|
#then
|
||||||
wget $BOOST_URL -O /tmp/boost.tar.gz
|
wget $BOOST_URL -O /tmp/boost.tar.gz
|
||||||
cd `dirname $BOOST_ROOT`
|
cd `dirname $BOOST_ROOT`
|
||||||
rm -fr ${BOOST_ROOT}
|
rm -fr ${BOOST_ROOT}
|
||||||
@ -21,7 +21,7 @@ then
|
|||||||
./bootstrap.sh --prefix=$BOOST_ROOT && \
|
./bootstrap.sh --prefix=$BOOST_ROOT && \
|
||||||
./b2 -d1 $params && \
|
./b2 -d1 $params && \
|
||||||
./b2 -d0 $params install
|
./b2 -d0 $params install
|
||||||
else
|
#else
|
||||||
echo "Using cached boost at $BOOST_ROOT"
|
# echo "Using cached boost at $BOOST_ROOT"
|
||||||
fi
|
#fi
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user