Lines Matching refs:CCompiler
24 from distutils.ccompiler import CCompiler, gen_lib_options
189 class MSVCCompiler(CCompiler) :
221 CCompiler.__init__ (self, verbose, dry_run, force)
293 (CCompiler.EXECUTABLE, None): self.ldflags_exe,
294 (CCompiler.EXECUTABLE, False): self.ldflags_exe,
295 (CCompiler.EXECUTABLE, True): self.ldflags_exe_debug,
296 (CCompiler.SHARED_OBJECT, None): self.ldflags_shared,
297 (CCompiler.SHARED_OBJECT, False): self.ldflags_shared,
298 (CCompiler.SHARED_OBJECT, True): self.ldflags_shared_debug,
299 (CCompiler.SHARED_LIBRARY, None): self.ldflags_static,
300 (CCompiler.SHARED_LIBRARY, False): self.ldflags_static,
301 (CCompiler.SHARED_LIBRARY, True): self.ldflags_static_debug,