[vlc-commits] [Git][videolan/vlc][master] contrib: rust: use stable compiler
Steve Lhomme (@robUx4)
gitlab at videolan.org
Wed Oct 15 07:48:16 UTC 2025
Steve Lhomme pushed to branch master at VideoLAN / VLC
Commits:
f2bba518 by Rémi Denis-Courmont at 2025-10-15T05:54:19+00:00
contrib: rust: use stable compiler
Without this, all of contribs will inherit the VLC Rust toolchain
configuration, which selects hte nightly compiler branch.
Fixes #29412.
- - - - -
2 changed files:
- contrib/bootstrap
- + contrib/src/rust-toolchain.toml
Changes:
=====================================
contrib/bootstrap
=====================================
@@ -377,6 +377,8 @@ add_make "TOPSRC_BUILT := $TOPSRC_BUILT"
add_make "TOPDST := .."
add_make "-include config.mak"
add_make 'include $(TOPSRC)/src/main.mak'
+mkdir -p "$BOOTSTRAP_PATH/tarballs" || exit $?
+test -e rust-toolchain.toml && unlink rust-toolchain.toml
+ln -s "$(dirname "$0")/src/rust-toolchain.toml" rust-toolchain.toml
echo "Bootstrap completed."
${MAKE} help
-mkdir -p $BOOTSTRAP_PATH/tarballs || exit $?
=====================================
contrib/src/rust-toolchain.toml
=====================================
@@ -0,0 +1,3 @@
+[toolchain]
+channel = "stable"
+profile = "default"
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/f2bba518de7b6e42312906bf64a745d0e770a3cd
--
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/f2bba518de7b6e42312906bf64a745d0e770a3cd
You're receiving this email because of your account on code.videolan.org.
VideoLAN code repository instance
More information about the vlc-commits
mailing list