aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLouis Dionne <ldionne.2@gmail.com>2024-03-16 18:32:44 -0400
committerGitHub <noreply@github.com>2024-03-16 15:32:44 -0700
commit3a06861272d8a0710d1880e8e3d4954a76b7f256 (patch)
tree03c1b72c6b4b3686964c31d3778f06befc5f264f
parent0c1dcd675291f058d530078f9304162ea9d27cd1 (diff)
downloadllvm-3a06861272d8a0710d1880e8e3d4954a76b7f256.zip
llvm-3a06861272d8a0710d1880e8e3d4954a76b7f256.tar.gz
llvm-3a06861272d8a0710d1880e8e3d4954a76b7f256.tar.bz2
[libc++] Use clang-tidy version that matches the compiler we use in the CI (#85305)
This works around ODR violations in the clang-tidy plugin we use to perform the modules tests. Fixes #85242
-rw-r--r--libcxx/test/tools/clang_tidy_checks/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/libcxx/test/tools/clang_tidy_checks/CMakeLists.txt b/libcxx/test/tools/clang_tidy_checks/CMakeLists.txt
index 978e709..a52140e 100644
--- a/libcxx/test/tools/clang_tidy_checks/CMakeLists.txt
+++ b/libcxx/test/tools/clang_tidy_checks/CMakeLists.txt
@@ -5,7 +5,7 @@
set(LLVM_DIR_SAVE ${LLVM_DIR})
set(Clang_DIR_SAVE ${Clang_DIR})
-find_package(Clang 18)
+find_package(Clang 18.1)
if (NOT Clang_FOUND)
find_package(Clang 17)
endif()