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
When building CPython from source, I noticed some suspicious errors that seem to be related to a missing spaces in the configure script. It seems that most uses of as_fn_append correctly include a leading space before appending to a variable, however, there are several cases where this space has not been added which can lead to two arguments being concatenated:
Bug report
Bug description:
When building CPython from source, I noticed some suspicious errors that seem to be related to a missing spaces in the configure script. It seems that most uses of
as_fn_appendcorrectly include a leading space before appending to a variable, however, there are several cases where this space has not been added which can lead to two arguments being concatenated:When compiling to Emscripten in Bazel, for example, I end up with
-sRELOCATABLE=1-Wstrict-prototypesin one of my tests:CPython versions tested on:
3.12
Operating systems tested on:
Other
Linked PRs