[libcxx-commits] [libcxx] 06e37c1 - [libc++] Install llvm-16-dev explicitly until LLVM16 is stable
Nikolas Klauser via libcxx-commits
libcxx-commits at lists.llvm.org
Fri Dec 16 07:50:23 PST 2022
Author: Nikolas Klauser
Date: 2022-12-16T16:50:17+01:00
New Revision: 06e37c1853732b3811b44128679429a1e09f395a
URL: https://github.com/llvm/llvm-project/commit/06e37c1853732b3811b44128679429a1e09f395a
DIFF: https://github.com/llvm/llvm-project/commit/06e37c1853732b3811b44128679429a1e09f395a.diff
LOG: [libc++] Install llvm-16-dev explicitly until LLVM16 is stable
The clang-tidy checks can't be properly implemented before LLVM16 because the Clang CMake files don't provide the version before.
Reviewed By: Mordante, #libc
Spies: libcxx-commits, arichardson
Differential Revision: https://reviews.llvm.org/D140071
Added:
Modified:
libcxx/utils/ci/Dockerfile
Removed:
################################################################################
diff --git a/libcxx/utils/ci/Dockerfile b/libcxx/utils/ci/Dockerfile
index 35999751001f..2db95fc13f28 100644
--- a/libcxx/utils/ci/Dockerfile
+++ b/libcxx/utils/ci/Dockerfile
@@ -87,6 +87,9 @@ RUN ln -s /usr/bin/clang-tidy-14 /usr/bin/clang-tidy && [ -e $(readlink /usr/bin
# Install llvm-dev to compile custom clang-tidy checks
RUN apt-get update && apt-get install llvm-$(($LLVM_HEAD_VERSION - 1))-dev llvm-$(($LLVM_HEAD_VERSION - 2))-dev
+# TODO LLVM16 Don't install llvm-16-dev explicitly
+RUN apt-get update && apt-get install llvm-16-dev
+
# Install clang-tools
RUN apt-get update && apt-get install -y clang-tools-$(($LLVM_HEAD_VERSION - 1)) clang-tools-$LLVM_HEAD_VERSION
More information about the libcxx-commits
mailing list