Searched refs:CCompiler (Results 1 – 12 of 12) sorted by relevance
/third_party/python/Lib/distutils/ |
D | _msvccompiler.py | 22 from distutils.ccompiler import CCompiler, gen_lib_options 170 class MSVCCompiler(CCompiler) : 202 CCompiler.__init__ (self, verbose, dry_run, force) 270 (CCompiler.EXECUTABLE, None): self.ldflags_exe, 271 (CCompiler.EXECUTABLE, False): self.ldflags_exe, 272 (CCompiler.EXECUTABLE, True): self.ldflags_exe_debug, 273 (CCompiler.SHARED_OBJECT, None): self.ldflags_shared, 274 (CCompiler.SHARED_OBJECT, False): self.ldflags_shared, 275 (CCompiler.SHARED_OBJECT, True): self.ldflags_shared_debug, 276 (CCompiler.SHARED_LIBRARY, None): self.ldflags_static, [all …]
|
D | bcppcompiler.py | 20 CCompiler, gen_preprocess_options 25 class BCPPCompiler(CCompiler) : 58 CCompiler.__init__ (self, verbose, dry_run, force) 203 if target_desc == CCompiler.EXECUTABLE:
|
D | unixccompiler.py | 21 CCompiler, gen_preprocess_options, gen_lib_options 45 class UnixCCompiler(CCompiler): 176 if target_desc == CCompiler.EXECUTABLE:
|
D | msvc9compiler.py | 22 from distutils.ccompiler import CCompiler, gen_lib_options 298 class MSVCCompiler(CCompiler) : 329 CCompiler.__init__ (self, verbose, dry_run, force) 598 if target_desc == CCompiler.EXECUTABLE: 684 if target_desc == CCompiler.EXECUTABLE:
|
D | msvccompiler.py | 16 CCompiler, gen_lib_options 200 class MSVCCompiler(CCompiler) : 231 CCompiler.__init__ (self, verbose, dry_run, force) 486 if target_desc == CCompiler.EXECUTABLE:
|
D | ccompiler.py | 15 class CCompiler: class 692 self.link(CCompiler.SHARED_LIBRARY, objects, 713 self.link(CCompiler.SHARED_OBJECT, objects, 731 self.link(CCompiler.EXECUTABLE, objects,
|
/third_party/grpc/src/python/grpcio/ |
D | _spawn_patch.py | 30 _classic_spawn = ccompiler.CCompiler.spawn 60 ccompiler.CCompiler.spawn = _commandfile_spawn
|
D | _parallel_compile_patch.py | 66 distutils.ccompiler.CCompiler.compile = _parallel_compile
|
/third_party/python/Doc/distutils/ |
D | apiref.rst | 315 :mod:`distutils.ccompiler` --- CCompiler base class 319 :synopsis: Abstract CCompiler class 322 This module provides the abstract base class for the :class:`CCompiler` 323 classes. A :class:`CCompiler` instance can be used for all the compile and 366 Factory function to generate an instance of some CCompiler subclass for the 386 .. class:: CCompiler([verbose=0, dry_run=0, force=0]) 388 The abstract base class :class:`CCompiler` defines the interface that must be 404 instantiate :class:`CCompiler` or one of its subclasses directly - use the 405 :func:`distutils.CCompiler.new_compiler` factory function instead. 411 .. method:: CCompiler.add_include_dir(dir) [all …]
|
/third_party/grpc/tools/distrib/python/grpcio_tools/ |
D | _parallel_compile_patch.py | 63 distutils.ccompiler.CCompiler.compile = _parallel_compile
|
/third_party/python/Lib/distutils/command/ |
D | config.py | 95 from distutils.ccompiler import CCompiler, new_compiler 96 if not isinstance(self.compiler, CCompiler):
|
/third_party/python/Misc/NEWS.d/ |
D | 3.9.0a1.rst | 1994 Fix C compiler warning caused by distutils.ccompiler.CCompiler.has_function.
|