changeset: 101732:0a8509023c09 user: doko@ubuntu.com date: Sun Jun 05 01:38:29 2016 +0200 files: Misc/NEWS setup.py description: - Issue #21277: Don't try to link _ctypes with a ffi_convenience library. diff -r 6ccba4febf0d -r 0a8509023c09 Misc/NEWS --- a/Misc/NEWS Sat Jun 04 16:24:05 2016 -0700 +++ b/Misc/NEWS Sun Jun 05 01:38:29 2016 +0200 @@ -1290,6 +1290,8 @@ Build ----- +- Issue #21277: Don't try to link _ctypes with a ffi_convenience library. + - Issue #26884: Fix linking extension modules for cross builds. Patch by Xavier de Gaye. diff -r 6ccba4febf0d -r 0a8509023c09 setup.py --- a/setup.py Sat Jun 04 16:24:05 2016 -0700 +++ b/setup.py Sun Jun 05 01:38:29 2016 +0200 @@ -2007,7 +2007,7 @@ break ffi_lib = None if ffi_inc is not None: - for lib_name in ('ffi_convenience', 'ffi_pic', 'ffi'): + for lib_name in ('ffi', 'ffi_pic'): if (self.compiler.find_library_file(lib_dirs, lib_name)): ffi_lib = lib_name break