diff options
author | Zachary Ware <zachary.ware@gmail.com> | 2016-09-17 06:25:24 (GMT) |
---|---|---|
committer | Zachary Ware <zachary.ware@gmail.com> | 2016-09-17 06:25:24 (GMT) |
commit | f40d4ddff3c800b3c956a5e8820aabe3aa87cddd (patch) | |
tree | a5bf5ecfbbcb97a97573a326f5966d38de5fa49c /Doc | |
parent | 48ab735ca518b6cb3aef6ea1662182aba3f89253 (diff) | |
download | cpython-f40d4ddff3c800b3c956a5e8820aabe3aa87cddd.zip cpython-f40d4ddff3c800b3c956a5e8820aabe3aa87cddd.tar.gz cpython-f40d4ddff3c800b3c956a5e8820aabe3aa87cddd.tar.bz2 |
Closes #27979: Remove bundled copy of libffi
An installed copy of libffi is now required for building _ctypes on
any platform but OSX and Windows.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/whatsnew/3.7.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.7.rst b/Doc/whatsnew/3.7.rst index 0b54019..91c6cc1 100644 --- a/Doc/whatsnew/3.7.rst +++ b/Doc/whatsnew/3.7.rst @@ -94,6 +94,10 @@ Optimizations Build and C API Changes ======================= +* A full copy of libffi is no longer bundled for use when building the + :mod:`_ctypes <ctypes>` module on non-OSX UNIX platforms. An installed copy + of libffi is now required when building ``_ctypes`` on such platforms. + Contributed by Zachary Ware in :issue:`27979`. Deprecated |