Home
last modified time | relevance | path

Searched refs:CCompiler (Results 1 – 8 of 8) sorted by relevance

/external/python/cpython2/Lib/distutils/tests/
Dtest_ccompiler.py6 from distutils.ccompiler import (gen_lib_options, CCompiler,
40 class MyCCompiler(CCompiler):
/external/python/cpython2/Lib/distutils/
Dbcppcompiler.py20 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:
Dunixccompiler.py24 CCompiler, gen_preprocess_options, gen_lib_options
48 class UnixCCompiler(CCompiler):
179 if target_desc == CCompiler.EXECUTABLE:
Dmsvc9compiler.py24 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:
Dmsvccompiler.py19 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:
Dccompiler.py23 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/
Dapiref.rst290 :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/
Dconfig.py99 from distutils.ccompiler import CCompiler, new_compiler
100 if not isinstance(self.compiler, CCompiler):