Re: explanation of ccache stats
Joel Rosdahl <[email protected]> Wed, 16 Mar 2016 08:50:07 +0100
| Newsgroups | gmane.comp.compilers.ccache |
|---|---|
| Message-ID | <CAK8D=pi3r808P-cC_Q_Tw2wz8czYUq8NHixOJ0D4mtUjASr1jw@mail.gmail.com> |
On 14 March 2016 at 22:18, Stéphane Charette <[email protected]> wrote: What I'm looking for now is an explanation of all the stats field when > I run --show-stats. [...] Didn't see these things explained in the > documentation. Is there a web page that explains the statistics? No, there's no such documentation. (Other than the source code. ;-)) But it would be good to have. But I'm looking for explanations of the differences between things > like "cache hit direct" and "cache hit preprocessed". And "no input file". "cache hit (direct)": Cache hit when using the direct mode <https://ccache.samba.org/manual.html#_the_direct_mode> (faster). "cache hit (preprocessed)": Cache hit when using the preprocessor mode <https://ccache.samba.org/manual.html#_the_preprocessor_mode> (slower). "no input file": ccache didn't detect any input source code file. For example, this happens when you run "ccache gcc --version". -- Joel