Lines Matching defs:link
29 instance can be used for all the compile/link steps in building a
31 link steps -- include directories, macros to define, libraries to link
34 attributes may be varied on a per-compilation or per-link basis.
62 # dirs, e.g. "-Ldir1 -lfoo -Ldir2 -lfoo" to link against
111 # 'libraries': a list of libraries to include in any link
123 # named library files) to include on any link
255 The linker will be instructed to link against libraries in the
258 names; the linker will be instructed to link against libraries as
304 compilers") to be included in every link driven by this compiler
311 every link to 'objects'. This does not affect any standard object
588 """Link a bunch of stuff together to create a static library file.
612 # values for target_desc parameter in link()
617 def link(self, target_desc, objects, output_filename, output_dir=None,
621 """Link a bunch of stuff together to create an executable or
630 'libraries' is a list of libraries to link against. These are
667 # Old 'link_*()' methods, rewritten to use the new 'link()' method.
674 self.link(CCompiler.SHARED_LIBRARY, objects,
687 self.link(CCompiler.SHARED_OBJECT, objects,
697 self.link(CCompiler.EXECUTABLE, objects,