Home | History | Annotate | Download | only in command

Lines Matching refs:compiler

85         ('compiler=', 'c',
86 "specify the compiler type"),
102 ('help-compiler', None,
123 self.compiler = None
136 ('compiler', 'compiler'),
305 self.compiler = new_compiler(compiler=self.compiler,
309 customize_compiler(self.compiler)
310 # If we are cross-compiling, init the compiler now (if we are not
312 # late initialization of compiler even if they shouldn't...)
314 self.compiler.initialize(self.plat_name)
321 self.compiler.set_include_dirs(self.include_dirs)
325 self.compiler.define_macro(name, value)
328 self.compiler.undefine_macro(macro)
330 self.compiler.set_libraries(self.libraries)
332 self.compiler.set_library_dirs(self.library_dirs)
334 self.compiler.set_runtime_library_dirs(self.rpath)
336 self.compiler.set_link_objects(self.link_objects)
513 # Two possible sources for extra compiler arguments:
519 # any sensible compiler will give precedence to later
527 objects = self.compiler.compile(sources,
547 language = ext.language or self.compiler.detect_language(sources)
549 self.compiler.link_shared_object(
707 if not isinstance(self.compiler, MSVCCompiler):