Searched refs:CCompiler (Results 1 – 7 of 7) sorted by relevance
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/tests/ |
D | test_ccompiler.py | 6 from distutils.ccompiler import (gen_lib_options, CCompiler, 39 class MyCCompiler(CCompiler):
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/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 107 class UnixCCompiler(CCompiler): 235 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: 669 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 | 73 class CCompiler: class 724 self.link(CCompiler.SHARED_LIBRARY, objects, 737 self.link(CCompiler.SHARED_OBJECT, objects, 747 self.link(CCompiler.EXECUTABLE, objects,
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/command/ |
D | config.py | 99 from distutils.ccompiler import CCompiler, new_compiler 100 if not isinstance(self.compiler, CCompiler):
|