diff options
author | Brett Cannon <brett@python.org> | 2016-09-07 00:12:40 (GMT) |
---|---|---|
committer | Brett Cannon <brett@python.org> | 2016-09-07 00:12:40 (GMT) |
commit | 63d98bcd4c88eea1c4b50dae95da662284813114 (patch) | |
tree | 3d9cd6a47792930a1db8e6e3307f42f7907d02b8 /Doc/whatsnew | |
parent | 62ec3317d2b7f1be98ff49b2278538a9ae5a7049 (diff) | |
download | cpython-63d98bcd4c88eea1c4b50dae95da662284813114.zip cpython-63d98bcd4c88eea1c4b50dae95da662284813114.tar.gz cpython-63d98bcd4c88eea1c4b50dae95da662284813114.tar.bz2 |
Issue #26359: Add the --with-optimizations configure flag.
The flag will activate LTO and PGO build support when available.
Thanks to Alecsandur Patrascu of Intel for the original patch.
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/3.6.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.6.rst b/Doc/whatsnew/3.6.rst index f40a3c0..69f8f39 100644 --- a/Doc/whatsnew/3.6.rst +++ b/Doc/whatsnew/3.6.rst @@ -796,6 +796,10 @@ Optimizations Build and C API Changes ======================= +* 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`.) + * New :c:func:`Py_FinalizeEx` API which indicates if flushing buffered data failed (:issue:`5319`). |