You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
So, for this check, we pipe stderr into /dev/null and go on to fetch the platform triplet if the C preprocessor was successfully able to parse platform_triplet.c. If the C preprocessor failed, none is logged (as you noticed).
One thing to consider, is to fail early; that is use AC_MSG_ERROR instead of AC_MSG_RESULT for this case. I think this would be an improvement over the current behaviour.
We could also consider to pipe stderr into a file and dump that to stdout if the platform triplet check fails.
Bug report
Bug description:
In #117886, building
platform_triplet.c
was failing, but the only output inconfig.log
was:At least in the case of failure, the compile command and output should be logged.
CPython versions tested on:
3.13
Operating systems tested on:
macOS
The text was updated successfully, but these errors were encountered: