From 9b51fd5d137b662c940f072297b30815f37f105b Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Thu, 10 Mar 2022 14:37:19 +0100 Subject: bpo-46917: Require IEEE 754 to build Python (GH-31790) Building Python now requires support of IEEE 754 floating point numbers. --- Doc/whatsnew/3.11.rst | 3 +++ Misc/NEWS.d/next/Build/2022-03-10-09-37-05.bpo-46917.fry4aK.rst | 2 ++ 2 files changed, 5 insertions(+) create mode 100644 Misc/NEWS.d/next/Build/2022-03-10-09-37-05.bpo-46917.fry4aK.rst 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. -- cgit v0.12