]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-46656: Building Python now requires a C11 compiler (GH-31557)
authorVictor Stinner <vstinner@python.org>
Fri, 25 Feb 2022 00:31:30 +0000 (01:31 +0100)
committerGitHub <noreply@github.com>
Fri, 25 Feb 2022 00:31:30 +0000 (01:31 +0100)
See PEP 7:
https://python.github.io/peps/pep-0007/#c-dialect

Doc/whatsnew/3.11.rst
Misc/NEWS.d/next/Build/2022-02-25-00-51-16.bpo-46656.MD783M.rst [new file with mode: 0644]

index 9744051ede6bb157249ccd862d5170f31397026f..c717aad9c87f7941f9b6e035884811f7e231c16f 100644 (file)
@@ -618,6 +618,9 @@ Changes in the Python API
 Build Changes
 =============
 
+* Building Python now requires a C11 compiler without optional C11 features.
+  (Contributed by Victor Stinner in :issue:`46656`.)
+
 * 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-02-25-00-51-16.bpo-46656.MD783M.rst b/Misc/NEWS.d/next/Build/2022-02-25-00-51-16.bpo-46656.MD783M.rst
new file mode 100644 (file)
index 0000000..f5b789b
--- /dev/null
@@ -0,0 +1,2 @@
+Building Python now requires a C11 compiler without optional C11 features.
+Patch by Victor Stinner.