From 4b9cd3959f34a55c1f69b80788a0a25747af97de Mon Sep 17 00:00:00 2001 From: Lawrence D'Anna Date: Mon, 29 Jun 2020 14:03:15 -0700 Subject: [PATCH 1/2] allow python to build for macosx-11.0-arm64 --- configure | 3 +++ configure.ac | 3 +++ 2 files changed, 6 insertions(+) diff --git a/configure b/configure index 5024860ca4395a..c5dcbef46ece87 100755 --- a/configure +++ b/configure @@ -9333,6 +9333,9 @@ fi ppc) MACOSX_DEFAULT_ARCH="ppc64" ;; + arm64) + MACOSX_DEFAULT_ARCH="arm64" + ;; *) as_fn_error $? "Unexpected output of 'arch' on OSX" "$LINENO" 5 ;; diff --git a/configure.ac b/configure.ac index 5a3e340aa3e72b..795f5117d8b5df 100644 --- a/configure.ac +++ b/configure.ac @@ -2478,6 +2478,9 @@ case $ac_sys_system/$ac_sys_release in ppc) MACOSX_DEFAULT_ARCH="ppc64" ;; + arm64) + MACOSX_DEFAULT_ARCH="arm64" + ;; *) AC_MSG_ERROR([Unexpected output of 'arch' on OSX]) ;; From fb35910f2f7368b54463f0fdc837af1e1754dfa6 Mon Sep 17 00:00:00 2001 From: "blurb-it[bot]" <43283697+blurb-it[bot]@users.noreply.github.com> Date: Tue, 30 Jun 2020 00:02:43 +0000 Subject: [PATCH 2/2] =?UTF-8?q?=F0=9F=93=9C=F0=9F=A4=96=20Added=20by=20blu?= =?UTF-8?q?rb=5Fit.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Core and Builtins/2020-06-30-00-02-42.bpo-41164.zbzWsP.rst | 1 + 1 file changed, 1 insertion(+) create mode 100644 Misc/NEWS.d/next/Core and Builtins/2020-06-30-00-02-42.bpo-41164.zbzWsP.rst diff --git a/Misc/NEWS.d/next/Core and Builtins/2020-06-30-00-02-42.bpo-41164.zbzWsP.rst b/Misc/NEWS.d/next/Core and Builtins/2020-06-30-00-02-42.bpo-41164.zbzWsP.rst new file mode 100644 index 00000000000000..c4317665717d1c --- /dev/null +++ b/Misc/NEWS.d/next/Core and Builtins/2020-06-30-00-02-42.bpo-41164.zbzWsP.rst @@ -0,0 +1 @@ +Allow python to build for macosx-11.0-arm64 \ No newline at end of file