diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2016-04-19 13:58:11 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2016-04-19 13:58:11 (GMT) |
commit | def8072c344d30321953bb8d40d59541bc827e6d (patch) | |
tree | 64adb576ee5f3d2a11051e23745835f98ae6c2c9 /Misc | |
parent | ddd9917ac3f45a1bab9a200a6fe60a3407d1780d (diff) | |
download | cpython-def8072c344d30321953bb8d40d59541bc827e6d.zip cpython-def8072c344d30321953bb8d40d59541bc827e6d.tar.gz cpython-def8072c344d30321953bb8d40d59541bc827e6d.tar.bz2 |
setup.py: add missing libm dependency
Issue #21668: Link audioop, _datetime, _ctypes_test modules to libm, except on
Mac OS X. Patch written by Xavier de Gaye.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -400,12 +400,15 @@ Tests Build ----- +- Issue #21668: Link audioop, _datetime, _ctypes_test modules to libm, + except on Mac OS X. Patch written by Xavier de Gaye. + - Issue #25702: A --with-lto configure option has been added that will enable link time optimizations at build time during a make profile-opt. Some compilers and toolchains are known to not produce stable code when using LTO, be sure to test things thoroughly before relying on it. It can provide a few % speed up over profile-opt alone. - + - Issue #26624: Adds validation of ucrtbase[d].dll version with warning for old versions. |