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