{
if (compile_verbose)
printf("Compiling %s\n", outfile);
- return run_command(ctx, NULL, "cc " CFLAGS " -I%s %s -c -o %s %s",
+ return run_command(ctx, NULL, CCAN_COMPILER " " CCAN_CFLAGS
+ " -I%s %s -c -o %s %s",
ccandir, extra_cflags, outfile, cfile);
}
{
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",
+ return run_command(ctx, NULL, CCAN_COMPILER " " CCAN_CFLAGS
+ " -I%s %s -o %s %s %s %s",
ccandir, extra_cflags, outfile, cfile, objs, libs);
}