Browse Source

ccanlint: Add cflags support to _info

Andrew Jeffery 10 years ago
parent
commit
9e207bca5b

+ 13 - 1
tools/ccanlint/tests/examples_compile.c

@@ -126,6 +126,17 @@ static char *example_lib_list(const void *ctx, struct manifest **deps)
 	return list;
 	return list;
 }
 }
 
 
+static char *cflags_list(const struct manifest *m)
+{
+	unsigned int i;
+	char *ret = tal_strdup(m, cflags);
+
+	char **flags = get_cflags(m, m->dir, get_or_compile_info);
+	for (i = 0; flags[i]; i++)
+		tal_append_fmt(&ret, " %s", flags[i]);
+	return ret;
+}
+
 /* FIXME: Test with reduced features! */
 /* FIXME: Test with reduced features! */
 static bool compile(const void *ctx,
 static bool compile(const void *ctx,
 		    struct manifest *m,
 		    struct manifest *m,
@@ -133,11 +144,12 @@ static bool compile(const void *ctx,
 		    char **output)
 		    char **output)
 {
 {
 	struct manifest **deps = get_example_deps(m, file);
 	struct manifest **deps = get_example_deps(m, file);
+	const char *flags = cflags_list(m);
 
 
 	file->compiled[COMPILE_NORMAL] = temp_file(ctx, "", file->fullname);
 	file->compiled[COMPILE_NORMAL] = temp_file(ctx, "", file->fullname);
 	if (!compile_and_link(ctx, file->fullname, ccan_dir,
 	if (!compile_and_link(ctx, file->fullname, ccan_dir,
 			      example_obj_list(file, deps),
 			      example_obj_list(file, deps),
-			      compiler, cflags,
+			      compiler, flags,
 			      example_lib_list(file, deps),
 			      example_lib_list(file, deps),
 			      file->compiled[COMPILE_NORMAL],
 			      file->compiled[COMPILE_NORMAL],
 			      output)) {
 			      output)) {

+ 15 - 1
tools/ccanlint/tests/module_links.c

@@ -41,6 +41,17 @@ static char *obj_list(const struct manifest *m)
 	return list;
 	return list;
 }
 }
 
 
+static char *cflags_list(const struct manifest *m)
+{
+	unsigned int i;
+	char *ret = tal_strdup(m, cflags);
+
+	char **flags = get_cflags(m, m->dir, get_or_compile_info);
+	for (i = 0; flags[i]; i++)
+		tal_append_fmt(&ret, " %s", flags[i]);
+	return ret;
+}
+
 static char *lib_list(const struct manifest *m)
 static char *lib_list(const struct manifest *m)
 {
 {
 	unsigned int i;
 	unsigned int i;
@@ -59,6 +70,7 @@ static void check_use_build(struct manifest *m,
 	char *contents;
 	char *contents;
 	char *tmpfile, *cmdout;
 	char *tmpfile, *cmdout;
 	int fd;
 	int fd;
+	char *flags;
 
 
 	tmpfile = temp_file(m, ".c", "example.c");
 	tmpfile = temp_file(m, ".c", "example.c");
 
 
@@ -77,8 +89,10 @@ static void check_use_build(struct manifest *m,
 		err(1, "Failure writing to temporary file %s", tmpfile);
 		err(1, "Failure writing to temporary file %s", tmpfile);
 	close(fd);
 	close(fd);
 
 
+	flags = cflags_list(m);
+
 	if (compile_and_link(score, tmpfile, ccan_dir, obj_list(m),
 	if (compile_and_link(score, tmpfile, ccan_dir, obj_list(m),
-			     compiler, cflags, lib_list(m),
+			     compiler, flags, lib_list(m),
 			     temp_file(m, "", tmpfile),
 			     temp_file(m, "", tmpfile),
 			     &cmdout)) {
 			     &cmdout)) {
 		score->pass = true;
 		score->pass = true;

+ 15 - 1
tools/ccanlint/tests/objects_build.c

@@ -22,6 +22,17 @@ static const char *can_build(struct manifest *m)
 	return NULL;
 	return NULL;
 }
 }
 
 
+static char *cflags_list(const struct manifest *m)
+{
+	unsigned int i;
+	char *ret = tal_strdup(m, cflags);
+
+	char **flags = get_cflags(m, m->dir, get_or_compile_info);
+	for (i = 0; flags[i]; i++)
+		tal_append_fmt(&ret, " %s", flags[i]);
+	return ret;
+}
+
 void build_objects(struct manifest *m,
 void build_objects(struct manifest *m,
 		   struct score *score, const char *flags,
 		   struct score *score, const char *flags,
 		   enum compile_type ctype)
 		   enum compile_type ctype)
@@ -65,7 +76,10 @@ void build_objects(struct manifest *m,
 static void check_objs_build(struct manifest *m,
 static void check_objs_build(struct manifest *m,
 			     unsigned int *timeleft, struct score *score)
 			     unsigned int *timeleft, struct score *score)
 {
 {
-	build_objects(m, score, cflags, COMPILE_NORMAL);
+	const char *flags;
+
+	flags = cflags_list(m);
+	build_objects(m, score, flags, COMPILE_NORMAL);
 }
 }
 
 
 struct ccanlint objects_build = {
 struct ccanlint objects_build = {

+ 13 - 0
tools/ccanlint/tests/tests_compile.c

@@ -66,6 +66,17 @@ char *test_lib_list(const struct manifest *m, enum compile_type ctype)
 	return ret;
 	return ret;
 }
 }
 
 
+static char *cflags_list(const struct manifest *m, const char *iflags)
+{
+	unsigned int i;
+	char *ret = tal_strdup(m, iflags);
+
+	char **flags = get_cflags(m, m->dir, get_or_compile_info);
+	for (i = 0; flags[i]; i++)
+		tal_append_fmt(&ret, " %s", flags[i]);
+	return ret;
+}
+
 static bool compile(const void *ctx,
 static bool compile(const void *ctx,
 		    struct manifest *m,
 		    struct manifest *m,
 		    struct ccan_file *file,
 		    struct ccan_file *file,
@@ -81,6 +92,7 @@ static bool compile(const void *ctx,
 			cflags,
 			cflags,
 			ctype == COMPILE_NOFEAT
 			ctype == COMPILE_NOFEAT
 			? " "REDUCE_FEATURES_FLAGS : "");
 			? " "REDUCE_FEATURES_FLAGS : "");
+	flags = cflags_list(m, flags);
 
 
 	fname = temp_file(ctx, "", file->fullname);
 	fname = temp_file(ctx, "", file->fullname);
 	if (!compile_and_link(ctx, file->fullname, ccan_dir,
 	if (!compile_and_link(ctx, file->fullname, ccan_dir,
@@ -110,6 +122,7 @@ static void compile_async(const void *ctx,
 			cflags,
 			cflags,
 			ctype == COMPILE_NOFEAT
 			ctype == COMPILE_NOFEAT
 			? " "REDUCE_FEATURES_FLAGS : "");
 			? " "REDUCE_FEATURES_FLAGS : "");
+	flags = cflags_list(m, flags);
 
 
 	compile_and_link_async(file, time_ms, file->fullname, ccan_dir,
 	compile_and_link_async(file, time_ms, file->fullname, ccan_dir,
 			       test_obj_list(m, link_with_module, ctype, ctype),
 			       test_obj_list(m, link_with_module, ctype, ctype),

+ 24 - 1
tools/ccanlint/tests/tests_compile_coverage.c

@@ -31,6 +31,27 @@ static const char *can_run_coverage(struct manifest *m)
 #endif
 #endif
 }
 }
 
 
+static char *cflags_list(const struct manifest *m)
+{
+	unsigned int i;
+	char *ret = tal_strdup(m, cflags);
+
+	char **flags = get_cflags(m, m->dir, get_or_compile_info);
+	for (i = 0; flags[i]; i++)
+		tal_append_fmt(&ret, " %s", flags[i]);
+	return ret;
+}
+
+static char *cflags_list_append(const struct manifest *m, char *iflags)
+{
+	unsigned int i;
+
+	char **flags = get_cflags(m, m->dir, get_or_compile_info);
+	for (i = 0; flags[i]; i++)
+		tal_append_fmt(&iflags, " %s", flags[i]);
+	return iflags;
+}
+
 static void cov_compile(const void *ctx,
 static void cov_compile(const void *ctx,
 			unsigned int time_ms,
 			unsigned int time_ms,
 			struct manifest *m,
 			struct manifest *m,
@@ -38,6 +59,7 @@ static void cov_compile(const void *ctx,
 			bool link_with_module)
 			bool link_with_module)
 {
 {
 	char *flags = tal_fmt(ctx, "%s %s", cflags, COVERAGE_CFLAGS);
 	char *flags = tal_fmt(ctx, "%s %s", cflags, COVERAGE_CFLAGS);
+	flags = cflags_list_append(m, flags);
 
 
 	file->compiled[COMPILE_COVERAGE] = temp_file(ctx, "", file->fullname);
 	file->compiled[COMPILE_COVERAGE] = temp_file(ctx, "", file->fullname);
 	compile_and_link_async(file, time_ms, file->fullname, ccan_dir,
 	compile_and_link_async(file, time_ms, file->fullname, ccan_dir,
@@ -58,7 +80,8 @@ static void do_compile_coverage_tests(struct manifest *m,
 	struct ccan_file *i;
 	struct ccan_file *i;
 	struct list_head *h;
 	struct list_head *h;
 	bool ok;
 	bool ok;
-	char *f = tal_fmt(score, "%s %s", cflags, COVERAGE_CFLAGS);
+	char *f = cflags_list(m);
+	tal_append_fmt(&f, " %s", COVERAGE_CFLAGS);
 
 
 	/* For API tests, we need coverage version of module. */
 	/* For API tests, we need coverage version of module. */
 	if (!list_empty(&m->api_tests)) {
 	if (!list_empty(&m->api_tests)) {

+ 26 - 2
tools/depends.c

@@ -228,12 +228,12 @@ get_all_deps(const void *ctx, const char *dir, const char *style,
 }
 }
 
 
 /* Can return NULL: _info may not support 'libs'. */
 /* 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 *(*get_info)(const void *ctx, const char *dir))
 {
 {
 	char *cmd, **lines;
 	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);
 	lines = lines_from_cmd(cmd, "%s", cmd);
 	/* Strip final NULL. */
 	/* Strip final NULL. */
 	if (lines)
 	if (lines)
@@ -241,6 +241,18 @@ static char **get_one_libs(const void *ctx, const char *dir,
 	return lines;
 	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. */
 /* O(n^2) but n is small. */
 static char **add_deps(char **deps1, char **deps2)
 static char **add_deps(char **deps1, char **deps2)
 {
 {
@@ -258,6 +270,18 @@ static char **add_deps(char **deps1, char **deps2)
 	return deps1;
 	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_libs(const void *ctx, const char *dir, const char *style,
 		char *(*get_info)(const void *ctx, const char *dir))
 		char *(*get_info)(const void *ctx, const char *dir))
 {
 {

+ 3 - 0
tools/tools.h

@@ -43,6 +43,9 @@ char **get_safe_ccan_deps(const void *ctx, const char *dir, const char *style,
 char **get_libs(const void *ctx, const char *dir, const char *style,
 char **get_libs(const void *ctx, const char *dir, const char *style,
 		char *(*get_info)(const void *ctx, const char *dir));
 		char *(*get_info)(const void *ctx, const char *dir));
 
 
+char **get_cflags(const void *ctx, const char *dir,
+		char *(*get_info)(const void *ctx, const char *dir));
+
 /* From tools.c */
 /* From tools.c */
 /* If set, print all commands run, all output they give and exit status. */
 /* If set, print all commands run, all output they give and exit status. */
 extern bool tools_verbose;
 extern bool tools_verbose;