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

« back to all changes in this revision

Viewing changes to ccache.yo

  • 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:
125
125
where ccache will keep its cached compiler output. The default is
126
126
"$HOME/.ccache".
127
127
 
 
128
dit(bf(CCACHE_TEMPDIR)) the CCACHE_TEMPDIR environment variable specifies
 
129
where ccache will put temporary files. The default is the same as
 
130
CCACHE_DIR. Note that the CCACHE_TEMPDIR path must be on the same
 
131
filesystem as the CCACHE_DIR path, so that renames of files between
 
132
the two directories can work.
 
133
 
128
134
dit(bf(CCACHE_LOGFILE)) If you set the CCACHE_LOGFILE environment
129
135
variable then ccache will write some log information on cache hits
130
136
and misses in that file. This is useful for tracking down problems.
147
153
CCACHE_DISABLE then ccache will just call the real compiler,
148
154
bypassing the cache completely.
149
155
 
 
156
dit(bf(CCACHE_READONLY)) the CCACHE_READONLY environment variable
 
157
tells ccache to attempt to use existing cached object files, but not
 
158
to try to add anything new to the cache. If you are using this because
 
159
your CCACHE_DIR is read-only, then you may find that you also need to
 
160
set CCACHE_TEMPDIR as otherwise ccache will fail to create the
 
161
temporary files.
 
162
 
150
163
dit(bf(CCACHE_CPP2)) If you set the environment variable CCACHE_CPP2
151
164
then ccache will not use the optimisation of avoiding the 2nd call to
152
165
the pre-processor by compiling the pre-processed output that was used