Lines Matching full:libraries

31     link steps -- include directories, macros to define, libraries to link
111 # 'libraries': a list of libraries to include in any link
113 self.libraries = []
115 # 'library_dirs': a list of directories to search for libraries
119 # shared libraries/objects at runtime
135 linker_so linker used to create shared objects and libraries
248 """Add 'libname' to the list of libraries that will be included in
255 The linker will be instructed to link against libraries in the
258 names; the linker will be instructed to link against libraries as
261 self.libraries.append (libname)
264 """Set the list of libraries to be included in all links driven by
266 not affect any standard system libraries that the linker may
269 self.libraries = libnames[:]
274 libraries specified to 'add_library()' and 'set_libraries()'. The
275 linker will be instructed to search for libraries in the order they
289 shared libraries at runtime.
294 """Set the list of directories to search for shared libraries at
313 libraries).
426 def _fix_lib_args(self, libraries, library_dirs, runtime_library_dirs): argument
430 (eg. 'self.libraries' augments 'libraries'). Return a tuple with
433 if libraries is None:
434 libraries = self.libraries
435 elif isinstance(libraries, (list, tuple)):
436 libraries = list (libraries) + (self.libraries or [])
439 "'libraries' (if supplied) must be a list of strings"
459 return (libraries, library_dirs, runtime_library_dirs)
591 'add_link_object()' and/or 'set_link_objects()', the libraries
593 libraries supplied as 'libraries' (if any).
618 libraries=None, library_dirs=None, runtime_library_dirs=None, argument
630 'libraries' is a list of libraries to link against. These are
638 search for libraries that were specified as bare library names
643 to search for other shared libraries that *it* depends on at
670 libraries=None, library_dirs=None, argument
677 libraries, library_dirs, runtime_library_dirs,
683 libraries=None, library_dirs=None, argument
689 libraries, library_dirs, runtime_library_dirs,
694 libraries=None, library_dirs=None, argument
699 libraries, library_dirs, runtime_library_dirs, None,
710 directories searched for libraries.
716 directories searched for runtime libraries.
721 """Return the compiler option to add 'lib' to the list of libraries
727 libraries=None, library_dirs=None): argument
741 if libraries is None:
742 libraries = []
764 libraries=libraries,
787 # "lib%s.%s" % (lib_name, ".a") for Unix static libraries
1057 def gen_lib_options(compiler, library_dirs, runtime_library_dirs, libraries): argument
1059 linking with specific libraries.
1061 'libraries' and 'library_dirs' are, respectively, lists of library names
1084 for lib in libraries: