[vlc-commits] [Git][videolan/vlc][master] contrib: Don't try to build Rust code for armv7-windows
Steve Lhomme (@robUx4)
gitlab at videolan.org
Sun Jul 28 05:54:31 UTC 2024
Steve Lhomme pushed to branch master at VideoLAN / VLC
Commits:
0eef00ed by Martin Storsjö at 2024-07-27T15:09:48+00:00
contrib: Don't try to build Rust code for armv7-windows
It's not supported by Rust (at all).
- - - - -
1 changed file:
- contrib/src/get-rust-target.sh
Changes:
=====================================
contrib/src/get-rust-target.sh
=====================================
@@ -105,6 +105,11 @@ case $OS in
if test ! -z "$UWP"; then
abort_err "UWP Windows is Tier 3"
fi
+ case $ARCH in
+ armv7)
+ abort_err "ARMv7 Windows not supported by Rust"
+ ;;
+ esac
if test ! -z "$UCRT"; then
return_triplet $ARCH-pc-windows-gnullvm
else
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/0eef00ed53f4e8e5e1e4e63b808de17ec637aba6
--
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/0eef00ed53f4e8e5e1e4e63b808de17ec637aba6
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