diff options
author | Malcolm Smith <smith@chaquo.com> | 2024-05-01 16:47:54 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-01 16:47:54 (GMT) |
commit | 75955110a643875b5d096b6eda06dcc6e542e171 (patch) | |
tree | 580a21e484ac585bf155c23e3fa311dd073914af /configure.ac | |
parent | 6d12f4469c5f9e24809df28b19900722d52af11b (diff) | |
download | cpython-75955110a643875b5d096b6eda06dcc6e542e171.zip cpython-75955110a643875b5d096b6eda06dcc6e542e171.tar.gz cpython-75955110a643875b5d096b6eda06dcc6e542e171.tar.bz2 |
gh-116622: Android sysconfig updates (#118352)
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index ae65efe..0f11778 100644 --- a/configure.ac +++ b/configure.ac @@ -1148,6 +1148,9 @@ AS_CASE([$host/$ac_cv_cc_name], [x86_64-*-freebsd*/clang], [PY_SUPPORT_TIER=3], dnl FreeBSD on AMD64 [aarch64-apple-ios*-simulator/clang], [PY_SUPPORT_TIER=3], dnl iOS Simulator on arm64 [aarch64-apple-ios*/clang], [PY_SUPPORT_TIER=3], dnl iOS on ARM64 + [aarch64-*-linux-android/clang], [PY_SUPPORT_TIER=3], dnl Android on ARM64 + [x86_64-*-linux-android/clang], [PY_SUPPORT_TIER=3], dnl Android on AMD64 + [PY_SUPPORT_TIER=0] ) |