diff options
-rw-r--r-- | Doc/whatsnew/3.11.rst | 3 | ||||
-rw-r--r-- | Misc/NEWS.d/next/Build/2022-03-10-09-37-05.bpo-46917.fry4aK.rst | 2 |
2 files changed, 5 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`.) diff --git a/Misc/NEWS.d/next/Build/2022-03-10-09-37-05.bpo-46917.fry4aK.rst b/Misc/NEWS.d/next/Build/2022-03-10-09-37-05.bpo-46917.fry4aK.rst new file mode 100644 index 0000000..fbb7891 --- /dev/null +++ b/Misc/NEWS.d/next/Build/2022-03-10-09-37-05.bpo-46917.fry4aK.rst @@ -0,0 +1,2 @@ +Building Python now requires support of IEEE 754 floating point numbers. +Patch by Victor Stinner. |