Lines Matching refs:target_compiler

168   char *target_compiler;  in find_target_compiler()  local
177 target_compiler = XDUPVEC (char, name, strlen (name) + 1); in find_target_compiler()
182 target_compiler = concat (gcc_path, "/", name, NULL); in find_target_compiler()
183 if (access_check (target_compiler, X_OK) == 0) in find_target_compiler()
193 target_compiler = XRESIZEVEC (char, target_compiler, len); in find_target_compiler()
194 sprintf (target_compiler, "%s/%s", paths[i], name); in find_target_compiler()
195 if (access_check (target_compiler, X_OK) == 0) in find_target_compiler()
204 return found ? target_compiler : NULL; in find_target_compiler()
246 generate_target_descr_file (const char *target_compiler) in generate_target_descr_file() argument
291 obstack_ptr_grow (&argv_obstack, target_compiler); in generate_target_descr_file()
310 generate_target_offloadend_file (const char *target_compiler) in generate_target_offloadend_file() argument
333 obstack_ptr_grow (&argv_obstack, target_compiler); in generate_target_offloadend_file()
432 prepare_target_image (const char *target_compiler, int argc, char **argv) in prepare_target_image() argument
435 = generate_target_descr_file (target_compiler); in prepare_target_image()
437 = generate_target_offloadend_file (target_compiler); in prepare_target_image()
450 obstack_ptr_grow (&argv_obstack, target_compiler); in prepare_target_image()
564 char *target_compiler = find_target_compiler (target_driver_name); in main() local
565 if (target_compiler == NULL) in main()
595 = prepare_target_image (target_compiler, argc, argv); in main()