~ubuntu-branches/debian/lenny/ccache/lenny

« back to all changes in this revision

Viewing changes to web/ccache-man.html

  • Committer: Bazaar Package Importer
  • Author(s): Francois Marier
  • Date: 2005-06-26 13:33:19 UTC
  • mto: (2.1.1 breezy)
  • mto: This revision was merged to the branch mainline in revision 3.
  • Revision ID: james.westby@ubuntu.com-20050626133319-pcu2jrgcmep18yai
Tags: upstream-2.4
ImportĀ upstreamĀ versionĀ 2.4

Show diffs side-by-side

added added

removed removed

Lines of Context:
123
123
<p><p></p><dt><strong><strong>CCACHE_DIR</strong></strong><dd> the CCACHE_DIR environment variable specifies
124
124
where ccache will keep its cached compiler output. The default is
125
125
"$HOME/.ccache".
 
126
<p><p></p><dt><strong><strong>CCACHE_TEMPDIR</strong></strong><dd> the CCACHE_TEMPDIR environment variable specifies
 
127
where ccache will put temporary files. The default is the same as
 
128
CCACHE_DIR. Note that the CCACHE_TEMPDIR path must be on the same
 
129
filesystem as the CCACHE_DIR path, so that renames of files between
 
130
the two directories can work.
126
131
<p><p></p><dt><strong><strong>CCACHE_LOGFILE</strong></strong><dd> If you set the CCACHE_LOGFILE environment
127
132
variable then ccache will write some log information on cache hits
128
133
and misses in that file. This is useful for tracking down problems.
140
145
<p><p></p><dt><strong><strong>CCACHE_DISABLE</strong></strong><dd> If you set the environment variable
141
146
CCACHE_DISABLE then ccache will just call the real compiler,
142
147
bypassing the cache completely.
 
148
<p><p></p><dt><strong><strong>CCACHE_READONLY</strong></strong><dd> the CCACHE_READONLY environment variable
 
149
tells ccache to attempt to use existing cached object files, but not
 
150
to try to add anything new to the cache. If you are using this because
 
151
your CCACHE_DIR is read-only, then you may find that you also need to
 
152
set CCACHE_TEMPDIR as otherwise ccache will fail to create the
 
153
temporary files.
143
154
<p><p></p><dt><strong><strong>CCACHE_CPP2</strong></strong><dd> If you set the environment variable CCACHE_CPP2
144
155
then ccache will not use the optimisation of avoiding the 2nd call to
145
156
the pre-processor by compiling the pre-processed output that was used