This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author doko
Recipients doko
Date 2014-04-16.22:44:26
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1397688266.23.0.303919517358.issue21277@psf.upfronthosting.co.za>
In-reply-to
Content
the ffi_convenience library was once built and installed with oldish GCC versions. Either remove it completely from the search path, or search for  the standard libffi system library.

--- a/setup.py
+++ b/setup.py
@@ -1939,7 +1939,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_convenience', 'ffi_pic', 'ffi'):
                 if (self.compiler.find_library_file(lib_dirs, lib_name)):
                     ffi_lib = lib_name
                     break
History
Date User Action Args
2014-04-16 22:44:26dokosetrecipients: + doko
2014-04-16 22:44:26dokosetmessageid: <1397688266.23.0.303919517358.issue21277@psf.upfronthosting.co.za>
2014-04-16 22:44:26dokolinkissue21277 messages
2014-04-16 22:44:26dokocreate