We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 437f77d commit 7e9e27fCopy full SHA for 7e9e27f
scripts/build_gst.sh
@@ -297,6 +297,10 @@ python3 -m pip install --no-cache-dir "${GST_PIP_DEPENDENCIES[@]}"
297
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --profile minimal
298
# shellcheck source=/dev/null
299
source "$HOME/.cargo/env"
300
+# Use system git instead of Cargo's built-in libgit2 for fetching dependencies.
301
+# libgit2 fails on 32-bit ARM (armv7) with "Value too large for defined data type"
302
+# when cloning large repositories like gstreamer-rs.
303
+export CARGO_NET_GIT_FETCH_WITH_CLI=true
304
cargo install cargo-c
305
306
# Download and install IL headers if needed:
0 commit comments