Searched refs:find_executable (Results 1 – 8 of 8) sorted by relevance
| /llvm-project-15.0.7/libcxx/utils/libcxx/sym_check/ |
| H A D | extract.py | 33 return distutils.spawn.find_executable('nm') 122 return distutils.spawn.find_executable('readelf') 197 return distutils.spawn.find_executable('dump')
|
| H A D | util.py | 63 _cppfilt_exe = distutils.spawn.find_executable('c++filt')
|
| /llvm-project-15.0.7/llvm/utils/ |
| H A D | llvm-compilers-check | 82 def find_executable(executable, path=None): function 127 parser.add_option("--cc", default=find_executable("cc"), 129 parser.add_option("--cxx", default=find_executable("c++"), 173 options.cc = find_executable(options.cc) 174 options.cxx = find_executable(options.cxx) 564 program = find_executable("make")
|
| H A D | update_cc_test_checks.py | 170 if not distutils.spawn.find_executable(args.clang): 186 if not distutils.spawn.find_executable(args.opt):
|
| /llvm-project-15.0.7/llvm/test/Bindings/Go/ |
| H A D | lit.local.cfg | 15 def find_executable(executable, path=None): 45 path = find_executable(args[0])
|
| /llvm-project-15.0.7/lldb/test/Shell/helper/ |
| H A D | build.py | 173 def find_executable(binary_name, search_paths): function 185 return ('msvc', find_executable('cl', tools_dir)) 187 return ('clang-cl', find_executable('clang-cl', tools_dir)) 189 return ('gcc', find_executable('g++', tools_dir)) 191 return ('clang', find_executable('clang++', tools_dir)) 304 linker_path = find_executable(name, [compiler_dir] + search_paths)
|
| /llvm-project-15.0.7/clang/utils/ |
| H A D | creduce-clang-crash.py | 21 from distutils.spawn import find_executable 46 cmd = find_executable(cmd_path) 51 cmd = find_executable(cmd_name, path=cmd_dir)
|
| /llvm-project-15.0.7/compiler-rt/lib/asan/scripts/ |
| H A D | asan_symbolize.py | 31 from distutils.spawn import find_executable 158 logging.debug('addr2line binary is %s' % find_executable(addr2line_tool))
|