Skip to content

Commit

Permalink
pythongh-89640: Restore configure error message on failure to detect …
Browse files Browse the repository at this point in the history
…float word order

Before python#126387, if we didn't detect float word order we'd raise the following
configure error:
```
Unknown float word ordering. You need to manually preset
ax_cv_c_float_words_bigendian=no (or yes) according to your system.
```
This puts it back (except for host_cpu arm or wasm).
  • Loading branch information
hoodmane committed Nov 8, 2024
1 parent 9ecd8f7 commit 8d5b726
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 3 deletions.
11 changes: 9 additions & 2 deletions configure

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 9 additions & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -5920,7 +5920,15 @@ AX_C_FLOAT_WORDS_BIGENDIAN(
stored in ARM mixed-endian order (byte order 45670123)])],
[wasm*], [AC_DEFINE([DOUBLE_IS_LITTLE_ENDIAN_IEEE754], [1],
[Define if C doubles are 64-bit IEEE 754 binary format,
stored with the least significant byte first])])])
stored with the least significant byte first])],
AC_MSG_ERROR[([
Unknown float word ordering. You need to manually preset
ax_cv_c_float_words_bigendian=no (or yes) according to your system.
])]
)]
)

# The short float repr introduced in Python 3.1 requires the
# correctly-rounded string <-> double conversion functions from
Expand Down

0 comments on commit 8d5b726

Please sign in to comment.