diff options
author | fanquake <fanquake@gmail.com> | 2023-05-23 14:35:14 +0100 |
---|---|---|
committer | fanquake <fanquake@gmail.com> | 2023-05-29 17:20:49 +0100 |
commit | 796bd1d0d147ac90f921ce3831961f97748d4e1a (patch) | |
tree | 261448b7231d174de96fd1aaab84da176c540a2b /ci | |
parent | 883bc9f5611648c44956a09795afd924842c1d1d (diff) |
ci: use LLVM 16.0.4 in MSAN jobs
Diffstat (limited to 'ci')
-rwxr-xr-x | ci/test/01_base_install.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ci/test/01_base_install.sh b/ci/test/01_base_install.sh index 98f96f0ece..fd60e51258 100755 --- a/ci/test/01_base_install.sh +++ b/ci/test/01_base_install.sh @@ -44,7 +44,7 @@ fi if [[ ${USE_MEMORY_SANITIZER} == "true" ]]; then update-alternatives --install /usr/bin/clang++ clang++ "$(which clang++-16)" 100 update-alternatives --install /usr/bin/clang clang "$(which clang-16)" 100 - git clone --depth=1 https://github.com/llvm/llvm-project -b llvmorg-16.0.1 "${BASE_SCRATCH_DIR}"/msan/llvm-project + git clone --depth=1 https://github.com/llvm/llvm-project -b llvmorg-16.0.4 "${BASE_SCRATCH_DIR}"/msan/llvm-project cmake -B "${BASE_SCRATCH_DIR}"/msan/build/ -DLLVM_ENABLE_RUNTIMES='libcxx;libcxxabi' -DCMAKE_BUILD_TYPE=Release -DLLVM_USE_SANITIZER=MemoryWithOrigins -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++ -DLLVM_TARGETS_TO_BUILD=X86 -DLLVM_ENABLE_PER_TARGET_RUNTIME_DIR=OFF -DLIBCXX_ENABLE_DEBUG_MODE=ON -DLIBCXX_ENABLE_ASSERTIONS=ON -S "${BASE_SCRATCH_DIR}"/msan/llvm-project/runtimes make -C "${BASE_SCRATCH_DIR}"/msan/build/ "$MAKEJOBS" fi |