[libcxx-commits] [libcxx] [libc++] Bump the version of CMake used in our Docker containers (PR #120240)
via libcxx-commits
libcxx-commits at lists.llvm.org
Tue Dec 17 07:01:41 PST 2024
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-libcxx
Author: Louis Dionne (ldionne)
<details>
<summary>Changes</summary>
This allows using the $<LINK_LIBRARY> generator expression in some of our configurations. We should separately pursue officially bumping the minimum CMake version across all LLVM so we can use this feature more widely.
---
Full diff: https://github.com/llvm/llvm-project/pull/120240.diff
1 Files Affected:
- (modified) libcxx/utils/ci/Dockerfile (+1-1)
``````````diff
diff --git a/libcxx/utils/ci/Dockerfile b/libcxx/utils/ci/Dockerfile
index dbecfd9fd3325d..d0144908f098bd 100644
--- a/libcxx/utils/ci/Dockerfile
+++ b/libcxx/utils/ci/Dockerfile
@@ -160,7 +160,7 @@ EOF
RUN <<EOF
# Install a recent CMake
set -e
- wget https://github.com/Kitware/CMake/releases/download/v3.21.1/cmake-3.21.1-linux-x86_64.sh -O /tmp/install-cmake.sh
+ wget https://github.com/Kitware/CMake/releases/download/v3.24.4/cmake-3.24.4-linux-x86_64.sh -O /tmp/install-cmake.sh
sudo bash /tmp/install-cmake.sh --prefix=/usr --exclude-subdir --skip-license
rm /tmp/install-cmake.sh
EOF
``````````
</details>
https://github.com/llvm/llvm-project/pull/120240
More information about the libcxx-commits
mailing list