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