From 3529826bcc23849fa9521d2265e5a489f2aa0a07 Mon Sep 17 00:00:00 2001 From: Zach Bacon Date: Sun, 5 Sep 2021 13:25:11 -0400 Subject: [PATCH] begin the support of arm64 support in the m1 mac variants, not sure if this will work however, but I'll keep tweaking until it is ready --- tools/osx/builder | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tools/osx/builder b/tools/osx/builder index d3ce33ab..212041ff 100755 --- a/tools/osx/builder +++ b/tools/osx/builder @@ -28,6 +28,11 @@ case "$1" in target_cpu=i386 shift ;; + -arm64) + target_bits=arm64 + target_cpu=arm64 + shift + ;; esac # Need to use Xcode 9 for 32 bit builds on Mojave and newer.