Lines Matching refs:compiler
2 // The LLVM Compiler Infrastructure
116 char *const compiler = "/usr/bin/cc";
122 FORK(execv(compiler, argv);)
129 char *const compiler = "/usr/bin/cc";
130 char *const argv[] = {compiler, "-c", file, 0};
136 FORK(execve(compiler, argv, envp);)
143 char *const compiler = "cc";
144 char *const argv[] = {compiler, "-c", file, 0};
149 FORK(execvp(compiler, argv);)
156 char *const compiler = "cc";
157 char *const argv[] = {compiler, "-c", file, 0};
162 FORK(execvP(compiler, _PATH_DEFPATH, argv);)
169 char *const compiler = "cc";
176 FORK(execvpe(compiler, argv, envp);)
183 char *const compiler = "/usr/bin/cc";
184 char *const argv[] = {compiler, "-c", file, 0};
190 FORK(exect(compiler, argv, envp);)
197 char *const compiler = "/usr/bin/cc";
202 FORK(execl(compiler, "cc", "-c", file, (char *)0);)
209 char *const compiler = "cc";
214 FORK(execlp(compiler, compiler, "-c", file, (char *)0);)
221 char *const compiler = "/usr/bin/cc";
227 FORK(execle(compiler, compiler, "-c", file, (char *)0, envp);)
234 char *const compiler = "cc";
235 char *const argv[] = {compiler, "-c", file, 0};
252 char *const compiler = "cc";
253 char *const argv[] = {compiler, "-c", file, 0};