https://github.com/python/cpython/commit/0dcfd0d52281cce102e27976ba9e4177e4492b66
commit: 0dcfd0d52281cce102e27976ba9e4177e4492b66
branch: main
author: Erlend E. Aasland <[email protected]>
committer: erlend-aasland <[email protected]>
date: 2024-04-14T09:21:29+02:00
summary:
Autoconf: aarch64-apple-darwin/clang is now a tier 1 platform (#117861)
See also python/pep#3705
files:
M configure
M configure.ac
diff --git a/configure b/configure
index 11bdd861d8ec37..80403255a814af 100755
--- a/configure
+++ b/configure
@@ -6979,14 +6979,14 @@ case $host/$ac_cv_cc_name in #(
PY_SUPPORT_TIER=1 ;; #(
x86_64-apple-darwin*/clang) :
PY_SUPPORT_TIER=1 ;; #(
+ aarch64-apple-darwin*/clang) :
+ PY_SUPPORT_TIER=1 ;; #(
i686-pc-windows-msvc/msvc) :
PY_SUPPORT_TIER=1 ;; #(
x86_64-pc-windows-msvc/msvc) :
PY_SUPPORT_TIER=1 ;; #(
- aarch64-apple-darwin*/clang) :
- PY_SUPPORT_TIER=2 ;; #(
- aarch64-*-linux-gnu/gcc) :
+ aarch64-*-linux-gnu/gcc) :
PY_SUPPORT_TIER=2 ;; #(
aarch64-*-linux-gnu/clang) :
PY_SUPPORT_TIER=2 ;; #(
diff --git a/configure.ac b/configure.ac
index 285ba0fdfeefad..ec925d4d4a0a5a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1131,10 +1131,10 @@ AC_MSG_CHECKING([for PEP 11 support tier])
AS_CASE([$host/$ac_cv_cc_name],
[x86_64-*-linux-gnu/gcc], [PY_SUPPORT_TIER=1], dnl Linux on AMD64,
any vendor, glibc, gcc
[x86_64-apple-darwin*/clang], [PY_SUPPORT_TIER=1], dnl macOS on Intel,
any version
+ [aarch64-apple-darwin*/clang], [PY_SUPPORT_TIER=1], dnl macOS on M1, any
version
[i686-pc-windows-msvc/msvc], [PY_SUPPORT_TIER=1], dnl 32bit Windows on
Intel, MSVC
[x86_64-pc-windows-msvc/msvc], [PY_SUPPORT_TIER=1], dnl 64bit Windows on
AMD64, MSVC
- [aarch64-apple-darwin*/clang], [PY_SUPPORT_TIER=2], dnl macOS on M1, any
version
[aarch64-*-linux-gnu/gcc], [PY_SUPPORT_TIER=2], dnl Linux ARM64,
glibc, gcc+clang
[aarch64-*-linux-gnu/clang], [PY_SUPPORT_TIER=2],
[powerpc64le-*-linux-gnu/gcc], [PY_SUPPORT_TIER=2], dnl Linux on PPC64
little endian, glibc, gcc
_______________________________________________
Python-checkins mailing list -- [email protected]
To unsubscribe send an email to [email protected]
https://mail.python.org/mailman3/lists/python-checkins.python.org/
Member address: [email protected]