summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2021-10-13 00:31:32 (GMT)
committerGitHub <noreply@github.com>2021-10-13 00:31:32 (GMT)
commitedae3e2ac73151217b4b4e096dd9f17cc0a50c11 (patch)
treec8c96a5762321a5ad1ba6b2e3900b07f89383da5 /Misc
parent854db7e82126701f2bf7a3ca0d78e3e26096aa75 (diff)
downloadcpython-edae3e2ac73151217b4b4e096dd9f17cc0a50c11.zip
cpython-edae3e2ac73151217b4b4e096dd9f17cc0a50c11.tar.gz
cpython-edae3e2ac73151217b4b4e096dd9f17cc0a50c11.tar.bz2
[3.10] bpo-45405: Prevent ``internal configure error`` when running ``configure`` with recent versions of non-Apple clang. (GH-28845) (GH-28911)
Change the configure logic to function properly on macOS when the compiler outputs a platform triplet for option --print-multiarch. Co-authored-by: Ned Deily <nad@python.org> (cherry picked from commit 9c4766772cda67648184f8ddba546a5fc0167f91) Co-authored-by: David Bohman <debohman@gmail.com> Automerge-Triggered-By: GH:ned-deily
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Build/2021-10-11-16-27-38.bpo-45405.iSfdW5.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Build/2021-10-11-16-27-38.bpo-45405.iSfdW5.rst b/Misc/NEWS.d/next/Build/2021-10-11-16-27-38.bpo-45405.iSfdW5.rst
new file mode 100644
index 0000000..a2dc5bc
--- /dev/null
+++ b/Misc/NEWS.d/next/Build/2021-10-11-16-27-38.bpo-45405.iSfdW5.rst
@@ -0,0 +1,2 @@
+Prevent ``internal configure error`` when running ``configure``
+with recent versions of non-Apple clang. Patch by David Bohman.