[libcxx-commits] [PATCH] D140071: [libc++] Install llvm-16-dev explicitly until LLVM16 is stable
Nikolas Klauser via Phabricator via libcxx-commits
libcxx-commits at lists.llvm.org
Wed Dec 14 16:54:07 PST 2022
philnik created this revision.
philnik added reviewers: ldionne, Mordante.
Herald added a subscriber: arichardson.
Herald added a project: All.
philnik requested review of this revision.
Herald added a project: libc++.
Herald added a subscriber: libcxx-commits.
Herald added a reviewer: libc++.
The clang-tidy checks can't be properly implemented before LLVM16 because the Clang CMake files don't provide the version before.
Repository:
rG LLVM Github Monorepo
https://reviews.llvm.org/D140071
Files:
libcxx/utils/ci/Dockerfile
Index: libcxx/utils/ci/Dockerfile
===================================================================
--- libcxx/utils/ci/Dockerfile
+++ libcxx/utils/ci/Dockerfile
@@ -87,6 +87,9 @@
# 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
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D140071.483039.patch
Type: text/x-patch
Size: 596 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/libcxx-commits/attachments/20221215/02d4198f/attachment.bin>
More information about the libcxx-commits
mailing list