X-Git-Url: http://git.ozlabs.org/?p=ccan;a=blobdiff_plain;f=tools%2Fcompile.c;h=b88c1d865186b636e35ee359186517196d80b7ac;hp=5a381a1408a6cd87aedf82803b7664c50cbe2161;hb=e40f5c50a7a930fc98974936b7366b498ebf984c;hpb=af5b1a18948345c5f9f9abf4eda3ab9fe0aa9a9f diff --git a/tools/compile.c b/tools/compile.c index 5a381a14..b88c1d86 100644 --- a/tools/compile.c +++ b/tools/compile.c @@ -1,7 +1,15 @@ #include "tools.h" -#include #include +#ifndef CCAN_COMPILER +#define CCAN_COMPILER DEFAULT_CCAN_COMPILER +#endif +#ifndef CCAN_CFLAGS +#define CCAN_CFLAGS DEFAULT_CCAN_CFLAGS +#endif +const char *compiler = CCAN_COMPILER; +const char *cflags = CCAN_CFLAGS; + bool compile_verbose = false; /* Compile multiple object files into a single. Returns NULL if fails. */ @@ -16,7 +24,7 @@ char *link_objects(const void *ctx, const char *basename, if (run_command(ctx, NULL, errmsg, "ld -r -o %s %s", file, objs)) return file; - talloc_free(file); + tal_free(file); return NULL; }