/external/syzkaller/sys/targets/ |
D | targets.go | 27 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++"), 231 …CCompiler: 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.py | 24 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 …]
|
D | bcppcompiler.py | 20 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:
|
D | unixccompiler.py | 21 CCompiler, gen_preprocess_options, gen_lib_options 45 class UnixCCompiler(CCompiler): 176 if target_desc == CCompiler.EXECUTABLE:
|
D | msvc9compiler.py | 22 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:
|
D | msvccompiler.py | 16 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:
|
D | ccompiler.py | 15 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/ |
D | test_ccompiler.py | 6 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.py | 30 _classic_spawn = ccompiler.CCompiler.spawn 60 ccompiler.CCompiler.spawn = _commandfile_spawn
|
/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/cpython3/Doc/distutils/ |
D | apiref.rst | 300 :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/ |
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/syzkaller/tools/syz-env/ |
D | env.go | 37 {"CC", target.CCompiler},
|
/external/python/cpython2/Lib/distutils/command/ |
D | config.py | 99 from distutils.ccompiler import CCompiler, new_compiler 100 if not isinstance(self.compiler, CCompiler):
|
/external/python/cpython3/Lib/distutils/command/ |
D | config.py | 95 from distutils.ccompiler import CCompiler, new_compiler 96 if not isinstance(self.compiler, CCompiler):
|
/external/syzkaller/pkg/csource/ |
D | build.go | 30 compiler := sysTarget.CCompiler
|
/external/python/cpython2/Misc/NEWS.d/ |
D | 2.7.15rc1.rst | 543 Fix CCompiler.set_executable() of distutils to handle properly Unicode
|