[issue44096] Bad clang detection in configure script

2021-05-10 Thread Ned Deily
Ned Deily added the comment: Thanks for the report. Let’s hold off on writing a patch for now until I’ve had a chance to investigate the multiple issues here. That should be a few days after some imminent PyCon events. -- ___ Python tracker

[issue44096] Bad clang detection in configure script

2021-05-10 Thread Ned Deily
Change by Ned Deily : -- assignee: -> ned.deily nosy: +ned.deily ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue44096] Bad clang detection in configure script

2021-05-09 Thread Rishav Kundu
New submission from Rishav Kundu : Because autoconf detects `cc` before `clang` [1], this means that most of the checks in configure.ac that compare $CC to `clang` don’t work. This in turn means that things like LTO and PGO don’t work — the appropriate compiler options do not get set. I can