mirror of https://github.com/google/oss-fuzz.git
Use sourceforge url for boost download in proxygen
This commit is contained in:
parent
a171716149
commit
3166399f80
|
@ -46,7 +46,7 @@ RUN wget https://github.com/Kitware/CMake/releases/download/v3.15.2/cmake-3.15.2
|
||||||
rm -rf cmake-3.15.2
|
rm -rf cmake-3.15.2
|
||||||
|
|
||||||
# Install and build boost from source so we can have it use libc++
|
# Install and build boost from source so we can have it use libc++
|
||||||
RUN wget https://dl.bintray.com/boostorg/release/1.70.0/source/boost_1_70_0.tar.gz && \
|
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 && \
|
tar xzf boost_1_70_0.tar.gz && \
|
||||||
cd boost_1_70_0 && \
|
cd boost_1_70_0 && \
|
||||||
./bootstrap.sh --with-toolset=clang && \
|
./bootstrap.sh --with-toolset=clang && \
|
||||||
|
@ -156,4 +156,4 @@ RUN apt-get install patchelf
|
||||||
# Fetch source and copy over files
|
# Fetch source and copy over files
|
||||||
RUN git clone --depth 1 https://github.com/facebook/proxygen.git proxygen
|
RUN git clone --depth 1 https://github.com/facebook/proxygen.git proxygen
|
||||||
WORKDIR proxygen
|
WORKDIR proxygen
|
||||||
COPY build.sh $SRC/
|
COPY build.sh $SRC/
|
||||||
|
|
Loading…
Reference in New Issue