From: Joel Rosdahl Date: Tue, 4 Oct 2022 19:32:55 +0000 (+0200) Subject: doc: Sort sloppiness values by name X-Git-Tag: v4.7~32 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c20043d9dd2f80072be96cf89363bb0478e74cc9;p=thirdparty%2Fccache.git doc: Sort sloppiness values by name --- diff --git a/doc/MANUAL.adoc b/doc/MANUAL.adoc index fd67d1693..7ba37a04b 100644 --- a/doc/MANUAL.adoc +++ b/doc/MANUAL.adoc @@ -987,14 +987,18 @@ preprocessing first. `LC_MESSAGES` in the hash by default since they may affect localization of compiler warning messages. Set this sloppiness to tell ccache not to do that. -*pch_defines*:: - Be sloppy about `#define` directives when precompiling a header file. See - _<>_ for more information. *modules*:: By default, ccache will not cache compilations if `-fmodules` is used since it cannot hash the state of compiler's internal representation of relevant modules. This sloppiness allows caching in such a case. See _<>_ for more information. +*pch_defines*:: + Be sloppy about `#define` directives when precompiling a header file. See + _<>_ for more information. +*random_seed*:: + Ignore the `-frandom-seed` option and its arguments when computing the input + hash. This is useful if your build system generates different seeds between + builds and you are OK with reusing cached results. *system_headers*:: By default, ccache will also include all system headers in the manifest. With this sloppiness set, ccache will only include system headers in the @@ -1002,10 +1006,6 @@ preprocessing first. *time_macros*:: Ignore `+__DATE__+`, `+__TIME__+` and `+__TIMESTAMP__+` being present in the source code. -*random_seed*:: - Ignore the `-frandom-seed` option and its arguments when computing the input - hash. This is useful if your build system generates different seeds between - builds and you are OK with reusing cached results. -- + See the discussion under _<>_ for more information.