We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 373d43f commit 7f8706eCopy full SHA for 7f8706e
components/core/tools/scripts/lib_install/manylinux_2_28/install-prebuilt-packages.sh
@@ -40,7 +40,9 @@ curl \
40
dnf install --assumeyes "$task_pkg_path"
41
rm "$task_pkg_path"
42
43
-# Downgrade to CMake v3 to work around https://github.com/y-scope/clp/issues/795
44
-if ! command -v cmake ; then
45
- pipx install cmake~=3.31
+# Install CMake v3.31.x as ANTLR and yaml-cpp do not yet support CMake v4+.
+# See also: https://github.com/y-scope/clp/issues/795
+if command -v cmake ; then
46
+ pipx uninstall cmake
47
fi
48
+pipx install "cmake~=3.31"
0 commit comments