From 84942a5bf8ea9db5559028992955891875995169 Mon Sep 17 00:00:00 2001 From: Andrew Noyes Date: Tue, 15 Oct 2024 15:59:58 -0700 Subject: [PATCH] Try clang 20 --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index c7335d4..5281449 100644 --- a/Dockerfile +++ b/Dockerfile @@ -29,9 +29,6 @@ RUN TZ=America/Los_Angeles DEBIAN_FRONTEND=noninteractive apt-get install -y \ wget \ zstd -# Recent clang -RUN wget https://apt.llvm.org/llvm.sh && chmod +x ./llvm.sh && ./llvm.sh 19 - # Install recent valgrind from source RUN curl -Ls https://sourceware.org/pub/valgrind/valgrind-3.22.0.tar.bz2 -o valgrind.tar.bz2 && \ echo "c811db5add2c5f729944caf47c4e7a65dcaabb9461e472b578765dd7bf6d2d4c valgrind.tar.bz2" > valgrind-sha.txt && \ @@ -45,6 +42,9 @@ RUN curl -Ls https://sourceware.org/pub/valgrind/valgrind-3.22.0.tar.bz2 -o valg cd .. && \ rm -rf /tmp/* +# Recent clang +RUN wget https://apt.llvm.org/llvm.sh && chmod +x ./llvm.sh && ./llvm.sh 20 + RUN apt-get install clang # Set after building valgrind, which doesn't build with clang for some reason