From 77dfc7a26a8de8163dcde76a1e601c07eb11c57e Mon Sep 17 00:00:00 2001 From: "Dongjia \"toka\" Zhang" Date: Fri, 13 Oct 2023 17:00:12 +0200 Subject: [PATCH] Update llvm ver in Dockerfile (#1629) * llvm 15 * more --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index b0aefbc52f..4364c49f8c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -19,7 +19,8 @@ RUN sh -c 'echo set encoding=utf-8 > /root/.vimrc' \ RUN rustup component add rustfmt clippy # Install clang 11, common build tools -RUN apt update && apt install -y build-essential gdb git wget clang clang-tools libc++-11-dev libc++abi-11-dev llvm python3-venv ninja-build +RUN apt update && apt install -y build-essential gdb git wget python3-venv ninja-build lsb-release software-properties-common gnupg +RUN wget https://apt.llvm.org/llvm.sh && chmod +x llvm.sh && ./llvm.sh 15 # Copy a dummy.rs and Cargo.toml first, so that dependencies are cached WORKDIR /libafl