mirror of https://github.com/python/cpython
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:
parent
9475dc0b8d
commit
5f8b5e2f21
|
@ -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`.)
|
||||
|
||||
|
|
|
@ -0,0 +1,2 @@
|
|||
Building Python now requires a C11 compiler without optional C11 features.
|
||||
Patch by Victor Stinner.
|
Loading…
Reference in New Issue