bpo-46917: Require IEEE 754 to build Python (GH-31790)

Building Python now requires support of IEEE 754 floating point
numbers.
This commit is contained in:
Victor Stinner 2022-03-10 14:37:19 +01:00 committed by GitHub
parent de554d6e02
commit 9b51fd5d13
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 0 deletions

View File

@ -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`.)

View File

@ -0,0 +1,2 @@
Building Python now requires support of IEEE 754 floating point numbers.
Patch by Victor Stinner.