]> git.ozlabs.org Git - ccan/blob - tools/configurator/configurator.c
configurator: check for valgrind/memcheck.h
[ccan] / tools / configurator / configurator.c
1 /* Simple tool to create config.h.
2  * Would be much easier with ccan modules, but deliberately standalone.
3  *
4  * Copyright 2011 Rusty Russell <rusty@rustcorp.com.au>.  MIT license.
5  *
6  * Permission is hereby granted, free of charge, to any person obtaining a copy
7  * of this software and associated documentation files (the "Software"), to deal
8  * in the Software without restriction, including without limitation the rights
9  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10  * copies of the Software, and to permit persons to whom the Software is
11  * furnished to do so, subject to the following conditions:
12  *
13  * The above copyright notice and this permission notice shall be included in
14  * all copies or substantial portions of the Software.
15  *
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22  * THE SOFTWARE.
23  */
24 #include <stdio.h>
25 #include <stdbool.h>
26 #include <stdlib.h>
27 #include <unistd.h>
28 #include <err.h>
29 #include <sys/types.h>
30 #include <sys/wait.h>
31 #include <sys/stat.h>
32 #include <fcntl.h>
33 #include <string.h>
34
35 #define DEFAULT_COMPILER "cc"
36 #define DEFAULT_FLAGS "-g3 -ggdb -Wall -Wundef -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wold-style-definition"
37
38 #define OUTPUT_FILE "configurator.out"
39 #define INPUT_FILE "configuratortest.c"
40
41 static int verbose;
42
43 enum test_style {
44         OUTSIDE_MAIN            = 0x1,
45         DEFINES_FUNC            = 0x2,
46         INSIDE_MAIN             = 0x4,
47         DEFINES_EVERYTHING      = 0x8,
48         MAY_NOT_COMPILE         = 0x10,
49         EXECUTE                 = 0x8000
50 };
51
52 struct test {
53         const char *name;
54         enum test_style style;
55         const char *depends;
56         const char *link;
57         const char *fragment;
58         const char *flags;
59         const char *overrides; /* On success, force this to '1' */
60         bool done;
61         bool answer;
62 };
63
64 static struct test tests[] = {
65         { "HAVE_32BIT_OFF_T", DEFINES_EVERYTHING|EXECUTE, NULL, NULL,
66           "#include <sys/types.h>\n"
67           "int main(void) {\n"
68           "     return sizeof(off_t) == 4 ? 0 : 1;\n"
69           "}\n" },
70         { "HAVE_ALIGNOF", INSIDE_MAIN, NULL, NULL,
71           "return __alignof__(double) > 0 ? 0 : 1;" },
72         { "HAVE_ASPRINTF", DEFINES_FUNC, NULL, NULL,
73           "#ifndef _GNU_SOURCE\n"
74           "#define _GNU_SOURCE\n"
75           "#endif\n"
76           "#include <stdio.h>\n"
77           "static char *func(int x) {"
78           "     char *p;\n"
79           "     if (asprintf(&p, \"%u\", x) == -1) p = NULL;"
80           "     return p;\n"
81           "}" },
82         { "HAVE_ATTRIBUTE_COLD", DEFINES_FUNC, NULL, NULL,
83           "static int __attribute__((cold)) func(int x) { return x; }" },
84         { "HAVE_ATTRIBUTE_CONST", DEFINES_FUNC, NULL, NULL,
85           "static int __attribute__((const)) func(int x) { return x; }" },
86         { "HAVE_ATTRIBUTE_PURE", DEFINES_FUNC, NULL, NULL,
87           "static int __attribute__((pure)) func(int x) { return x; }" },
88         { "HAVE_ATTRIBUTE_MAY_ALIAS", OUTSIDE_MAIN, NULL, NULL,
89           "typedef short __attribute__((__may_alias__)) short_a;" },
90         { "HAVE_ATTRIBUTE_NORETURN", DEFINES_FUNC, NULL, NULL,
91           "#include <stdlib.h>\n"
92           "static void __attribute__((noreturn)) func(int x) { exit(x); }" },
93         { "HAVE_ATTRIBUTE_PRINTF", DEFINES_FUNC, NULL, NULL,
94           "static void __attribute__((format(__printf__, 1, 2))) func(const char *fmt, ...) { (void)fmt; }" },
95         { "HAVE_ATTRIBUTE_UNUSED", OUTSIDE_MAIN, NULL, NULL,
96           "static int __attribute__((unused)) func(int x) { return x; }" },
97         { "HAVE_ATTRIBUTE_USED", OUTSIDE_MAIN, NULL, NULL,
98           "static int __attribute__((used)) func(int x) { return x; }" },
99         { "HAVE_BACKTRACE", DEFINES_FUNC, NULL, NULL,
100           "#include <execinfo.h>\n"
101           "static int func(int x) {"
102           "     void *bt[10];\n"
103           "     return backtrace(bt, 10) < x;\n"
104           "}" },
105         { "HAVE_BIG_ENDIAN", INSIDE_MAIN|EXECUTE, NULL, NULL,
106           "union { int i; char c[sizeof(int)]; } u;\n"
107           "u.i = 0x01020304;\n"
108           "return u.c[0] == 0x01 && u.c[1] == 0x02 && u.c[2] == 0x03 && u.c[3] == 0x04 ? 0 : 1;" },
109         { "HAVE_BSWAP_64", DEFINES_FUNC, "HAVE_BYTESWAP_H", NULL,
110           "#include <byteswap.h>\n"
111           "static int func(int x) { return bswap_64(x); }" },
112         { "HAVE_BUILTIN_CHOOSE_EXPR", INSIDE_MAIN, NULL, NULL,
113           "return __builtin_choose_expr(1, 0, \"garbage\");" },
114         { "HAVE_BUILTIN_CLZ", INSIDE_MAIN, NULL, NULL,
115           "return __builtin_clz(1) == (sizeof(int)*8 - 1) ? 0 : 1;" },
116         { "HAVE_BUILTIN_CLZL", INSIDE_MAIN, NULL, NULL,
117           "return __builtin_clzl(1) == (sizeof(long)*8 - 1) ? 0 : 1;" },
118         { "HAVE_BUILTIN_CLZLL", INSIDE_MAIN, NULL, NULL,
119           "return __builtin_clzll(1) == (sizeof(long long)*8 - 1) ? 0 : 1;" },
120         { "HAVE_BUILTIN_CTZ", INSIDE_MAIN, NULL, NULL,
121           "return __builtin_ctz(1 << (sizeof(int)*8 - 1)) == (sizeof(int)*8 - 1) ? 0 : 1;" },
122         { "HAVE_BUILTIN_CTZL", INSIDE_MAIN, NULL, NULL,
123           "return __builtin_ctzl(1UL << (sizeof(long)*8 - 1)) == (sizeof(long)*8 - 1) ? 0 : 1;" },
124         { "HAVE_BUILTIN_CTZLL", INSIDE_MAIN, NULL, NULL,
125           "return __builtin_ctzll(1ULL << (sizeof(long long)*8 - 1)) == (sizeof(long long)*8 - 1) ? 0 : 1;" },
126         { "HAVE_BUILTIN_CONSTANT_P", INSIDE_MAIN, NULL, NULL,
127           "return __builtin_constant_p(1) ? 0 : 1;" },
128         { "HAVE_BUILTIN_EXPECT", INSIDE_MAIN, NULL, NULL,
129           "return __builtin_expect(argc == 1, 1) ? 0 : 1;" },
130         { "HAVE_BUILTIN_FFS", INSIDE_MAIN, NULL, NULL,
131           "return __builtin_ffs(0) == 0 ? 0 : 1;" },
132         { "HAVE_BUILTIN_FFSL", INSIDE_MAIN, NULL, NULL,
133           "return __builtin_ffsl(0L) == 0 ? 0 : 1;" },
134         { "HAVE_BUILTIN_FFSLL", INSIDE_MAIN, NULL, NULL,
135           "return __builtin_ffsll(0LL) == 0 ? 0 : 1;" },
136         { "HAVE_BUILTIN_POPCOUNTL", INSIDE_MAIN, NULL, NULL,
137           "return __builtin_popcountl(255L) == 8 ? 0 : 1;" },
138         { "HAVE_BUILTIN_TYPES_COMPATIBLE_P", INSIDE_MAIN, NULL, NULL,
139           "return __builtin_types_compatible_p(char *, int) ? 1 : 0;" },
140         { "HAVE_ICCARM_INTRINSICS", DEFINES_FUNC, NULL, NULL,
141           "#include <intrinsics.h>\n"
142           "int func(int v) {\n"
143           "     return __CLZ(__RBIT(v));\n"
144           "}" },
145         { "HAVE_BYTESWAP_H", OUTSIDE_MAIN, NULL, NULL,
146           "#include <byteswap.h>\n" },
147         { "HAVE_CLOCK_GETTIME",
148           DEFINES_FUNC, "HAVE_STRUCT_TIMESPEC", NULL,
149           "#include <time.h>\n"
150           "static struct timespec func(void) {\n"
151           "     struct timespec ts;\n"
152           "     clock_gettime(CLOCK_REALTIME, &ts);\n"
153           "     return ts;\n"
154           "}\n" },
155         { "HAVE_CLOCK_GETTIME_IN_LIBRT",
156           DEFINES_FUNC,
157           "HAVE_STRUCT_TIMESPEC !HAVE_CLOCK_GETTIME",
158           "-lrt",
159           "#include <time.h>\n"
160           "static struct timespec func(void) {\n"
161           "     struct timespec ts;\n"
162           "     clock_gettime(CLOCK_REALTIME, &ts);\n"
163           "     return ts;\n"
164           "}\n",
165           /* This means HAVE_CLOCK_GETTIME, too */
166           "HAVE_CLOCK_GETTIME" },
167         { "HAVE_COMPOUND_LITERALS", INSIDE_MAIN, NULL, NULL,
168           "int *foo = (int[]) { 1, 2, 3, 4 };\n"
169           "return foo[0] ? 0 : 1;" },
170         { "HAVE_FCHDIR", DEFINES_EVERYTHING|EXECUTE, NULL, NULL,
171           "#include <sys/types.h>\n"
172           "#include <sys/stat.h>\n"
173           "#include <fcntl.h>\n"
174           "#include <unistd.h>\n"
175           "int main(void) {\n"
176           "     int fd = open(\"..\", O_RDONLY);\n"
177           "     return fchdir(fd) == 0 ? 0 : 1;\n"
178           "}\n" },
179         { "HAVE_ERR_H", DEFINES_FUNC, NULL, NULL,
180           "#include <err.h>\n"
181           "static void func(int arg) {\n"
182           "     if (arg == 0)\n"
183           "             err(1, \"err %u\", arg);\n"
184           "     if (arg == 1)\n"
185           "             errx(1, \"err %u\", arg);\n"
186           "     if (arg == 3)\n"
187           "             warn(\"warn %u\", arg);\n"
188           "     if (arg == 4)\n"
189           "             warnx(\"warn %u\", arg);\n"
190           "}\n" },
191         { "HAVE_FILE_OFFSET_BITS", DEFINES_EVERYTHING|EXECUTE,
192           "HAVE_32BIT_OFF_T", NULL,
193           "#define _FILE_OFFSET_BITS 64\n"
194           "#include <sys/types.h>\n"
195           "int main(void) {\n"
196           "     return sizeof(off_t) == 8 ? 0 : 1;\n"
197           "}\n" },
198         { "HAVE_FOR_LOOP_DECLARATION", INSIDE_MAIN, NULL, NULL,
199           "for (int i = 0; i < argc; i++) { return 0; };\n"
200           "return 1;" },
201         { "HAVE_FLEXIBLE_ARRAY_MEMBER", OUTSIDE_MAIN, NULL, NULL,
202           "struct foo { unsigned int x; int arr[]; };" },
203         { "HAVE_GETPAGESIZE", DEFINES_FUNC, NULL, NULL,
204           "#include <unistd.h>\n"
205           "static int func(void) { return getpagesize(); }" },
206         { "HAVE_ISBLANK", DEFINES_FUNC, NULL, NULL,
207           "#ifndef _GNU_SOURCE\n"
208           "#define _GNU_SOURCE\n"
209           "#endif\n"
210           "#include <ctype.h>\n"
211           "static int func(void) { return isblank(' '); }" },
212         { "HAVE_LITTLE_ENDIAN", INSIDE_MAIN|EXECUTE, NULL, NULL,
213           "union { int i; char c[sizeof(int)]; } u;\n"
214           "u.i = 0x01020304;\n"
215           "return u.c[0] == 0x04 && u.c[1] == 0x03 && u.c[2] == 0x02 && u.c[3] == 0x01 ? 0 : 1;" },
216         { "HAVE_MEMMEM", DEFINES_FUNC, NULL, NULL,
217           "#ifndef _GNU_SOURCE\n"
218           "#define _GNU_SOURCE\n"
219           "#endif\n"
220           "#include <string.h>\n"
221           "static void *func(void *h, size_t hl, void *n, size_t nl) {\n"
222           "return memmem(h, hl, n, nl);"
223           "}\n", },
224         { "HAVE_MEMRCHR", DEFINES_FUNC, NULL, NULL,
225           "#ifndef _GNU_SOURCE\n"
226           "#define _GNU_SOURCE\n"
227           "#endif\n"
228           "#include <string.h>\n"
229           "static void *func(void *s, int c, size_t n) {\n"
230           "return memrchr(s, c, n);"
231           "}\n", },
232         { "HAVE_MMAP", DEFINES_FUNC, NULL, NULL,
233           "#include <sys/mman.h>\n"
234           "static void *func(int fd) {\n"
235           "     return mmap(0, 65536, PROT_READ, MAP_SHARED, fd, 0);\n"
236           "}" },
237         { "HAVE_PROC_SELF_MAPS", DEFINES_EVERYTHING|EXECUTE, NULL, NULL,
238           "#include <sys/types.h>\n"
239           "#include <sys/stat.h>\n"
240           "#include <fcntl.h>\n"
241           "int main(void) {\n"
242           "     return open(\"/proc/self/maps\", O_RDONLY) != -1 ? 0 : 1;\n"
243           "}\n" },
244         { "HAVE_QSORT_R_PRIVATE_LAST",
245           DEFINES_EVERYTHING|EXECUTE|MAY_NOT_COMPILE, NULL, NULL,
246           "#ifndef _GNU_SOURCE\n"
247           "#define _GNU_SOURCE\n"
248           "#endif\n"
249           "#include <stdlib.h>\n"
250           "static int cmp(const void *lp, const void *rp, void *priv) {\n"
251           " *(unsigned int *)priv = 1;\n"
252           " return *(const int *)lp - *(const int *)rp; }\n"
253           "int main(void) {\n"
254           " int array[] = { 9, 2, 5 };\n"
255           " unsigned int called = 0;\n"
256           " qsort_r(array, 3, sizeof(int), cmp, &called);\n"
257           " return called && array[0] == 2 && array[1] == 5 && array[2] == 9 ? 0 : 1;\n"
258           "}\n" },
259         { "HAVE_STRUCT_TIMESPEC",
260           DEFINES_FUNC, NULL, NULL,
261           "#include <time.h>\n"
262           "static void func(void) {\n"
263           "     struct timespec ts;\n"
264           "     ts.tv_sec = ts.tv_nsec = 1;\n"
265           "}\n" },
266         { "HAVE_SECTION_START_STOP",
267           DEFINES_FUNC, NULL, NULL,
268           "static void *__attribute__((__section__(\"mysec\"))) p = &p;\n"
269           "static int func(void) {\n"
270           "     extern void *__start_mysec[], *__stop_mysec[];\n"
271           "     return __stop_mysec - __start_mysec;\n"
272           "}\n" },
273         { "HAVE_STACK_GROWS_UPWARDS", DEFINES_EVERYTHING|EXECUTE, NULL, NULL,
274           "static long nest(const void *base, unsigned int i)\n"
275           "{\n"
276           "     if (i == 0)\n"
277           "             return (const char *)&i - (const char *)base;\n"
278           "     return nest(base, i-1);\n"
279           "}\n"
280           "int main(int argc, char *argv[]) {\n"
281           "     (void)argv;\n"
282           "     return (nest(&argc, argc) > 0) ? 0 : 1;\n"
283           "}\n" },
284         { "HAVE_STATEMENT_EXPR", INSIDE_MAIN, NULL, NULL,
285           "return ({ int x = argc; x == argc ? 0 : 1; });" },
286         { "HAVE_SYS_FILIO_H", OUTSIDE_MAIN, NULL, NULL, /* Solaris needs this for FIONREAD */
287           "#include <sys/filio.h>\n" },
288         { "HAVE_SYS_TERMIOS_H", OUTSIDE_MAIN, NULL, NULL,
289           "#include <sys/termios.h>\n" },
290         { "HAVE_TYPEOF", INSIDE_MAIN, NULL, NULL,
291           "__typeof__(argc) i; i = argc; return i == argc ? 0 : 1;" },
292         { "HAVE_UNALIGNED_ACCESS", DEFINES_EVERYTHING|EXECUTE, NULL, NULL,
293           "#include <string.h>\n"
294           "int main(int argc, char *argv[]) {\n"
295           "     (void)argc;\n"
296           "     char pad[sizeof(int *) * 1];\n"
297           "     strncpy(pad, argv[0], sizeof(pad));\n"
298           "     int *x = (int *)pad, *y = (int *)(pad + 1);\n"
299           "     return *x == *y;\n"
300           "}\n" },
301         { "HAVE_UTIME", DEFINES_FUNC, NULL, NULL,
302           "#include <sys/types.h>\n"
303           "#include <utime.h>\n"
304           "static int func(const char *filename) {\n"
305           "     struct utimbuf times = { 0 };\n"
306           "     return utime(filename, &times);\n"
307           "}" },
308         { "HAVE_WARN_UNUSED_RESULT", DEFINES_FUNC, NULL, NULL,
309           "#include <sys/types.h>\n"
310           "#include <utime.h>\n"
311           "static __attribute__((warn_unused_result)) int func(int i) {\n"
312           "     return i + 1;\n"
313           "}" },
314         { "HAVE_OPENMP", INSIDE_MAIN, NULL, NULL,
315           "int i;\n"
316           "#pragma omp parallel for\n"
317           "for(i = 0; i < 0; i++) {};\n"
318           "return 0;\n",
319           "-Werror -fopenmp" },
320         { "HAVE_VALGRIND_MEMCHECK_H", OUTSIDE_MAIN, NULL, NULL,
321           "#include <valgrind/memcheck.h>\n" },
322 };
323
324 static char *grab_fd(int fd)
325 {
326         int ret;
327         size_t max, size = 0;
328         char *buffer;
329
330         max = 16384;
331         buffer = malloc(max+1);
332         while ((ret = read(fd, buffer + size, max - size)) > 0) {
333                 size += ret;
334                 if (size == max)
335                         buffer = realloc(buffer, max *= 2);
336         }
337         if (ret < 0)
338                 err(1, "reading from command");
339         buffer[size] = '\0';
340         return buffer;
341 }
342
343 static char *run(const char *cmd, int *exitstatus)
344 {
345         pid_t pid;
346         int p[2];
347         char *ret;
348         int status;
349
350         if (pipe(p) != 0)
351                 err(1, "creating pipe");
352
353         pid = fork();
354         if (pid == -1)
355                 err(1, "forking");
356
357         if (pid == 0) {
358                 if (dup2(p[1], STDOUT_FILENO) != STDOUT_FILENO
359                     || dup2(p[1], STDERR_FILENO) != STDERR_FILENO
360                     || close(p[0]) != 0
361                     || close(STDIN_FILENO) != 0
362                     || open("/dev/null", O_RDONLY) != STDIN_FILENO)
363                         exit(128);
364
365                 status = system(cmd);
366                 if (WIFEXITED(status))
367                         exit(WEXITSTATUS(status));
368                 /* Here's a hint... */
369                 exit(128 + WTERMSIG(status));
370         }
371
372         close(p[1]);
373         ret = grab_fd(p[0]);
374         /* This shouldn't fail... */
375         if (waitpid(pid, &status, 0) != pid)
376                 err(1, "Failed to wait for child");
377         close(p[0]);
378         if (WIFEXITED(status))
379                 *exitstatus = WEXITSTATUS(status);
380         else
381                 *exitstatus = -WTERMSIG(status);
382         return ret;
383 }
384
385 static char *connect_args(const char *argv[], const char *extra)
386 {
387         unsigned int i, len = strlen(extra) + 1;
388         char *ret;
389
390         for (i = 1; argv[i]; i++)
391                 len += 1 + strlen(argv[i]);
392
393         ret = malloc(len);
394         len = 0;
395         for (i = 1; argv[i]; i++) {
396                 strcpy(ret + len, argv[i]);
397                 len += strlen(argv[i]);
398                 if (argv[i+1])
399                         ret[len++] = ' ';
400         }
401         strcpy(ret + len, extra);
402         return ret;
403 }
404
405 static struct test *find_test(const char *name)
406 {
407         unsigned int i;
408
409         for (i = 0; i < sizeof(tests)/sizeof(tests[0]); i++) {
410                 if (strcmp(tests[i].name, name) == 0)
411                         return &tests[i];
412         }
413         abort();
414 }
415
416 #define PRE_BOILERPLATE "/* Test program generated by configurator. */\n"
417 #define MAIN_START_BOILERPLATE \
418         "int main(int argc, char *argv[]) {\n" \
419         "       (void)argc;\n" \
420         "       (void)argv;\n"
421 #define USE_FUNC_BOILERPLATE "(void)func;\n"
422 #define MAIN_BODY_BOILERPLATE "return 0;\n"
423 #define MAIN_END_BOILERPLATE "}\n"
424
425 static bool run_test(const char *cmd, struct test *test)
426 {
427         char *output, *newcmd;
428         FILE *outf;
429         int status;
430
431         if (test->done)
432                 return test->answer;
433
434         if (test->depends) {
435                 size_t len;
436                 const char *deps = test->depends;
437                 char *dep;
438
439                 /* Space-separated dependencies, could be ! for inverse. */
440                 while ((len = strcspn(deps, " "))) {
441                         bool positive = true;
442                         if (deps[len]) {
443                                 dep = strdup(deps);
444                                 dep[len] = '\0';
445                         } else {
446                                 dep = (char *)deps;
447                         }
448
449                         if (dep[0] == '!') {
450                                 dep++;
451                                 positive = false;
452                         }
453                         if (run_test(cmd, find_test(dep)) != positive) {
454                                 test->answer = false;
455                                 test->done = true;
456                                 return test->answer;
457                         }
458                         if (deps[len])
459                                 free(dep);
460
461                         deps += len;
462                         deps += strspn(deps, " ");
463                 }
464         }
465
466         outf = fopen(INPUT_FILE, "w");
467         if (!outf)
468                 err(1, "creating %s", INPUT_FILE);
469
470         fprintf(outf, "%s", PRE_BOILERPLATE);
471         switch (test->style & ~(EXECUTE|MAY_NOT_COMPILE)) {
472         case INSIDE_MAIN:
473                 fprintf(outf, "%s", MAIN_START_BOILERPLATE);
474                 fprintf(outf, "%s", test->fragment);
475                 fprintf(outf, "%s", MAIN_END_BOILERPLATE);
476                 break;
477         case OUTSIDE_MAIN:
478                 fprintf(outf, "%s", test->fragment);
479                 fprintf(outf, "%s", MAIN_START_BOILERPLATE);
480                 fprintf(outf, "%s", MAIN_BODY_BOILERPLATE);
481                 fprintf(outf, "%s", MAIN_END_BOILERPLATE);
482                 break;
483         case DEFINES_FUNC:
484                 fprintf(outf, "%s", test->fragment);
485                 fprintf(outf, "%s", MAIN_START_BOILERPLATE);
486                 fprintf(outf, "%s", USE_FUNC_BOILERPLATE);
487                 fprintf(outf, "%s", MAIN_BODY_BOILERPLATE);
488                 fprintf(outf, "%s", MAIN_END_BOILERPLATE);
489                 break;
490         case DEFINES_EVERYTHING:
491                 fprintf(outf, "%s", test->fragment);
492                 break;
493         default:
494                 abort();
495
496         }
497         fclose(outf);
498
499         if (verbose > 1)
500                 if (system("cat " INPUT_FILE) == -1);
501
502         newcmd = strdup(cmd);
503
504         if (test->flags) {
505                 newcmd = realloc(newcmd, strlen(newcmd) + strlen(" ")
506                                 + strlen(test->flags) + 1);
507                 strcat(newcmd, " ");
508                 strcat(newcmd, test->flags);
509                 if (verbose > 1)
510                         printf("Extra flags line: %s", newcmd);
511         }
512
513         if (test->link) {
514                 newcmd = realloc(newcmd, strlen(newcmd) + strlen(" ")
515                                 + strlen(test->link) + 1);
516                 strcat(newcmd, " ");
517                 strcat(newcmd, test->link);
518                 if (verbose > 1)
519                         printf("Extra link line: %s", newcmd);
520         }
521
522         output = run(newcmd, &status);
523
524         free(newcmd);
525
526         if (status != 0 || strstr(output, "warning")) {
527                 if (verbose)
528                         printf("Compile %s for %s, status %i: %s\n",
529                                status ? "fail" : "warning",
530                                test->name, status, output);
531                 if ((test->style & EXECUTE) && !(test->style & MAY_NOT_COMPILE))
532                         errx(1, "Test for %s did not compile:\n%s",
533                              test->name, output);
534                 test->answer = false;
535                 free(output);
536         } else {
537                 /* Compile succeeded. */
538                 free(output);
539                 /* We run INSIDE_MAIN tests for sanity checking. */
540                 if ((test->style & EXECUTE) || (test->style & INSIDE_MAIN)) {
541                         output = run("./" OUTPUT_FILE, &status);
542                         if (!(test->style & EXECUTE) && status != 0)
543                                 errx(1, "Test for %s failed with %i:\n%s",
544                                      test->name, status, output);
545                         if (verbose && status)
546                                 printf("%s exited %i\n", test->name, status);
547                         free(output);
548                 }
549                 test->answer = (status == 0);
550         }
551         test->done = true;
552
553         if (test->answer && test->overrides) {
554                 struct test *override = find_test(test->overrides);
555                 override->done = true;
556                 override->answer = true;
557         }
558         return test->answer;
559 }
560
561 int main(int argc, const char *argv[])
562 {
563         char *cmd;
564         unsigned int i;
565         const char *default_args[]
566                 = { "", DEFAULT_COMPILER, DEFAULT_FLAGS, NULL };
567
568         if (argc > 1) {
569                 if (strcmp(argv[1], "--help") == 0) {
570                         printf("Usage: configurator [-v] [<compiler> <flags>...]\n"
571                                "  <compiler> <flags> will have \"-o <outfile> <infile.c>\" appended\n"
572                                "Default: %s %s\n",
573                                DEFAULT_COMPILER, DEFAULT_FLAGS);
574                         exit(0);
575                 }
576                 if (strcmp(argv[1], "-v") == 0) {
577                         argc--;
578                         argv++;
579                         verbose = 1;
580                 } else if (strcmp(argv[1], "-vv") == 0) {
581                         argc--;
582                         argv++;
583                         verbose = 2;
584                 }
585         }
586
587         if (argc == 1)
588                 argv = default_args;
589
590         cmd = connect_args(argv, " -o " OUTPUT_FILE " " INPUT_FILE);
591         for (i = 0; i < sizeof(tests)/sizeof(tests[0]); i++)
592                 run_test(cmd, &tests[i]);
593         free(cmd);
594
595         unlink(OUTPUT_FILE);
596         unlink(INPUT_FILE);
597
598         printf("/* Generated by CCAN configurator */\n"
599                "#ifndef CCAN_CONFIG_H\n"
600                "#define CCAN_CONFIG_H\n");
601         printf("#ifndef _GNU_SOURCE\n");
602         printf("#define _GNU_SOURCE /* Always use GNU extensions. */\n");
603         printf("#endif\n");
604         printf("#define CCAN_COMPILER \"%s\"\n", argv[1]);
605         cmd = connect_args(argv+1, "");
606         printf("#define CCAN_CFLAGS \"%s\"\n\n", cmd);
607         free(cmd);
608         /* This one implies "#include <ccan/..." works, eg. for tdb2.h */
609         printf("#define HAVE_CCAN 1\n");
610         for (i = 0; i < sizeof(tests)/sizeof(tests[0]); i++)
611                 printf("#define %s %u\n", tests[i].name, tests[i].answer);
612         printf("#endif /* CCAN_CONFIG_H */\n");
613         return 0;
614 }