debohman <deboh...@gmail.com> added the comment:

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.

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<https://bugs.python.org/issue45405>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to