]> git.ozlabs.org Git - ccan/blob - tools/configurator/configurator.c
3bf5e498d262acb5e50efe5c0fb188ec2cf51185
[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 *overrides; /* On success, force this to '1' */
59         bool done;
60         bool answer;
61 };
62
63 static struct test tests[] = {
64         { "HAVE_32BIT_OFF_T", DEFINES_EVERYTHING|EXECUTE, NULL, NULL,
65           "#include <sys/types.h>\n"
66           "int main(int argc, char *argv[]) {\n"
67           "     return sizeof(off_t) == 4 ? 0 : 1;\n"
68           "}\n" },
69         { "HAVE_ALIGNOF", INSIDE_MAIN, NULL, NULL,
70           "return __alignof__(double) > 0 ? 0 : 1;" },
71         { "HAVE_ASPRINTF", DEFINES_FUNC, NULL, NULL,
72           "#ifndef _GNU_SOURCE\n"
73           "#define _GNU_SOURCE\n"
74           "#endif\n"
75           "#include <stdio.h>\n"
76           "static char *func(int x) {"
77           "     char *p;\n"
78           "     if (asprintf(&p, \"%u\", x) == -1) p = NULL;"
79           "     return p;\n"
80           "}" },
81         { "HAVE_ATTRIBUTE_COLD", DEFINES_FUNC, NULL, NULL,
82           "static int __attribute__((cold)) func(int x) { return x; }" },
83         { "HAVE_ATTRIBUTE_CONST", DEFINES_FUNC, NULL, NULL,
84           "static int __attribute__((const)) func(int x) { return x; }" },
85         { "HAVE_ATTRIBUTE_PURE", DEFINES_FUNC, NULL, NULL,
86           "static int __attribute__((pure)) func(int x) { return x; }" },
87         { "HAVE_ATTRIBUTE_MAY_ALIAS", OUTSIDE_MAIN, NULL, NULL,
88           "typedef short __attribute__((__may_alias__)) short_a;" },
89         { "HAVE_ATTRIBUTE_NORETURN", DEFINES_FUNC, NULL, NULL,
90           "#include <stdlib.h>\n"
91           "static void __attribute__((noreturn)) func(int x) { exit(x); }" },
92         { "HAVE_ATTRIBUTE_PRINTF", DEFINES_FUNC, NULL, NULL,
93           "static void __attribute__((format(__printf__, 1, 2))) func(const char *fmt, ...) { }" },
94         { "HAVE_ATTRIBUTE_UNUSED", OUTSIDE_MAIN, NULL, NULL,
95           "static int __attribute__((unused)) func(int x) { return x; }" },
96         { "HAVE_ATTRIBUTE_USED", OUTSIDE_MAIN, NULL, NULL,
97           "static int __attribute__((used)) func(int x) { return x; }" },
98         { "HAVE_BACKTRACE", DEFINES_FUNC, NULL, NULL,
99           "#include <execinfo.h>\n"
100           "static int func(int x) {"
101           "     void *bt[10];\n"
102           "     return backtrace(bt, 10) < x;\n"
103           "}" },
104         { "HAVE_BIG_ENDIAN", INSIDE_MAIN|EXECUTE, NULL, NULL,
105           "union { int i; char c[sizeof(int)]; } u;\n"
106           "u.i = 0x01020304;\n"
107           "return u.c[0] == 0x01 && u.c[1] == 0x02 && u.c[2] == 0x03 && u.c[3] == 0x04 ? 0 : 1;" },
108         { "HAVE_BSWAP_64", DEFINES_FUNC, "HAVE_BYTESWAP_H", NULL,
109           "#include <byteswap.h>\n"
110           "static int func(int x) { return bswap_64(x); }" },
111         { "HAVE_BUILTIN_CHOOSE_EXPR", INSIDE_MAIN, NULL, NULL,
112           "return __builtin_choose_expr(1, 0, \"garbage\");" },
113         { "HAVE_BUILTIN_CLZ", INSIDE_MAIN, NULL, NULL,
114           "return __builtin_clz(1) == (sizeof(int)*8 - 1) ? 0 : 1;" },
115         { "HAVE_BUILTIN_CLZL", INSIDE_MAIN, NULL, NULL,
116           "return __builtin_clzl(1) == (sizeof(long)*8 - 1) ? 0 : 1;" },
117         { "HAVE_BUILTIN_CLZLL", INSIDE_MAIN, NULL, NULL,
118           "return __builtin_clzll(1) == (sizeof(long long)*8 - 1) ? 0 : 1;" },
119         { "HAVE_BUILTIN_CTZ", INSIDE_MAIN, NULL, NULL,
120           "return __builtin_ctz(1 << (sizeof(int)*8 - 1)) == (sizeof(int)*8 - 1) ? 0 : 1;" },
121         { "HAVE_BUILTIN_CTZL", INSIDE_MAIN, NULL, NULL,
122           "return __builtin_ctzl(1UL << (sizeof(long)*8 - 1)) == (sizeof(long)*8 - 1) ? 0 : 1;" },
123         { "HAVE_BUILTIN_CTZLL", INSIDE_MAIN, NULL, NULL,
124           "return __builtin_ctzll(1ULL << (sizeof(long long)*8 - 1)) == (sizeof(long long)*8 - 1) ? 0 : 1;" },
125         { "HAVE_BUILTIN_CONSTANT_P", INSIDE_MAIN, NULL, NULL,
126           "return __builtin_constant_p(1) ? 0 : 1;" },
127         { "HAVE_BUILTIN_EXPECT", INSIDE_MAIN, NULL, NULL,
128           "return __builtin_expect(argc == 1, 1) ? 0 : 1;" },
129         { "HAVE_BUILTIN_FFS", INSIDE_MAIN, NULL, NULL,
130           "return __builtin_ffs(0) == 0 ? 0 : 1;" },
131         { "HAVE_BUILTIN_FFSL", INSIDE_MAIN, NULL, NULL,
132           "return __builtin_ffsl(0L) == 0 ? 0 : 1;" },
133         { "HAVE_BUILTIN_FFSLL", INSIDE_MAIN, NULL, NULL,
134           "return __builtin_ffsll(0LL) == 0 ? 0 : 1;" },
135         { "HAVE_BUILTIN_POPCOUNTL", INSIDE_MAIN, NULL, NULL,
136           "return __builtin_popcountl(255L) == 8 ? 0 : 1;" },
137         { "HAVE_BUILTIN_TYPES_COMPATIBLE_P", INSIDE_MAIN, NULL, NULL,
138           "return __builtin_types_compatible_p(char *, int) ? 1 : 0;" },
139         { "HAVE_ICCARM_INTRINSICS", DEFINES_FUNC, NULL, NULL,
140           "#include <intrinsics.h>\n"
141           "int func(int v) {\n"
142           "     return __CLZ(__RBIT(v));\n"
143           "}" },
144         { "HAVE_BYTESWAP_H", OUTSIDE_MAIN, NULL, NULL,
145           "#include <byteswap.h>\n" },
146         { "HAVE_CLOCK_GETTIME",
147           DEFINES_FUNC, "HAVE_STRUCT_TIMESPEC", NULL,
148           "#include <time.h>\n"
149           "static struct timespec func(void) {\n"
150           "     struct timespec ts;\n"
151           "     clock_gettime(CLOCK_REALTIME, &ts);\n"
152           "     return ts;\n"
153           "}\n" },
154         { "HAVE_CLOCK_GETTIME_IN_LIBRT",
155           DEFINES_FUNC,
156           "HAVE_STRUCT_TIMESPEC !HAVE_CLOCK_GETTIME",
157           "-lrt",
158           "#include <time.h>\n"
159           "static struct timespec func(void) {\n"
160           "     struct timespec ts;\n"
161           "     clock_gettime(CLOCK_REALTIME, &ts);\n"
162           "     return ts;\n"
163           "}\n",
164           /* This means HAVE_CLOCK_GETTIME, too */
165           "HAVE_CLOCK_GETTIME" },
166         { "HAVE_COMPOUND_LITERALS", INSIDE_MAIN, NULL, NULL,
167           "int *foo = (int[]) { 1, 2, 3, 4 };\n"
168           "return foo[0] ? 0 : 1;" },
169         { "HAVE_FCHDIR", DEFINES_EVERYTHING|EXECUTE, NULL, NULL,
170           "#include <sys/types.h>\n"
171           "#include <sys/stat.h>\n"
172           "#include <fcntl.h>\n"
173           "#include <unistd.h>\n"
174           "int main(void) {\n"
175           "     int fd = open(\"..\", O_RDONLY);\n"
176           "     return fchdir(fd) == 0 ? 0 : 1;\n"
177           "}\n" },
178         { "HAVE_ERR_H", DEFINES_FUNC, NULL, NULL,
179           "#include <err.h>\n"
180           "static void func(int arg) {\n"
181           "     if (arg == 0)\n"
182           "             err(1, \"err %u\", arg);\n"
183           "     if (arg == 1)\n"
184           "             errx(1, \"err %u\", arg);\n"
185           "     if (arg == 3)\n"
186           "             warn(\"warn %u\", arg);\n"
187           "     if (arg == 4)\n"
188           "             warnx(\"warn %u\", arg);\n"
189           "}\n" },
190         { "HAVE_FILE_OFFSET_BITS", DEFINES_EVERYTHING|EXECUTE,
191           "HAVE_32BIT_OFF_T", NULL,
192           "#define _FILE_OFFSET_BITS 64\n"
193           "#include <sys/types.h>\n"
194           "int main(int argc, char *argv[]) {\n"
195           "     return sizeof(off_t) == 8 ? 0 : 1;\n"
196           "}\n" },
197         { "HAVE_FOR_LOOP_DECLARATION", INSIDE_MAIN, NULL, NULL,
198           "for (int i = 0; i < argc; i++) { return 0; };\n"
199           "return 1;" },
200         { "HAVE_FLEXIBLE_ARRAY_MEMBER", OUTSIDE_MAIN, NULL, NULL,
201           "struct foo { unsigned int x; int arr[]; };" },
202         { "HAVE_GETPAGESIZE", DEFINES_FUNC, NULL, NULL,
203           "#include <unistd.h>\n"
204           "static int func(void) { return getpagesize(); }" },
205         { "HAVE_ISBLANK", DEFINES_FUNC, NULL, NULL,
206           "#ifndef _GNU_SOURCE\n"
207           "#define _GNU_SOURCE\n"
208           "#endif\n"
209           "#include <ctype.h>\n"
210           "static int func(void) { return isblank(' '); }" },
211         { "HAVE_LITTLE_ENDIAN", INSIDE_MAIN|EXECUTE, NULL, NULL,
212           "union { int i; char c[sizeof(int)]; } u;\n"
213           "u.i = 0x01020304;\n"
214           "return u.c[0] == 0x04 && u.c[1] == 0x03 && u.c[2] == 0x02 && u.c[3] == 0x01 ? 0 : 1;" },
215         { "HAVE_MEMMEM", DEFINES_FUNC, NULL, NULL,
216           "#ifndef _GNU_SOURCE\n"
217           "#define _GNU_SOURCE\n"
218           "#endif\n"
219           "#include <string.h>\n"
220           "static void *func(void *h, size_t hl, void *n, size_t nl) {\n"
221           "return memmem(h, hl, n, nl);"
222           "}\n", },
223         { "HAVE_MEMRCHR", DEFINES_FUNC, NULL, NULL,
224           "#ifndef _GNU_SOURCE\n"
225           "#define _GNU_SOURCE\n"
226           "#endif\n"
227           "#include <string.h>\n"
228           "static void *func(void *s, int c, size_t n) {\n"
229           "return memrchr(s, c, n);"
230           "}\n", },
231         { "HAVE_MMAP", DEFINES_FUNC, NULL, NULL,
232           "#include <sys/mman.h>\n"
233           "static void *func(int fd) {\n"
234           "     return mmap(0, 65536, PROT_READ, MAP_SHARED, fd, 0);\n"
235           "}" },
236         { "HAVE_PROC_SELF_MAPS", DEFINES_EVERYTHING|EXECUTE, NULL, NULL,
237           "#include <sys/types.h>\n"
238           "#include <sys/stat.h>\n"
239           "#include <fcntl.h>\n"
240           "int main(void) {\n"
241           "     return open(\"/proc/self/maps\", O_RDONLY) != -1 ? 0 : 1;\n"
242           "}\n" },
243         { "HAVE_QSORT_R_PRIVATE_LAST",
244           DEFINES_EVERYTHING|EXECUTE|MAY_NOT_COMPILE, NULL, NULL,
245           "#ifndef _GNU_SOURCE\n"
246           "#define _GNU_SOURCE\n"
247           "#endif\n"
248           "#include <stdlib.h>\n"
249           "static int cmp(const void *lp, const void *rp, void *priv) {\n"
250           " *(unsigned int *)priv = 1;\n"
251           " return *(const int *)lp - *(const int *)rp; }\n"
252           "int main(void) {\n"
253           " int array[] = { 9, 2, 5 };\n"
254           " unsigned int called = 0;\n"
255           " qsort_r(array, 3, sizeof(int), cmp, &called);\n"
256           " return called && array[0] == 2 && array[1] == 5 && array[2] == 9 ? 0 : 1;\n"
257           "}\n" },
258         { "HAVE_STRUCT_TIMESPEC",
259           DEFINES_FUNC, NULL, NULL,
260           "#include <time.h>\n"
261           "static void func(void) {\n"
262           "     struct timespec ts;\n"
263           "     ts.tv_sec = ts.tv_nsec = 1;\n"
264           "}\n" },
265         { "HAVE_SECTION_START_STOP",
266           DEFINES_FUNC, NULL, NULL,
267           "static void *__attribute__((__section__(\"mysec\"))) p = &p;\n"
268           "static int func(void) {\n"
269           "     extern void *__start_mysec[], *__stop_mysec[];\n"
270           "     return __stop_mysec - __start_mysec;\n"
271           "}\n" },
272         { "HAVE_STACK_GROWS_UPWARDS", DEFINES_EVERYTHING|EXECUTE, NULL, NULL,
273           "static long nest(const void *base, unsigned int i)\n"
274           "{\n"
275           "     if (i == 0)\n"
276           "             return (const char *)&i - (const char *)base;\n"
277           "     return nest(base, i-1);\n"
278           "}\n"
279           "int main(int argc, char *argv[]) {\n"
280           "     return (nest(&argc, argc) > 0) ? 0 : 1\n;"
281           "}\n" },
282         { "HAVE_STATEMENT_EXPR", INSIDE_MAIN, NULL, NULL,
283           "return ({ int x = argc; x == argc ? 0 : 1; });" },
284         { "HAVE_SYS_FILIO_H", OUTSIDE_MAIN, NULL, NULL, /* Solaris needs this for FIONREAD */
285           "#include <sys/filio.h>\n" },
286         { "HAVE_SYS_TERMIOS_H", OUTSIDE_MAIN, NULL, NULL,
287           "#include <sys/termios.h>\n" },
288         { "HAVE_TYPEOF", INSIDE_MAIN, NULL, NULL,
289           "__typeof__(argc) i; i = argc; return i == argc ? 0 : 1;" },
290         { "HAVE_UNALIGNED_ACCESS", DEFINES_EVERYTHING|EXECUTE, NULL, NULL,
291           "#include <string.h>\n"
292           "int main(int argc, char *argv[]) {\n"
293           "     char pad[sizeof(int *) * 1];\n"
294           "     strncpy(pad, argv[0], sizeof(pad));\n"
295           "     int *x = (int *)pad, *y = (int *)(pad + 1);\n"
296           "     return *x == *y;\n"
297           "}\n" },
298         { "HAVE_UTIME", DEFINES_FUNC, NULL, NULL,
299           "#include <sys/types.h>\n"
300           "#include <utime.h>\n"
301           "static int func(const char *filename) {\n"
302           "     struct utimbuf times = { 0 };\n"
303           "     return utime(filename, &times);\n"
304           "}" },
305         { "HAVE_WARN_UNUSED_RESULT", DEFINES_FUNC, NULL, NULL,
306           "#include <sys/types.h>\n"
307           "#include <utime.h>\n"
308           "static __attribute__((warn_unused_result)) int func(int i) {\n"
309           "     return i + 1;\n"
310           "}" },
311 };
312
313 static char *grab_fd(int fd)
314 {
315         int ret;
316         size_t max, size = 0;
317         char *buffer;
318
319         max = 16384;
320         buffer = malloc(max+1);
321         while ((ret = read(fd, buffer + size, max - size)) > 0) {
322                 size += ret;
323                 if (size == max)
324                         buffer = realloc(buffer, max *= 2);
325         }
326         if (ret < 0)
327                 err(1, "reading from command");
328         buffer[size] = '\0';
329         return buffer;
330 }
331
332 static char *run(const char *cmd, int *exitstatus)
333 {
334         pid_t pid;
335         int p[2];
336         char *ret;
337         int status;
338
339         if (pipe(p) != 0)
340                 err(1, "creating pipe");
341
342         pid = fork();
343         if (pid == -1)
344                 err(1, "forking");
345
346         if (pid == 0) {
347                 if (dup2(p[1], STDOUT_FILENO) != STDOUT_FILENO
348                     || dup2(p[1], STDERR_FILENO) != STDERR_FILENO
349                     || close(p[0]) != 0
350                     || close(STDIN_FILENO) != 0
351                     || open("/dev/null", O_RDONLY) != STDIN_FILENO)
352                         exit(128);
353
354                 status = system(cmd);
355                 if (WIFEXITED(status))
356                         exit(WEXITSTATUS(status));
357                 /* Here's a hint... */
358                 exit(128 + WTERMSIG(status));
359         }
360
361         close(p[1]);
362         ret = grab_fd(p[0]);
363         /* This shouldn't fail... */
364         if (waitpid(pid, &status, 0) != pid)
365                 err(1, "Failed to wait for child");
366         close(p[0]);
367         if (WIFEXITED(status))
368                 *exitstatus = WEXITSTATUS(status);
369         else
370                 *exitstatus = -WTERMSIG(status);
371         return ret;
372 }
373
374 static char *connect_args(const char *argv[], const char *extra)
375 {
376         unsigned int i, len = strlen(extra) + 1;
377         char *ret;
378
379         for (i = 1; argv[i]; i++)
380                 len += 1 + strlen(argv[i]);
381
382         ret = malloc(len);
383         len = 0;
384         for (i = 1; argv[i]; i++) {
385                 strcpy(ret + len, argv[i]);
386                 len += strlen(argv[i]);
387                 if (argv[i+1])
388                         ret[len++] = ' ';
389         }
390         strcpy(ret + len, extra);
391         return ret;
392 }
393
394 static struct test *find_test(const char *name)
395 {
396         unsigned int i;
397
398         for (i = 0; i < sizeof(tests)/sizeof(tests[0]); i++) {
399                 if (strcmp(tests[i].name, name) == 0)
400                         return &tests[i];
401         }
402         abort();
403 }
404
405 #define PRE_BOILERPLATE "/* Test program generated by configurator. */\n"
406 #define MAIN_START_BOILERPLATE "int main(int argc, char *argv[]) {\n"
407 #define USE_FUNC_BOILERPLATE "(void)func;\n"
408 #define MAIN_BODY_BOILERPLATE "return 0;\n"
409 #define MAIN_END_BOILERPLATE "}\n"
410
411 static bool run_test(const char *cmd, struct test *test)
412 {
413         char *output;
414         FILE *outf;
415         int status;
416
417         if (test->done)
418                 return test->answer;
419
420         if (test->depends) {
421                 size_t len;
422                 const char *deps = test->depends;
423                 char *dep;
424
425                 /* Space-separated dependencies, could be ! for inverse. */
426                 while ((len = strcspn(deps, " "))) {
427                         bool positive = true;
428                         if (deps[len]) {
429                                 dep = strdup(deps);
430                                 dep[len] = '\0';
431                         } else {
432                                 dep = (char *)deps;
433                         }
434
435                         if (dep[0] == '!') {
436                                 dep++;
437                                 positive = false;
438                         }
439                         if (run_test(cmd, find_test(dep)) != positive) {
440                                 test->answer = false;
441                                 test->done = true;
442                                 return test->answer;
443                         }
444                         if (deps[len])
445                                 free(dep);
446
447                         deps += len;
448                         deps += strspn(deps, " ");
449                 }
450         }
451
452         outf = fopen(INPUT_FILE, "w");
453         if (!outf)
454                 err(1, "creating %s", INPUT_FILE);
455
456         fprintf(outf, "%s", PRE_BOILERPLATE);
457         switch (test->style & ~(EXECUTE|MAY_NOT_COMPILE)) {
458         case INSIDE_MAIN:
459                 fprintf(outf, "%s", MAIN_START_BOILERPLATE);
460                 fprintf(outf, "%s", test->fragment);
461                 fprintf(outf, "%s", MAIN_END_BOILERPLATE);
462                 break;
463         case OUTSIDE_MAIN:
464                 fprintf(outf, "%s", test->fragment);
465                 fprintf(outf, "%s", MAIN_START_BOILERPLATE);
466                 fprintf(outf, "%s", MAIN_BODY_BOILERPLATE);
467                 fprintf(outf, "%s", MAIN_END_BOILERPLATE);
468                 break;
469         case DEFINES_FUNC:
470                 fprintf(outf, "%s", test->fragment);
471                 fprintf(outf, "%s", MAIN_START_BOILERPLATE);
472                 fprintf(outf, "%s", USE_FUNC_BOILERPLATE);
473                 fprintf(outf, "%s", MAIN_BODY_BOILERPLATE);
474                 fprintf(outf, "%s", MAIN_END_BOILERPLATE);
475                 break;
476         case DEFINES_EVERYTHING:
477                 fprintf(outf, "%s", test->fragment);
478                 break;
479         default:
480                 abort();
481
482         }
483         fclose(outf);
484
485         if (verbose > 1)
486                 if (system("cat " INPUT_FILE) == -1);
487
488         if (test->link) {
489                 char *newcmd;
490                 newcmd = malloc(strlen(cmd) + strlen(" ")
491                                 + strlen(test->link) + 1);
492                 sprintf(newcmd, "%s %s", cmd, test->link);
493                 if (verbose > 1)
494                         printf("Extra link line: %s", newcmd);
495                 cmd = newcmd;
496         }
497
498         output = run(cmd, &status);
499         if (status != 0 || strstr(output, "warning")) {
500                 if (verbose)
501                         printf("Compile %s for %s, status %i: %s\n",
502                                status ? "fail" : "warning",
503                                test->name, status, output);
504                 if ((test->style & EXECUTE) && !(test->style & MAY_NOT_COMPILE))
505                         errx(1, "Test for %s did not compile:\n%s",
506                              test->name, output);
507                 test->answer = false;
508                 free(output);
509         } else {
510                 /* Compile succeeded. */
511                 free(output);
512                 /* We run INSIDE_MAIN tests for sanity checking. */
513                 if ((test->style & EXECUTE) || (test->style & INSIDE_MAIN)) {
514                         output = run("./" OUTPUT_FILE, &status);
515                         if (!(test->style & EXECUTE) && status != 0)
516                                 errx(1, "Test for %s failed with %i:\n%s",
517                                      test->name, status, output);
518                         if (verbose && status)
519                                 printf("%s exited %i\n", test->name, status);
520                         free(output);
521                 }
522                 test->answer = (status == 0);
523         }
524         test->done = true;
525
526         if (test->answer && test->overrides) {
527                 struct test *override = find_test(test->overrides);
528                 override->done = true;
529                 override->answer = true;
530         }
531         return test->answer;
532 }
533
534 int main(int argc, const char *argv[])
535 {
536         char *cmd;
537         unsigned int i;
538         const char *default_args[]
539                 = { "", DEFAULT_COMPILER, DEFAULT_FLAGS, NULL };
540
541         if (argc > 1) {
542                 if (strcmp(argv[1], "--help") == 0) {
543                         printf("Usage: configurator [-v] [<compiler> <flags>...]\n"
544                                "  <compiler> <flags> will have \"-o <outfile> <infile.c>\" appended\n"
545                                "Default: %s %s\n",
546                                DEFAULT_COMPILER, DEFAULT_FLAGS);
547                         exit(0);
548                 }
549                 if (strcmp(argv[1], "-v") == 0) {
550                         argc--;
551                         argv++;
552                         verbose = 1;
553                 } else if (strcmp(argv[1], "-vv") == 0) {
554                         argc--;
555                         argv++;
556                         verbose = 2;
557                 }
558         }
559
560         if (argc == 1)
561                 argv = default_args;
562
563         cmd = connect_args(argv, " -o " OUTPUT_FILE " " INPUT_FILE);
564         for (i = 0; i < sizeof(tests)/sizeof(tests[0]); i++)
565                 run_test(cmd, &tests[i]);
566         free(cmd);
567
568         unlink(OUTPUT_FILE);
569         unlink(INPUT_FILE);
570
571         printf("/* Generated by CCAN configurator */\n"
572                "#ifndef CCAN_CONFIG_H\n"
573                "#define CCAN_CONFIG_H\n");
574         printf("#ifndef _GNU_SOURCE\n");
575         printf("#define _GNU_SOURCE /* Always use GNU extensions. */\n");
576         printf("#endif\n");
577         printf("#define CCAN_COMPILER \"%s\"\n", argv[1]);
578         cmd = connect_args(argv+1, "");
579         printf("#define CCAN_CFLAGS \"%s\"\n\n", cmd);
580         free(cmd);
581         /* This one implies "#include <ccan/..." works, eg. for tdb2.h */
582         printf("#define HAVE_CCAN 1\n");
583         for (i = 0; i < sizeof(tests)/sizeof(tests[0]); i++)
584                 printf("#define %s %u\n", tests[i].name, tests[i].answer);
585         printf("#endif /* CCAN_CONFIG_H */\n");
586         return 0;
587 }