summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2020-11-22 01:45:21 (GMT)
committerGitHub <noreply@github.com>2020-11-22 01:45:21 (GMT)
commit748d38bf529d71d87cc7ef6d63e9df7d7d771ac9 (patch)
tree4bf8674ebec30ddc200612a99c67039f5518e56b /Misc
parent89d74d0acde25eed953dbfd56b1fafd0df78da7e (diff)
downloadcpython-748d38bf529d71d87cc7ef6d63e9df7d7d771ac9.zip
cpython-748d38bf529d71d87cc7ef6d63e9df7d7d771ac9.tar.gz
cpython-748d38bf529d71d87cc7ef6d63e9df7d7d771ac9.tar.bz2
[3.9] bpo-38443: Check that the specified universal architectures work (GH-22910) (GH-23451)
As [[bpo-38443]()]() says the error message from configure when specifying --enable-universalsdk with a set of architectures that is not supported by the compiler is not very helpful. This PR explicitly checks if the compiler works and bails out if it doesn't. (cherry picked from commit 0f20bd9042c9b7fce20c3b9511cd0820b30094c3) Co-authored-by: Ronald Oussoren <ronaldoussoren@mac.com>
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/macOS/2020-10-23-10-26-53.bpo-38443.vu64tl.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/macOS/2020-10-23-10-26-53.bpo-38443.vu64tl.rst b/Misc/NEWS.d/next/macOS/2020-10-23-10-26-53.bpo-38443.vu64tl.rst
new file mode 100644
index 0000000..008c972
--- /dev/null
+++ b/Misc/NEWS.d/next/macOS/2020-10-23-10-26-53.bpo-38443.vu64tl.rst
@@ -0,0 +1,2 @@
+The ``--enable-universalsdk`` and ``--with-universal-archs`` options for the
+configure script now check that the specified architectures can be used.