X-Git-Url: http://git.ozlabs.org/?p=ccan;a=blobdiff_plain;f=tools%2Fcompile.c;h=ec7e2147b239ddb568acee8a87973dc05757db85;hp=7ff04225dc3e42a7af2dc170711c804498529baa;hb=a446f1d4d161d66bbb19ba2551cf6429a4865964;hpb=a1d06d55999cc5004f4a3c2c8c17638972c6fe50 diff --git a/tools/compile.c b/tools/compile.c index 7ff04225..ec7e2147 100644 --- a/tools/compile.c +++ b/tools/compile.c @@ -4,41 +4,46 @@ 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) +/* Compile multiple object files into a single. Returns NULL if fails. */ +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) { - talloc_free(file); - return NULL; - } - return file; + if (run_command(ctx, NULL, errmsg, "ld -r -o %s %s", file, objs)) + return file; + + talloc_free(file); + return NULL; } -/* Compile a single C file to an object file. Returns errmsg if fails. */ -char *compile_object(const void *ctx, const char *cfile, const char *ccandir, - const char *extra_cflags, - const char *outfile) +/* Compile a single C file to an object file. */ +bool compile_object(const void *ctx, const char *cfile, const char *ccandir, + const char *compiler, + const char *cflags, + const char *outfile, char **output) { 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); + return run_command(ctx, NULL, output, + "%s %s -I%s -c -o %s %s", + compiler, cflags, ccandir, outfile, cfile); } /* Compile and link single C file, with object files. - * Returns error message or NULL on success. */ -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) + * Returns false on failure. */ +bool compile_and_link(const void *ctx, const char *cfile, const char *ccandir, + const char *objs, const char *compiler, + const char *cflags, + const char *libs, const char *outfile, char **output) { 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); + return run_command(ctx, NULL, output, + "%s %s -I%s -o %s %s %s %s", + compiler, cflags, + ccandir, outfile, cfile, objs, libs); }