-
-
Notifications
You must be signed in to change notification settings - Fork 30.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Configure EXEEXT
hacks are interfering with AX_C_FLOAT_WORDS_BIGENDIAN
#125698
Comments
cc. @damelang, author of |
Another workaround, could be to move the float checks to before our |
I am not entirely sure what's my input here supposed to be. |
This reverts commit e924bb6.
This reverts commit e924bb6.
I just suspected a third-party consumer of our build system would like to receive a heads-up when I proposed a rename of one of the configure/Make variables. Anyway, as I feared, the renaming broke CI, so I'm reverting it. I suggest instead to amend Dan Amelang's patch to use |
I amended Dan's patch to use |
See python/cpython-devcontainers#30 for a proposed patch. |
OTOH, most of the macros in autoconf-archive does actually use Footnotes
|
(cherry picked from commit 8b7cdc5) Co-authored-by: Erlend E. Aasland <erlend@python.org>
(cherry picked from commit 8b7cdc5) Co-authored-by: Erlend E. Aasland <erlend@python.org>
Landed on the following solution: Automerge enabled for the backports. Closing this as completed. |
Bug report
Bug description:
We mess up
EXEEXT
inconfigure.ac
:cpython/configure.ac
Lines 1323 to 1340 in cda0ec8
This creates problems1, since
AX_C_FLOAT_WORDS_BIGENDIAN
expectsEXEEXT
andac_exeext
to be the same.EXEEXT
andac_exeext
are set up byAC_PROG_CC
:cpython/configure.ac
Line 1026 in cda0ec8
We can mitigate this by:
ac_exeext=$EXEEXT
after L1340 inconfigure.ac
EXEEXT
; for exampleEXE_SUFFIX
My gut feel regarding these is that I'd really not like to add more
EXEEXT
hacks, so I'd like to avoid 1). 2) should be ok, given that no-one else are depending onEXEEXT
(cc. @hroncok).CPython versions tested on:
CPython main branch
Operating systems tested on:
Linux, macOS, Other
Linked PRs
Footnotes
https://github.com/python/cpython/pull/125571#issuecomment-2422385731, https://github.com/python/cpython/pull/125571#issuecomment-2422414137 ↩
The text was updated successfully, but these errors were encountered: