From: Andrew Tridgell Date: Mon, 13 Sep 2004 10:38:17 +0000 (+0200) Subject: updated web for 2.4 release X-Git-Tag: v2.4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=36ddc709cc8104767146e1123aba2e3df30bc84b;p=thirdparty%2Fccache.git updated web for 2.4 release --- diff --git a/web/ccache-man.html b/web/ccache-man.html index 76b61d00b..b831e71da 100644 --- a/web/ccache-man.html +++ b/web/ccache-man.html @@ -123,6 +123,11 @@ most cases you won't need any of these as the defaults will be fine.

CCACHE_DIR
the CCACHE_DIR environment variable specifies where ccache will keep its cached compiler output. The default is "$HOME/.ccache". +

CCACHE_TEMPDIR
the CCACHE_TEMPDIR environment variable specifies +where ccache will put temporary files. The default is the same as +CCACHE_DIR. Note that the CCACHE_TEMPDIR path must be on the same +filesystem as the CCACHE_DIR path, so that renames of files between +the two directories can work.

CCACHE_LOGFILE
If you set the CCACHE_LOGFILE environment variable then ccache will write some log information on cache hits and misses in that file. This is useful for tracking down problems. @@ -140,6 +145,12 @@ below on using ccache with distcc.

CCACHE_DISABLE
If you set the environment variable CCACHE_DISABLE then ccache will just call the real compiler, bypassing the cache completely. +

CCACHE_READONLY
the CCACHE_READONLY environment variable +tells ccache to attempt to use existing cached object files, but not +to try to add anything new to the cache. If you are using this because +your CCACHE_DIR is read-only, then you may find that you also need to +set CCACHE_TEMPDIR as otherwise ccache will fail to create the +temporary files.

CCACHE_CPP2
If you set the environment variable CCACHE_CPP2 then ccache will not use the optimisation of avoiding the 2nd call to the pre-processor by compiling the pre-processed output that was used diff --git a/web/index.html b/web/index.html index aa6881334..cc0289b98 100644 --- a/web/index.html +++ b/web/index.html @@ -18,15 +18,15 @@ in C with more features and better performance.

Latest release

-The latest release is ccache 2.3. +The latest release is ccache 2.4. See the manual page for details