X-Git-Url: http://git.ozlabs.org/?p=ccan;a=blobdiff_plain;f=tools%2Fdepends.c;h=871a3e8712368a649dc3d2d478e696087496bd57;hp=4f56d14e1eeb97edf71f5b07b2e7050ec3c940a1;hb=9e207bca5bf5e0a1e3653a91649414fab793c801;hpb=49a1a4366fdcea418582a97cb0bf700373b89868;ds=sidebyside diff --git a/tools/depends.c b/tools/depends.c index 4f56d14e..871a3e87 100644 --- a/tools/depends.c +++ b/tools/depends.c @@ -2,6 +2,7 @@ #include #include #include +#include #include #include #include "tools.h" @@ -42,11 +43,10 @@ lines_from_cmd(const void *ctx, const char *format, ...) char *compile_info(const void *ctx, const char *dir) { char *info_c_file, *info, *compiled, *output; - size_t len; int fd; /* Copy it to a file with proper .c suffix. */ - info = tal_grab_file(ctx, tal_fmt(ctx, "%s/_info", dir), &len); + info = grab_file(ctx, tal_fmt(ctx, "%s/_info", dir)); if (!info) return NULL; @@ -54,7 +54,7 @@ char *compile_info(const void *ctx, const char *dir) fd = open(info_c_file, O_WRONLY|O_CREAT|O_EXCL, 0600); if (fd < 0) return NULL; - if (!write_all(fd, info, len)) + if (!write_all(fd, info, tal_count(info)-1)) return NULL; if (close(fd) != 0) @@ -62,8 +62,7 @@ char *compile_info(const void *ctx, const char *dir) compiled = temp_file(ctx, "", "info"); if (compile_and_link(ctx, info_c_file, find_ccan_dir(dir), "", - CCAN_COMPILER, CCAN_CFLAGS " -I.", "", - compiled, &output)) + compiler, cflags, "", compiled, &output)) return compiled; return NULL; } @@ -127,7 +126,7 @@ static char **get_one_safe_deps(const void *ctx, bool correct_style = false; fname = path_join(ctx, dir, "_info"); - raw = tal_grab_file(fname, fname, NULL); + raw = grab_file(fname, fname); if (!raw) errx(1, "Could not open %s", fname); @@ -199,6 +198,8 @@ get_all_deps(const void *ctx, const char *dir, const char *style, unsigned int i; deps = get_one(ctx, dir, style, get_info); + if (!deps) + return NULL; for (i = 0; i < tal_count(deps)-1; i++) { char **newdeps; unsigned int j; @@ -227,12 +228,12 @@ get_all_deps(const void *ctx, const char *dir, const char *style, } /* Can return NULL: _info may not support 'libs'. */ -static char **get_one_libs(const void *ctx, const char *dir, +static char **get_one_prop(const void *ctx, const char *dir, const char *prop, char *(*get_info)(const void *ctx, const char *dir)) { char *cmd, **lines; - cmd = tal_fmt(ctx, "%s libs", get_info(ctx, dir)); + cmd = tal_fmt(ctx, "%s %s", get_info(ctx, dir), prop); lines = lines_from_cmd(cmd, "%s", cmd); /* Strip final NULL. */ if (lines) @@ -240,6 +241,18 @@ static char **get_one_libs(const void *ctx, const char *dir, return lines; } +static char **get_one_libs(const void *ctx, const char *dir, + char *(*get_info)(const void *ctx, const char *dir)) +{ + return get_one_prop(ctx, dir, "libs", get_info); +} + +static char **get_one_cflags(const void *ctx, const char *dir, + char *(*get_info)(const void *ctx, const char *dir)) +{ + return get_one_prop(ctx, dir, "cflags", get_info); +} + /* O(n^2) but n is small. */ static char **add_deps(char **deps1, char **deps2) { @@ -257,6 +270,18 @@ static char **add_deps(char **deps1, char **deps2) return deps1; } +char **get_cflags(const void *ctx, const char *dir, + char *(*get_info)(const void *ctx, const char *dir)) +{ + char **flags; + unsigned int len; + flags = get_one_cflags(ctx, dir, get_info); + len = tal_count(flags); + tal_resize(&flags, len + 1); + flags[len] = NULL; + return flags; +} + char **get_libs(const void *ctx, const char *dir, const char *style, char *(*get_info)(const void *ctx, const char *dir)) {