Lines Matching full:executable
40 * versions of macOS require that the main executable of an app be Mach-O for full system
44 * 1) bash is seen as the responsible executable for Security & Privacy, and the user doesn't
47 * the subsequent spawn of the real executable under Rosetta rather than natively.
68 char *executable = NULL; in main() local
70 asprintf(&executable, "%s/X11.sh", executable_directory); in main()
71 if (access(executable, X_OK) == -1) { in main()
72 free(executable); in main()
73 asprintf(&executable, "%s/X11", executable_directory); in main()
75 assert(access(executable, X_OK) == 0); in main()
77 argv[0] = executable; in main()
84 assert(posix_spawn(&child_pid, executable, NULL, &attr, argv, envp) == 0); in main()