pcl: Bump boost (#12173)

Required for the compiler bump in
https://github.com/google/oss-fuzz/pull/12077

(See
https://oss-fuzz-gcb-logs.storage.googleapis.com/log-c8129390-51e0-43e3-9c21-3952f5592a17.txt
for the full failing log)

Co-authored-by: MarcoFalke <6399679+MarcoFalke@users.noreply.github.com>
This commit is contained in:
maflcko 2024-07-09 16:39:59 +02:00 committed by GitHub
parent 6e40e90b9f
commit fd9c4ac7d1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 4 additions and 4 deletions

View File

@ -32,14 +32,14 @@ RUN apt-get update && apt-get install -y \
qtbase5-dev qttools5-dev zlib1g-dev
# Install and build boost from source so we can have it use libc++
RUN wget https://sourceforge.net/projects/boost/files/boost/1.70.0/boost_1_70_0.tar.gz && \
tar xzf boost_1_70_0.tar.gz && \
cd boost_1_70_0 && \
RUN wget https://sourceforge.net/projects/boost/files/boost/1.85.0/boost_1_85_0.tar.gz && \
tar xzf boost_1_85_0.tar.gz && \
cd boost_1_85_0 && \
./bootstrap.sh --with-toolset=clang && \
./b2 clean && \
./b2 toolset=clang cxxflags="-stdlib=libc++" linkflags="-stdlib=libc++" -j$(nproc) install && \
cd .. && \
rm -rf boost_1_70_0]
rm -rf boost_1_85_0
RUN git clone --depth 1 https://github.com/PointCloudLibrary/pcl
COPY build.sh $SRC/