Lines Matching refs:objects
124 self.objects = []
307 self.objects.append(object)
309 def set_link_objects(self, objects): argument
315 self.objects = objects[:]
350 objects = self.object_filenames(sources,
353 assert len(objects) == len(sources)
360 obj = objects[i]
365 return macros, objects, extra, pp_opts, build
408 def _fix_object_args(self, objects, output_dir): argument
414 if not isinstance(objects, (list, tuple)):
417 objects = list (objects)
424 return (objects, output_dir)
461 def _need_link(self, objects, output_file): argument
469 newer = newer_group (objects, output_file, missing='newer')
471 newer = newer_group (objects, output_file)
564 macros, objects, extra_postargs, pp_opts, build = \
569 for obj in objects:
577 return objects
586 def create_static_lib(self, objects, output_libname, output_dir=None, argument
617 def link(self, target_desc, objects, output_filename, output_dir=None, argument
669 def link_shared_lib(self, objects, output_libname, output_dir=None, argument
674 self.link(CCompiler.SHARED_LIBRARY, objects,
682 def link_shared_object(self, objects, output_filename, output_dir=None, argument
687 self.link(CCompiler.SHARED_OBJECT, objects,
693 def link_executable(self, objects, output_progname, output_dir=None, argument
697 self.link(CCompiler.EXECUTABLE, objects,
758 objects = self.compile([fname], include_dirs=include_dirs)
763 self.link_executable(objects, "a.out",