Skip to content
Snippets Groups Projects
Commit 9eb01d3c authored by Ian Bell's avatar Ian Bell
Browse files

Update boost

Fixes a lot of compiler warnings
parent fffdc277
No related branches found
No related tags found
No related merge requests found
...@@ -5,15 +5,15 @@ FROM ubuntu:20.04 ...@@ -5,15 +5,15 @@ FROM ubuntu:20.04
RUN apt-get -y -m update && DEBIAN_FRONTEND=noninteractive apt-get install -y cmake g++ git zip wget xz-utils RUN apt-get -y -m update && DEBIAN_FRONTEND=noninteractive apt-get install -y cmake g++ git zip wget xz-utils
RUN mkdir /boost && \ RUN mkdir /boost && \
wget -c https://boostorg.jfrog.io/artifactory/main/release/1.77.0/source/boost_1_77_0.tar.gz -O - | tar -xz -C /boost && \ wget -c --no-check-certificate https://boostorg.jfrog.io/artifactory/main/release/1.82.0/source/boost_1_82_0.tar.gz -O - | tar -xz -C /boost && \
cd /boost/boost_1_77_0/ && \ cd /boost/boost_1_82_0/ && \
./bootstrap.sh && \ ./bootstrap.sh && \
./b2 tools/bcp ./b2 tools/bcp
WORKDIR /boost/boost_1_77_0 WORKDIR /boost/boost_1_82_0
RUN mkdir /boost_teqp && \ RUN mkdir /boost_teqp && \
bin.v2/tools/bcp/gcc-9/release/link-static/bcp multiprecision/cpp_bin_float.hpp multiprecision/cpp_complex.hpp multiprecision/eigen.hpp functional/hash.hpp numeric/odeint.hpp typeof/incr_registration_group.hpp mp11.hpp algorithm/string/join.hpp asio/thread_pool.hpp asio/post.hpp /boost_teqp && \ bin.v2/tools/bcp/gcc-9/release/link-static/bcp multiprecision/cpp_bin_float.hpp multiprecision/cpp_complex.hpp multiprecision/eigen.hpp functional/hash.hpp numeric/odeint.hpp typeof/incr_registration_group.hpp mp11.hpp algorithm/string/join.hpp asio/thread_pool.hpp asio/post.hpp /boost_teqp && \
zip -r /boost_teqp.zip /boost_teqp && \ zip -r /boost_teqp.zip /boost_teqp && \
tar cJf /boost_teqp.tar.xz /boost_teqp tar cJf /boost_teqp.tar.xz /boost_teqp
CMD cp /*.tar.xz /output CMD cp /*.tar.xz /output
\ No newline at end of file
No preview for this file type
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment