Lines Matching refs:libraries
73 ('libraries=', 'l',
74 "external C libraries to link with"),
76 "directories to search for external C libraries" + sep_by),
78 "directories to search for shared C libraries at runtime"),
117 self.libraries = None
169 self.ensure_string_list('libraries')
174 if self.libraries is None:
175 self.libraries = []
296 # If we were asked to build any C/C++ libraries, make sure that the
301 self.libraries.extend(build_clib.get_library_names() or [])
330 if self.libraries is not None:
331 self.compiler.set_libraries(self.libraries)
389 for key in ('include_dirs', 'library_dirs', 'libraries',
553 libraries=self.get_libraries(ext),
706 """Return the list of libraries to link against when building a
707 shared extension. On most platforms, this is just 'ext.libraries';
723 # don't extend ext.libraries, it may be shared with other
725 return ext.libraries + [pythonlib]
729 # remain RTLD_LOCAL and so the shared libraries must be linked with
734 # shared libraries are resolved at link time.
752 return ext.libraries + ['python' + ldversion]
754 return ext.libraries