Home
last modified time | relevance | path

Searched refs:compiler_path (Results 1 – 8 of 8) sorted by relevance

/external/llvm-project/lldb/packages/Python/lldbsuite/support/
Dgmodules.py13 def is_compiler_clang_with_gmodules(compiler_path): argument
15 if compiler_path in GMODULES_SUPPORT_MAP:
16 return GMODULES_SUPPORT_MAP[compiler_path]
19 compiler = os.path.basename(compiler_path)
24 clang_help = os.popen("%s --help" % compiler_path).read()
28 GMODULES_SUPPORT_MAP[compiler_path] = _gmodules_supported_internal()
29 return GMODULES_SUPPORT_MAP[compiler_path]
/external/catch2/scripts/
DbenchmarkCompile.py19 compiler_path = '' variable
57 subprocess.check_call([compiler_path, main_name, '-c'] + flags)
64 subprocess.check_call([compiler_path, '-c'] + flags + cpp_files)
71 subprocess.check_call([compiler_path] + flags + obj_files)
124 compiler_path = args.compiler variable
/external/llvm-project/lldb/packages/Python/lldbsuite/test/
Ddecorators.py690 compiler_path = self.getCompiler()
704 compiler_path = self.getCompiler()
705 compiler = os.path.basename(compiler_path)
711 "%s -g -glldb -O1 -S -emit-llvm -x c -o %s -" % (compiler_path, f.name)
731 compiler_path = self.getCompiler()
732 compiler = os.path.basename(compiler_path)
741 cmd = "echo 'int main() {}' | %s -x c -o %s -" % (compiler_path, f.name)
744 cmd = "echo 'int main() {}' | %s -fsanitize=thread -x c -o %s -" % (compiler_path, f.name)
815 compiler_path = self.getCompiler()
816 compiler = os.path.basename(compiler_path)
[all …]
Dtest_categories.py57 def is_supported_on_platform(category, platform, compiler_path): argument
67 return gmodules.is_compiler_clang_with_gmodules(compiler_path)
/external/compiler-rt/test/
Dlit.common.cfg21 compiler_path = getattr(config, 'clang', None)
22 if (not compiler_path) or (not os.path.exists(compiler_path)):
23 lit_config.fatal("Can't find compiler on path %r" % compiler_path)
/external/selinux/libsemanage/include/semanage/
Dhandle.h72 …rn int semanage_get_hll_compiler_path(semanage_handle_t *sh, char *lang_ext, char **compiler_path);
/external/selinux/libsemanage/src/
Dhandle.c139 char **compiler_path) in semanage_get_hll_compiler_path() argument
178 *compiler_path = compiler; in semanage_get_hll_compiler_path()
Ddirect_api.c1044 char *compiler_path = NULL; in semanage_compile_module() local
1061 status = semanage_get_hll_compiler_path(sh, modinfo->lang_ext, &compiler_path); in semanage_compile_module()
1092 …status = semanage_pipe_data(sh, compiler_path, hll_data, (size_t)hll_data_len, &cil_data, &cil_dat… in semanage_compile_module()
1138 free(compiler_path); in semanage_compile_module()