init
Some checks failed
/ build (push) Failing after 10s

This commit is contained in:
Adrien Beaudouin 2025-06-06 18:56:03 +02:00
parent e74d8801b0
commit 6dc1f22f9d

View File

@ -62,9 +62,9 @@ ARG MPC_VERSION=1.3.1
WORKDIR /source
RUN wget https://ftp.gnu.org/gnu/gcc/gcc-${GCC_VERSION}/gcc-${GCC_VERSION}.tar.xz -O gcc.tar.gz
RUN wget https://ftp.gnu.org/gnu/mpfr/mpfr-${MPFR_VERSION}/gcc-${MPFR_VERSION}.tar.xz -O mpfr.tar.gz
RUN wget https://ftp.gnu.org/gnu/gmp/gmp-${GMP_VERSION}/gcc-${GMP_VERSION}.tar.xz -O gmp.tar.gz
RUN wget https://ftp.gnu.org/gnu/mpc/mpc-${MPC_VERSION}/gcc-${MPC_VERSION}.tar.xz -O mpc.tar.gz
RUN wget https://ftp.gnu.org/gnu/mpfr/mpfr-${MPFR_VERSION}/mpfr-${MPFR_VERSION}.tar.xz -O mpfr.tar.gz
RUN wget https://ftp.gnu.org/gnu/gmp/gmp-${GMP_VERSION}/gmp-${GMP_VERSION}.tar.xz -O gmp.tar.gz
RUN wget https://ftp.gnu.org/gnu/mpc/mpc-${MPC_VERSION}/mpc-${MPC_VERSION}.tar.xz -O mpc.tar.gz
RUN mkdir mpfr && \
tar -xJf mpfr.tar.xz --strip-components=1 -C mpfr && \