Searched refs:c_compiler (Results 1 – 5 of 5) sorted by relevance
/external/llvm/utils/release/ |
D | test-release.sh | 359 echo "# Using C compiler: $c_compiler" 366 echo "#" env CC="$c_compiler" CXX="$cxx_compiler" \ 370 env CC="$c_compiler" CXX="$cxx_compiler" \ 375 echo "#" env CC="$c_compiler" CXX="$cxx_compiler" \ 381 env CC="$c_compiler" CXX="$cxx_compiler" \ 498 c_compiler="$CC" 537 c_compiler=$llvmCore_phase1_destdir/usr/local/bin/clang 547 c_compiler=$llvmCore_phase2_destdir/usr/local/bin/clang
|
/external/clang/tools/scan-build-py/libscanbuild/ |
D | compilation.py | 104 def classify_source(filename, c_compiler=True): argument 108 '.c': 'c' if c_compiler else 'c++', 109 '.i': 'c-cpp-output' if c_compiler else 'c++-cpp-output',
|
D | intercept.py | 122 c_compiler = args.cc if 'cc' in args else 'cc' 126 sys.platform) else build_libear(c_compiler, destination) 136 'INTERCEPT_BUILD_CC': c_compiler,
|
/external/python/cpython3/Lib/ctypes/ |
D | util.py | 109 c_compiler = shutil.which('gcc') 110 if not c_compiler: 111 c_compiler = shutil.which('cc') 112 if not c_compiler: 118 args = [c_compiler, '-Wl,-t', '-o', temp.name, '-l' + name]
|
/external/ComputeLibrary/ |
D | SConstruct | 243 c_compiler = os.environ.get('CC', default_c_compiler) 245 if env['os'] == 'android' and ( 'clang++' not in cpp_compiler or 'clang' not in c_compiler ): 389 env['CC'] = env['compiler_cache']+ " " + compiler_prefix + c_compiler
|