[vlc-commits] contrib/rust: disable compilation for macOS ARM-64

Felix Paul Kühne git at videolan.org
Fri Dec 18 05:45:55 UTC 2020


vlc | branch: master | Felix Paul Kühne <felix at feepk.net> | Mon Dec 14 06:58:58 2020 +0100| [adc4d84607fa743b6e48f4888aba7b799788674e] | committer: Felix Paul Kühne

contrib/rust: disable compilation for macOS ARM-64

With the currently used version neither native nor cross-compilation appears to be supported.

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=adc4d84607fa743b6e48f4888aba7b799788674e
---

 contrib/src/main-rust.mak | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/contrib/src/main-rust.mak b/contrib/src/main-rust.mak
index fe2be82724..104656ea3c 100644
--- a/contrib/src/main-rust.mak
+++ b/contrib/src/main-rust.mak
@@ -24,7 +24,9 @@ endif
 endif
 endif
 else ifdef HAVE_MACOSX
+ifneq ($(ARCH),aarch64) # macOS ARM-64 is unsupported
 RUST_TARGET = $(ARCH)-apple-darwin
+endif
 else ifdef HAVE_SOLARIS
 RUST_TARGET = x86_64-sun-solaris
 else ifdef HAVE_LINUX



More information about the vlc-commits mailing list