]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-46917: Require IEEE 754 to build Python (GH-31790)
authorVictor Stinner <vstinner@python.org>
Thu, 10 Mar 2022 13:37:19 +0000 (14:37 +0100)
committerGitHub <noreply@github.com>
Thu, 10 Mar 2022 13:37:19 +0000 (14:37 +0100)
Building Python now requires support of IEEE 754 floating point
numbers.

Doc/whatsnew/3.11.rst
Misc/NEWS.d/next/Build/2022-03-10-09-37-05.bpo-46917.fry4aK.rst [new file with mode: 0644]

index 4514de9c07c9e1783d52b4a1da89e9b14668a959..0e3ccb62cbf39fe75bdba72b5727aab5446bf493 100644 (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`.)
 
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 (file)
index 0000000..fbb7891
--- /dev/null
@@ -0,0 +1,2 @@
+Building Python now requires support of IEEE 754 floating point numbers.
+Patch by Victor Stinner.