Add isl and expat libs as tarballs explicitly (#41138)

This commit is contained in:
Dimitris Sotirakis 2021-11-01 15:12:16 +02:00 committed by GitHub
parent 1f6965e859
commit 5e813ea454
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -69,6 +69,11 @@ RUN cd /tmp/crosstool-ng-${CTNG} && \
echo 'CT_EXPERIMENTAL=y' >> .config && \ echo 'CT_EXPERIMENTAL=y' >> .config && \
echo 'CT_ALLOW_BUILD_AS_ROOT=y' >> .config && \ echo 'CT_ALLOW_BUILD_AS_ROOT=y' >> .config && \
echo 'CT_ALLOW_BUILD_AS_ROOT_SURE=y' >> .config && \ echo 'CT_ALLOW_BUILD_AS_ROOT_SURE=y' >> .config && \
mkdir -p .build/tarballs && \
cd .build/tarballs && \
curl -fLO https://libisl.sourceforge.io/isl-0.20.tar.gz && \
curl -fLO https://github.com/libexpat/libexpat/releases/download/R_2_1_0/expat-2.1.0.tar.gz && \
cd - && \
./ct-ng build ./ct-ng build
RUN cd /tmp && \ RUN cd /tmp && \
rm /tmp/x86_64-centos6-linux-gnu/build.log.bz2 && \ rm /tmp/x86_64-centos6-linux-gnu/build.log.bz2 && \