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.
cmake
1 parent 9ccbb8a commit ae27ea1Copy full SHA for ae27ea1
build-scripts/manylinux-container-image/install-userspace-tools.sh
@@ -14,7 +14,13 @@ VIRTUALENV_PIP_BIN="${VIRTUALENV_PYTHON_BIN} -m pip"
14
TOOLS_PKGS=auditwheel
15
if [ "${ARCH}" == "x86_64" ]
16
then
17
- TOOLS_PKGS="${TOOLS_PKGS} cmake --only-binary=cmake"
+ # NOTE: Cmake removed compatibility with `cmake < 3.5` that
18
+ # NOTE: libssh 0.9.6 is set up to require.
19
+ # NOTE: So this patch limits the version of `cmake` we install.
20
+ #
21
+ # Ref: https://github.com/eclipse-ecal/ecal/issues/2041
22
+ # FIXME: Drop the restriction once libssh is bumped to v0.11 series.
23
+ TOOLS_PKGS="${TOOLS_PKGS} cmake<4 --only-binary=cmake"
24
fi
25
26
# Avoid creation of __pycache__/*.py[c|o]
0 commit comments