This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author debohman
Recipients debohman, ned.deily
Date 2021-10-07.21:31:12
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1633642272.65.0.492900316833.issue45405@roundup.psfhosted.org>
In-reply-to
Content
By "public llvm / clang", I mean the toolchain version released by the llvm project.

They just released version 13.0.0 last week.

The problem is that version 12 of llvm / clang did not implement --print-multiarch, so this logic in configure was not exercised due to:

if test x$PLATFORM_TRIPLET != x && test x$MULTIARCH != x; then

failing. In that case, $MULTIARCH would be a null string, so test x$MULTIARCH != x would fail. It seems that the logic in configure needs to be updated so that it functions correctly on darwin where --print-multiarch is implemented.
History
Date User Action Args
2021-10-07 21:31:12debohmansetrecipients: + debohman, ned.deily
2021-10-07 21:31:12debohmansetmessageid: <1633642272.65.0.492900316833.issue45405@roundup.psfhosted.org>
2021-10-07 21:31:12debohmanlinkissue45405 messages
2021-10-07 21:31:12debohmancreate