From 029e8ddeee72ee39faf06a1dc9030890eb104579 Mon Sep 17 00:00:00 2001 From: Davide De Rosa Date: Wed, 11 Nov 2020 23:16:09 +0100 Subject: [PATCH] Enable ARM64 assembler on Apple Silicon https://github.com/openssl/openssl/pull/12369 --- config/20-all-platforms.conf | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/config/20-all-platforms.conf b/config/20-all-platforms.conf index 241aa12..bc30e14 100644 --- a/config/20-all-platforms.conf +++ b/config/20-all-platforms.conf @@ -77,13 +77,13 @@ my %targets = (); # Base (arm64) "darwin64-arm64-cc" => { - inherit_from => [ "darwin-common" ], + inherit_from => [ "darwin-common", asm("aarch64_asm") ], CFLAGS => add("-Wall"), cflags => add("-arch arm64"), lib_cppflags => add("-DL_ENDIAN"), bn_ops => "SIXTY_FOUR_BIT_LONG", - perlasm_scheme => "macosx", - }, + perlasm_scheme => "ios64", + }, # Device (x86_64) "macos64-x86_64" => {