X-Git-Url: http://git.ozlabs.org/?p=ccan;a=blobdiff_plain;f=tools%2Fcompile.c;h=fc7dc34789fbcfac6c832fce41ff7b6e0253499c;hp=089a9ab03c3dc25760b0fdd501f78a89df95ec9f;hb=fb4c4c3ddc24772f71a64ec02d2c9ddaeb6e9f6b;hpb=1d893107b3481639bf1fc6f96972457ac6e828f7;ds=sidebyside diff --git a/tools/compile.c b/tools/compile.c index 089a9ab0..fc7dc347 100644 --- a/tools/compile.c +++ b/tools/compile.c @@ -17,32 +17,18 @@ char *link_objects(const void *ctx, const char *objs, char **errmsg) /* 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, - char **errmsg) + const char *outfile) { - char *file = temp_file(ctx, ".o"); - - *errmsg = run_command(ctx, NULL, "cc " CFLAGS " -I%s -c -o %s %s", - ccandir, file, cfile); - if (*errmsg) { - talloc_free(file); - return NULL; - } - return file; + return run_command(ctx, NULL, "cc " CFLAGS " -I%s -c -o %s %s", + ccandir, outfile, cfile); } /* Compile and link single C file, with object files. - * Returns name of result, or NULL (and fills in errmsg). */ + * 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, char **errmsg) + const char *libs, const char *outfile) { - char *file = temp_file(ctx, ""); - - *errmsg = run_command(ctx, NULL, "cc " CFLAGS " -I%s %s -o %s %s %s %s", - ccandir, extra_cflags, file, cfile, objs, libs); - if (*errmsg) { - talloc_free(file); - return NULL; - } - return file; + return run_command(ctx, NULL, "cc " CFLAGS " -I%s %s -o %s %s %s %s", + ccandir, extra_cflags, outfile, cfile, objs, libs); }