diff options
author | Ned Deily <nad@python.org> | 2022-03-15 14:39:20 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-15 14:39:20 (GMT) |
commit | dea270a2a80214de22afadaaca2043d0d782eb7d (patch) | |
tree | 23cdfb7d4e4d10525741d1f1286e4d65751eeb14 /Misc/NEWS.d/next | |
parent | ccbc31ecf3a08ef626be9bbb099f0ce801142fc8 (diff) | |
download | cpython-dea270a2a80214de22afadaaca2043d0d782eb7d.zip cpython-dea270a2a80214de22afadaaca2043d0d782eb7d.tar.gz cpython-dea270a2a80214de22afadaaca2043d0d782eb7d.tar.bz2 |
bpo-45405: Prevent internal configure error when running configure with recent versions of clang. (GH-28845) (GH-31889)
Change the configure logic to function properly on macOS when the compiler
outputs a platform triplet for option --print-multiarch.
The Apple Clang included with Xcode 13.3 now supports --print-multiarch
causing configure to fail without this change.
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
(cherry picked from commit 9901d153c201d852d27dc9d3074e283c26468f6d)
Co-authored-by: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Diffstat (limited to 'Misc/NEWS.d/next')
-rw-r--r-- | Misc/NEWS.d/next/Build/2021-10-11-16-27-38.bpo-45405.iSfdW5.rst | 2 |
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..13c93d1 --- /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 clang. Patch by David Bohman. |