[vlc-commits] contrib: gcrypt: disable asm for macOS aarch64 for now

Marvin Scholz git at videolan.org
Mon Sep 7 11:48:43 CEST 2020


vlc/vlc-3.0 | branch: master | Marvin Scholz <epirat07 at gmail.com> | Mon Jul 27 21:58:54 2020 +0200| [1faa50a9a497291074be597175652b5a2e48ca7f] | committer: Felix Paul Kühne

contrib: gcrypt: disable asm for macOS aarch64 for now

The detection is currently broken and it does not work at all.

(cherry picked from commit 8edd1a300a429efb6fa518c600f62db532dba258)
Signed-off-by: Felix Paul Kühne <felix at feepk.net>

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

 contrib/src/gcrypt/rules.mak | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/contrib/src/gcrypt/rules.mak b/contrib/src/gcrypt/rules.mak
index cca7f62784..7319fc046c 100644
--- a/contrib/src/gcrypt/rules.mak
+++ b/contrib/src/gcrypt/rules.mak
@@ -51,6 +51,9 @@ GCRYPT_EXTRA_CFLAGS =
 endif
 ifdef HAVE_MACOSX
 GCRYPT_CONF += --disable-aesni-support
+ifeq ($(ARCH),aarch64)
+GCRYPT_CONF += --disable-asm --disable-arm-crypto-support
+endif
 else
 ifdef HAVE_BSD
 GCRYPT_CONF += --disable-asm --disable-aesni-support



More information about the vlc-commits mailing list