Searched refs:CCompiler (Results 1 – 8 of 8) sorted by relevance
/external/python/cpython2/Lib/distutils/tests/ |
D | test_ccompiler.py | 6 from distutils.ccompiler import (gen_lib_options, CCompiler, 40 class MyCCompiler(CCompiler):
|
/external/python/cpython2/Lib/distutils/ |
D | bcppcompiler.py | 20 from distutils.ccompiler import 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 | 24 CCompiler, gen_preprocess_options, gen_lib_options 48 class UnixCCompiler(CCompiler): 179 if target_desc == CCompiler.EXECUTABLE:
|
D | msvc9compiler.py | 24 from distutils.ccompiler import CCompiler, gen_lib_options 309 class MSVCCompiler(CCompiler) : 340 CCompiler.__init__ (self, verbose, dry_run, force) 611 if target_desc == CCompiler.EXECUTABLE: 697 if target_desc == CCompiler.EXECUTABLE:
|
D | msvccompiler.py | 19 from distutils.ccompiler import CCompiler, gen_lib_options 204 class MSVCCompiler (CCompiler) : 235 CCompiler.__init__ (self, verbose, dry_run, force) 496 if target_desc == CCompiler.EXECUTABLE:
|
D | ccompiler.py | 23 class CCompiler: class 674 self.link(CCompiler.SHARED_LIBRARY, objects, 687 self.link(CCompiler.SHARED_OBJECT, objects, 697 self.link(CCompiler.EXECUTABLE, objects,
|
/external/python/cpython2/Doc/distutils/ |
D | apiref.rst | 290 :mod:`distutils.ccompiler` --- CCompiler base class 294 :synopsis: Abstract CCompiler class 297 This module provides the abstract base class for the :class:`CCompiler` 298 classes. A :class:`CCompiler` instance can be used for all the compile and 341 Factory function to generate an instance of some CCompiler subclass for the 361 .. class:: CCompiler([verbose=0, dry_run=0, force=0]) 363 The abstract base class :class:`CCompiler` defines the interface that must be 379 instantiate :class:`CCompiler` or one of its subclasses directly - use the 380 :func:`distutils.CCompiler.new_compiler` factory function instead. 386 .. method:: CCompiler.add_include_dir(dir) [all …]
|
/external/python/cpython2/Lib/distutils/command/ |
D | config.py | 99 from distutils.ccompiler import CCompiler, new_compiler 100 if not isinstance(self.compiler, CCompiler):
|