diff options
author | Benjamin Peterson <benjamin@python.org> | 2016-09-08 17:27:20 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2016-09-08 17:27:20 (GMT) |
commit | cfbd48bc56980823dd8e2560e0ce4e46e33e4e3d (patch) | |
tree | 9fe19c0ca5dbbcc2b97e36a544f8947a87472bed | |
parent | 003f059b3a4e00e24c68b45b16cdefeb38cc01aa (diff) | |
download | cpython-cfbd48bc56980823dd8e2560e0ce4e46e33e4e3d.zip cpython-cfbd48bc56980823dd8e2560e0ce4e46e33e4e3d.tar.gz cpython-cfbd48bc56980823dd8e2560e0ce4e46e33e4e3d.tar.bz2 |
add a note about c99
-rw-r--r-- | Doc/whatsnew/3.6.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.6.rst b/Doc/whatsnew/3.6.rst index 66f6b85..f2b53fb 100644 --- a/Doc/whatsnew/3.6.rst +++ b/Doc/whatsnew/3.6.rst @@ -845,6 +845,9 @@ Optimizations Build and C API Changes ======================= +* Python now requires some C99 support in the toolchain to build. For more + information, see :pep:`7`. + * The ``--with-optimizations`` configure flag has been added. Turning it on will activate LTO and PGO build support (when available). (Original patch by Alecsandru Patrascu of Intel in :issue:`26539`.) |