From d814280c5714747b12978301f01b1fc3d8e17355 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Ber=C3=A1nek?= Date: Fri, 21 Nov 2025 16:59:40 +0100 Subject: [PATCH] Use GCC 9.2.0 --- src/ci/docker/host-x86_64/dist-x86_64-linux/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ci/docker/host-x86_64/dist-x86_64-linux/Dockerfile b/src/ci/docker/host-x86_64/dist-x86_64-linux/Dockerfile index cb57478761994..ab7ce3fd7abe7 100644 --- a/src/ci/docker/host-x86_64/dist-x86_64-linux/Dockerfile +++ b/src/ci/docker/host-x86_64/dist-x86_64-linux/Dockerfile @@ -52,9 +52,9 @@ WORKDIR /tmp RUN mkdir /home/user COPY scripts/shared.sh /tmp/ -# Need at least GCC 5.1 to compile LLVM nowadays +# Need at least GCC 9 to compile LLVM and LLD nowadays COPY scripts/build-gcc.sh /tmp/ -ENV GCC_VERSION=9.5.0 +ENV GCC_VERSION=9.2.0 ENV GCC_BUILD_TARGET=x86_64-pc-linux-gnu RUN ./build-gcc.sh && yum remove -y gcc gcc-c++