From: Andrew Tridgell Date: Tue, 9 Apr 2002 12:21:19 +0000 (+0200) Subject: slightly nicer stats for STATS_LINK X-Git-Tag: v1.7~5 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=46b5fac98b73048c2a0e7c87c7af240e8bb2119a;p=thirdparty%2Fccache.git slightly nicer stats for STATS_LINK --- diff --git a/ccache.c b/ccache.c index 9880170f3..cc16e12fa 100644 --- a/ccache.c +++ b/ccache.c @@ -575,6 +575,9 @@ static void process_args(int argc, char **argv) cc_log("multiple input files (%s and %s)\n", input_file, argv[i]); stats_update(STATS_MULTIPLE); + } else if (!found_c_opt) { + cc_log("called for link with %s\n", argv[i]); + stats_update(STATS_LINK); } else { cc_log("non C/C++ file %s\n", argv[i]); stats_update(STATS_NOTC);