bpo-46656: Building Python now requires a C11 compiler (GH-31557)

See PEP 7:
https://python.github.io/peps/pep-0007/#c-dialect
This commit is contained in:
Victor Stinner 2022-02-25 01:31:30 +01:00 committed by GitHub
parent 9475dc0b8d
commit 5f8b5e2f21
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 0 deletions

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

View file

@ -0,0 +1,2 @@
Building Python now requires a C11 compiler without optional C11 features.
Patch by Victor Stinner.