X-Git-Url: https://git.ozlabs.org/?p=ccan;a=blobdiff_plain;f=tools%2Fcompile.c;h=6707c4a68c99af055efe47a5428d6a6cf74faf5a;hp=bf68ad26477644dc8542aaa1414c9d10fda1572b;hb=550246bb457561fb8bffe909c54467090a11011a;hpb=a200e1ad1cf5a4828ea4e4e222838ddad5a4a9a3;ds=sidebyside diff --git a/tools/compile.c b/tools/compile.c index bf68ad26..6707c4a6 100644 --- a/tools/compile.c +++ b/tools/compile.c @@ -2,10 +2,16 @@ #include #include +bool compile_verbose = false; + /* Compile multiple object files into a single. Returns errmsg if fails. */ -char *link_objects(const void *ctx, const char *objs, char **errmsg) +char *link_objects(const void *ctx, const char *basename, bool in_pwd, + const char *objs, char **errmsg) { - char *file = temp_file(ctx, ".o"); + char *file = maybe_temp_file(ctx, ".o", in_pwd, basename); + + if (compile_verbose) + printf("Linking objects into %s\n", file); *errmsg = run_command(ctx, NULL, "ld -r -o %s %s", file, objs); if (*errmsg) { @@ -20,6 +26,8 @@ char *compile_object(const void *ctx, const char *cfile, const char *ccandir, const char *extra_cflags, const char *outfile) { + if (compile_verbose) + printf("Compiling %s\n", outfile); return run_command(ctx, NULL, "cc " CFLAGS " -I%s %s -c -o %s %s", ccandir, extra_cflags, outfile, cfile); } @@ -30,6 +38,8 @@ char *compile_and_link(const void *ctx, const char *cfile, const char *ccandir, const char *objs, const char *extra_cflags, const char *libs, const char *outfile) { + if (compile_verbose) + printf("Compiling and linking %s\n", outfile); return run_command(ctx, NULL, "cc " CFLAGS " -I%s %s -o %s %s %s %s", ccandir, extra_cflags, outfile, cfile, objs, libs); }