- Issue #21277: Don't try to link _ctypes with a ffi_convenience library.
diff --git a/setup.py b/setup.py
index 636dd09..006ecdd 100644
--- a/setup.py
+++ b/setup.py
@@ -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