diff options
author | Victor Stinner <vstinner@python.org> | 2022-03-10 13:37:19 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-10 13:37:19 (GMT) |
commit | 9b51fd5d137b662c940f072297b30815f37f105b (patch) | |
tree | c18783a74bcc6ad39ebb0ee452a2284ac871d95c /Doc/whatsnew | |
parent | de554d6e02228b840eb6bffaf7d406c0ef368d5f (diff) | |
download | cpython-9b51fd5d137b662c940f072297b30815f37f105b.zip cpython-9b51fd5d137b662c940f072297b30815f37f105b.tar.gz cpython-9b51fd5d137b662c940f072297b30815f37f105b.tar.bz2 |
bpo-46917: Require IEEE 754 to build Python (GH-31790)
Building Python now requires support of IEEE 754 floating point
numbers.
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/3.11.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.11.rst b/Doc/whatsnew/3.11.rst index 4514de9..0e3ccb6 100644 --- a/Doc/whatsnew/3.11.rst +++ b/Doc/whatsnew/3.11.rst @@ -645,6 +645,9 @@ Build Changes * Building Python now requires a C11 compiler without optional C11 features. (Contributed by Victor Stinner in :issue:`46656`.) +* Building Python now requires support of IEEE 754 floating point numbers. + (Contributed by Victor Stinner in :issue:`46917`.) + * CPython can now be built with the ThinLTO option via ``--with-lto=thin``. (Contributed by Dong-hee Na and Brett Holman in :issue:`44340`.) |