Lines Matching +refs:clang +refs:format +refs:binary
28 static bool isYounger(char *source, char *binary);
98 bool lookforIn(char *lookfor, const char *format, pid_t child) {
101 sprintf(buffer, format, child);
328 strcat(path, DoClang ? "clang++" : "g++-4.2");
331 strcat(path, DoClang ? "clang" : "gcc-4.2");
391 strcat(path, DoClang ? "-clang" : "-gcc");
581 printf(" -fast don't recompile if binary younger than source\n");
583 printf(" -clang use the clang and clang++ compilers\n");
586 …printf(" <compilerpath> directory containing gcc-4.2 (or clang) that you wish to use to co…
651 else if (!strcmp(argv[1], "-clang")) {
778 static bool isYounger(char *source, char *binary) {
780 int retval = stat(binary, &statb);