From 1bdc1ef7a0ca694b4ff1c3cd3427c033187ed58e Mon Sep 17 00:00:00 2001 From: Patrick Wuttke Date: Thu, 5 Dec 2024 17:03:44 +0100 Subject: [PATCH] Used latest compiler version. --- contrib/builder/Dockerfile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/contrib/builder/Dockerfile b/contrib/builder/Dockerfile index be38348..11462aa 100644 --- a/contrib/builder/Dockerfile +++ b/contrib/builder/Dockerfile @@ -1,12 +1,12 @@ FROM debian:sid-slim RUN apt-get -y update && \ apt-get -y upgrade && \ - apt-get -y install build-essential clang-16 gcc-13 g++-13 python3 python3-pip \ + apt-get -y install build-essential clang-19 gcc-14 g++-14 python3 python3-pip \ virtualenv python-is-python3 clang-tidy git ninja-build cmake -RUN ln -s /usr/bin/clang-16 /usr/local/bin/clang \ - && ln -s /usr/bin/clang++-16 /usr/local/bin/clang++ \ - && ln -s /usr/bin/clang-tidy-16 /usr/local/bin/clang-tidy \ - && ln -s /usr/bin/run-clang-tidy-16 /usr/local/bin/run-clang-tidy +RUN ln -s /usr/bin/clang-19 /usr/local/bin/clang \ + && ln -s /usr/bin/clang++-19 /usr/local/bin/clang++ \ + && ln -s /usr/bin/clang-tidy-19 /usr/local/bin/clang-tidy \ + && ln -s /usr/bin/run-clang-tidy-19 /usr/local/bin/run-clang-tidy COPY scripts /opt/scripts