[vlc-commits] [Git][videolan/vlc][master] 2 commits: get-rust-target: fix triplet for Apple watchOS
Steve Lhomme (@robUx4)
gitlab at videolan.org
Sat Oct 18 07:03:22 UTC 2025
Steve Lhomme pushed to branch master at VideoLAN / VLC
Commits:
f89d648d by Steve Lhomme at 2025-10-18T06:13:57+00:00
get-rust-target: fix triplet for Apple watchOS
See https://doc.rust-lang.org/stable/rustc/platform-support/apple-watchos.html
- - - - -
a97fb526 by Steve Lhomme at 2025-10-18T06:13:57+00:00
get-rust-target: fix triplet for Apple visionOS
See https://doc.rust-lang.org/stable/rustc/platform-support/apple-visionos.html
- - - - -
1 changed file:
- contrib/src/get-rust-target.sh
Changes:
=====================================
contrib/src/get-rust-target.sh
=====================================
@@ -174,6 +174,27 @@ case $OS in
esac
fi
;;
+ watchos)
+ if test -z "$SIMULATOR"; then
+ case $ARCH in
+ aarch64|arm64)
+ return_triplet aarch64-apple-watchos
+ ;;
+ arm64_32)
+ return_triplet arm64_32-apple-watchos
+ ;;
+ esac
+ fi
+ ;;
+ xros)
+ if test -z "$SIMULATOR"; then
+ case $ARCH in
+ aarch64|arm64)
+ return_triplet aarch64-apple-visionos
+ ;;
+ esac
+ fi
+ ;;
esac
abort_err "Unsupported Darwin triplet '$TRIPLET' for '$DARWIN'"
View it on GitLab: https://code.videolan.org/videolan/vlc/-/compare/bd56db1c0e5dcacc796ea6d8152dae54e0460df8...a97fb5265779a3f6af21d5b706c56fc112e1412a
--
View it on GitLab: https://code.videolan.org/videolan/vlc/-/compare/bd56db1c0e5dcacc796ea6d8152dae54e0460df8...a97fb5265779a3f6af21d5b706c56fc112e1412a
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