Skip to content

Commit

Permalink
boost 1.85
Browse files Browse the repository at this point in the history
  • Loading branch information
sasgas committed Oct 14, 2024
1 parent 9d69575 commit 58fcb9c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,9 @@ RUN /script/install_cmake3302.sh
ADD install_libbacktrace.sh /script/
RUN /script/install_libbacktrace.sh

ADD install_boost184.sh /script/
RUN /script/install_boost184.sh
ENV Boost_DIR /usr/local/boost_1_84_0
ADD install_boost185.sh /script/
RUN /script/install_boost185.sh
ENV Boost_DIR /usr/local/boost_1_85_0

ADD install_cryptopp890.sh /script/
RUN /script/install_cryptopp890.sh
Expand Down
10 changes: 5 additions & 5 deletions install_boost184.sh → install_boost185.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
set -x #echo on
yum -y install bzip2-devel which valgrind-devel patch; yum -y clean all
cd ~
wget -nv --no-check-certificate https://boostorg.jfrog.io/artifactory/main/release/1.84.0/source/boost_1_84_0.tar.gz
tar xzf boost_1_84_0.tar.gz
cd boost_1_84_0
wget -nv --no-check-certificate https://boostorg.jfrog.io/artifactory/main/release/1.85.0/source/boost_1_85_0.tar.gz
tar xzf boost_1_85_0.tar.gz
cd boost_1_85_0

./bootstrap.sh --prefix=/usr/local/boost_1_84_0
./bootstrap.sh --prefix=/usr/local/boost_1_85_0
./b2 cxxstd=20 --without-python -j$(nproc) install

./bootstrap.sh --prefix=/usr/local/boost_1_84_0_valgrind
./bootstrap.sh --prefix=/usr/local/boost_1_85_0_valgrind
./b2 cxxstd=20 --without-python -j$(nproc) valgrind=on install

cd ~
Expand Down

0 comments on commit 58fcb9c

Please # to comment.