Home
last modified time | relevance | path

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

/external/syzkaller/sys/targets/
Dtargets.go27 CCompiler string member
185 CCompiler: os.ExpandEnv("${SOURCEDIR}/buildtools/linux-x64/clang/bin/clang++"),
203 CCompiler: os.ExpandEnv("${SOURCEDIR}/buildtools/linux-x64/clang/bin/clang++"),
231CCompiler: os.ExpandEnv("${SOURCEDIR}/toolchain/x86_64-ucb-akaros-gcc/bin/x86_64-ucb-akaro…
303 if target.CCompiler == "" {
304 target.CCompiler = target.CCompilerPrefix + "gcc"
322 cmd := exec.Command(target.CCompiler, "-x", "c", "-", "-o", "/dev/null", "-static")
/external/python/cpython3/Lib/distutils/
D_msvccompiler.py24 from distutils.ccompiler import CCompiler, gen_lib_options
189 class MSVCCompiler(CCompiler) :
221 CCompiler.__init__ (self, verbose, dry_run, force)
293 (CCompiler.EXECUTABLE, None): self.ldflags_exe,
294 (CCompiler.EXECUTABLE, False): self.ldflags_exe,
295 (CCompiler.EXECUTABLE, True): self.ldflags_exe_debug,
296 (CCompiler.SHARED_OBJECT, None): self.ldflags_shared,
297 (CCompiler.SHARED_OBJECT, False): self.ldflags_shared,
298 (CCompiler.SHARED_OBJECT, True): self.ldflags_shared_debug,
299 (CCompiler.SHARED_LIBRARY, None): self.ldflags_static,
[all …]
Dbcppcompiler.py20 CCompiler, gen_preprocess_options, gen_lib_options
25 class BCPPCompiler(CCompiler) :
58 CCompiler.__init__ (self, verbose, dry_run, force)
203 if target_desc == CCompiler.EXECUTABLE:
Dunixccompiler.py21 CCompiler, gen_preprocess_options, gen_lib_options
45 class UnixCCompiler(CCompiler):
176 if target_desc == CCompiler.EXECUTABLE:
Dmsvc9compiler.py22 from distutils.ccompiler import CCompiler, gen_preprocess_options, \
299 class MSVCCompiler(CCompiler) :
330 CCompiler.__init__ (self, verbose, dry_run, force)
599 if target_desc == CCompiler.EXECUTABLE:
685 if target_desc == CCompiler.EXECUTABLE:
Dmsvccompiler.py16 CCompiler, gen_preprocess_options, gen_lib_options
200 class MSVCCompiler(CCompiler) :
231 CCompiler.__init__ (self, verbose, dry_run, force)
486 if target_desc == CCompiler.EXECUTABLE:
Dccompiler.py15 class CCompiler: class
692 self.link(CCompiler.SHARED_LIBRARY, objects,
713 self.link(CCompiler.SHARED_OBJECT, objects,
731 self.link(CCompiler.EXECUTABLE, objects,
/external/python/cpython2/Lib/distutils/tests/
Dtest_ccompiler.py6 from distutils.ccompiler import (gen_lib_options, CCompiler,
28 class MyCCompiler(CCompiler):
64 class MyCCompiler(CCompiler):
/external/grpc-grpc/src/python/grpcio/
D_spawn_patch.py30 _classic_spawn = ccompiler.CCompiler.spawn
60 ccompiler.CCompiler.spawn = _commandfile_spawn
/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/cpython3/Doc/distutils/
Dapiref.rst300 :mod:`distutils.ccompiler` --- CCompiler base class
304 :synopsis: Abstract CCompiler class
307 This module provides the abstract base class for the :class:`CCompiler`
308 classes. A :class:`CCompiler` instance can be used for all the compile and
351 Factory function to generate an instance of some CCompiler subclass for the
371 .. class:: CCompiler([verbose=0, dry_run=0, force=0])
373 The abstract base class :class:`CCompiler` defines the interface that must be
389 instantiate :class:`CCompiler` or one of its subclasses directly - use the
390 :func:`distutils.CCompiler.new_compiler` factory function instead.
396 .. method:: CCompiler.add_include_dir(dir)
[all …]
/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/syzkaller/tools/syz-env/
Denv.go37 {"CC", target.CCompiler},
/external/python/cpython2/Lib/distutils/command/
Dconfig.py99 from distutils.ccompiler import CCompiler, new_compiler
100 if not isinstance(self.compiler, CCompiler):
/external/python/cpython3/Lib/distutils/command/
Dconfig.py95 from distutils.ccompiler import CCompiler, new_compiler
96 if not isinstance(self.compiler, CCompiler):
/external/syzkaller/pkg/csource/
Dbuild.go30 compiler := sysTarget.CCompiler
/external/python/cpython2/Misc/NEWS.d/
D2.7.15rc1.rst543 Fix CCompiler.set_executable() of distutils to handle properly Unicode