Searched refs:toolfile (Results 1 – 2 of 2) sorted by relevance
/external/valgrind/coregrind/ |
D | launcher-darwin.c | 214 char *toolfile; in main() local 414 asprintf(&toolfile, "%s/%s-%s-darwin", valgrind_lib, toolname, arch); in main() 415 if (access(toolfile, R_OK|X_OK) != 0) { in main() 416 barf("tool '%s' not installed (%s) (%s)", toolname, toolfile, strerror(errno)); in main() 419 VG_(debugLog)(1, "launcher", "launching %s\n", toolfile); in main() 421 execve(toolfile, new_argv, new_env); in main()
|
D | launcher-linux.c | 322 char *toolfile; in main() local 472 toolfile = malloc(strlen(valgrind_lib) + strlen(toolname) + strlen(platform) + 3); in main() 473 if (toolfile == NULL) in main() 475 sprintf(toolfile, "%s/%s-%s", valgrind_lib, toolname, platform); in main() 477 VG_(debugLog)(1, "launcher", "launching %s\n", toolfile); in main() 479 execve(toolfile, argv, new_env); in main()
|