From 12c8dba4caee4c4a92738f1f4614b70e52c3cf3a Mon Sep 17 00:00:00 2001 From: "Todd C. Miller" Date: Fri, 29 Oct 2021 13:03:36 -0600 Subject: [PATCH] Back out f2d82771e7dd, arm64e on macOS is still in preview state. Until arm64e on macOS is finalized, continue to build arm64 packages. --- scripts/mkpkg | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/scripts/mkpkg b/scripts/mkpkg index 5c44fd436..4eed3a6cb 100755 --- a/scripts/mkpkg +++ b/scripts/mkpkg @@ -340,11 +340,9 @@ case "$osversion" in # Build intel universal binaries for 10.6 and below ARCH_FLAGS="-arch i386 -arch x86_64" ;; - macos1[1-9]*) - # Build arm64e/x86_64 universal binaries for macOS 11 and up - # We originally used arm64 here but the correct ABI is arm64e. - # The arm64 arch will be removed in a future release. - ARCH_FLAGS="-arch arm64 -arch arm64e -arch x86_64" + macos11*) + # Build arm64/x86_64 universal binaries for macOS 11 + ARCH_FLAGS="-arch arm64 -arch x86_64" ;; esac if test "${osversion}" != "`$scriptdir/pp --probe`"; then