Home
last modified time | relevance | path

Searched refs:new_compiler (Results 1 – 6 of 6) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/tests/
Dtest_build_clib.py125 from distutils.ccompiler import new_compiler, customize_compiler
127 compiler = new_compiler()
Dsetuptools_build_ext.py13 from distutils.ccompiler import new_compiler
127 compiler = self.shlib_compiler = new_compiler(
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/command/
Dbuild_clib.py100 from distutils.ccompiler import new_compiler
101 self.compiler = new_compiler(compiler=self.compiler,
Dconfig.py99 from distutils.ccompiler import CCompiler, new_compiler
101 self.compiler = new_compiler(compiler=self.compiler,
Dbuild_ext.py279 from distutils.ccompiler import new_compiler
306 self.compiler = new_compiler(compiler=self.compiler,
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/
Dccompiler.py1012 def new_compiler(plat=None, compiler=None, verbose=0, dry_run=0, force=0): function