Lines Matching refs:objects
116 self.objects = []
294 self.objects.append(object)
296 def set_link_objects(self, objects): argument
302 self.objects = objects[:]
337 objects = self.object_filenames(sources, strip_dir=0,
339 assert len(objects) == len(sources)
346 obj = objects[i]
351 return macros, objects, extra, pp_opts, build
403 objects = self.object_filenames(sources, output_dir=output_dir)
404 assert len(objects) == len(sources)
408 return objects, {}
410 def _fix_object_args(self, objects, output_dir): argument
416 if not isinstance(objects, (list, tuple)):
418 objects = list(objects)
425 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
585 def create_static_lib(self, objects, output_libname, output_dir=None, argument
619 objects, argument
680 objects, argument
692 self.link(CCompiler.SHARED_LIBRARY, objects,
701 objects, argument
713 self.link(CCompiler.SHARED_OBJECT, objects,
721 objects, argument
731 self.link(CCompiler.EXECUTABLE, objects,
792 objects = self.compile([fname], include_dirs=include_dirs)
797 self.link_executable(objects, "a.out",