]> git.ozlabs.org Git - ccan/blobdiff - tools/compile.c
asprintf: new asprintf module.
[ccan] / tools / compile.c
index 089a9ab03c3dc25760b0fdd501f78a89df95ec9f..ec7e2147b239ddb568acee8a87973dc05757db85 100644 (file)
@@ -2,47 +2,48 @@
 #include <ccan/talloc/talloc.h>
 #include <stdlib.h>
 
-/* Compile multiple object files into a single.  Returns errmsg if fails. */
-char *link_objects(const void *ctx, const char *objs, char **errmsg)
+bool compile_verbose = false;
+
+/* 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);
+
+       if (run_command(ctx, NULL, errmsg, "ld -r -o %s %s", file, objs))
+               return file;
 
-       *errmsg = run_command(ctx, NULL, "ld -r -o %s %s", file, objs);
-       if (*errmsg) {
-               talloc_free(file);
-               return NULL;
-       }
-       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,
-                    char **errmsg)
+/* 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)
 {
-       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;
+       if (compile_verbose)
+               printf("Compiling %s\n", outfile);
+       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 name of result, or NULL (and fills in errmsg). */
-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)
+ * 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)
 {
-       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;
+       if (compile_verbose)
+               printf("Compiling and linking %s\n", outfile);
+       return run_command(ctx, NULL, output,
+                          "%s %s -I%s -o %s %s %s %s",
+                          compiler, cflags,
+                          ccandir, outfile, cfile, objs, libs);
 }