aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWilliam S Fulton <wsf@fultondesigns.co.uk>2008-12-07 13:40:36 +0000
committerWilliam S Fulton <wsf@fultondesigns.co.uk>2008-12-07 13:40:36 +0000
commit62bb75dfc2ac7fb23dec4c8bf10a48a859f90bf8 (patch)
tree481b20af45183c709b0fc09211505c746603b29b
parent3054ed120a0363007c607ac6c20458ec2d5bd183 (diff)
downloadswig-62bb75dfc2ac7fb23dec4c8bf10a48a859f90bf8.tar.gz
Apply autoreconf_fixes.patch sent to debian -- restores documentation changes that the debian patches had if autoreconf is run
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@10972 626c5289-ae23-0410-ae9c-e8d60b6d4f22
-rw-r--r--CCache/ccache.yo38
1 files changed, 16 insertions, 22 deletions
diff --git a/CCache/ccache.yo b/CCache/ccache.yo
index 8960c8498..f0abc75fd 100644
--- a/CCache/ccache.yo
+++ b/CCache/ccache.yo
@@ -20,14 +20,14 @@ manpagesection(OPTIONS SUMMARY)
Here is a summary of the options to ccache.
verb(
--s show statistics summary
--z zero statistics
--c run a cache cleanup
--C clear the cache completely
--F <maxfiles> set maximum files in cache
--M <maxsize> set maximum size of cache (use G, M or K)
--h this help page
--V print version number
+-s, --show-stats show statistics summary
+-z, --zero-stats zero statistics
+-c, --cleanup run a cache cleanup
+-C, --clear clear the cache completely
+-F <n>, --max-files=<n> set maximum files in cache
+-M <n>, --max-size=<n> set maximum size of cache (use G, M or K)
+-h, --help this help page
+-V, --version print version number
)
manpageoptions()
@@ -38,32 +38,32 @@ normal compiler options apply and you should refer to your compilers
documentation.
startdit()
-dit(bf(-h)) Print a options summary page
+dit(bf(-h, --help)) Print a options summary page
-dit(bf(-s)) Print the current statistics summary for the cache. The
+dit(bf(-s, --show-stats)) Print the current statistics summary for the cache. The
statistics are stored spread across the subdirectories of the
cache. Using "ccache -s" adds up the statistics across all
subdirectories and prints the totals.
-dit(bf(-z)) Zero the cache statistics.
+dit(bf(-z, --zero-stats)) Zero the cache statistics.
-dit(bf(-V)) Print the ccache version number
+dit(bf(-V, --version)) Print the ccache version number
-dit(bf(-c)) Clean the cache and re-calculate the cache file count and
+dit(bf(-c, --cleanup)) Clean the cache and re-calculate the cache file count and
size totals. Normally the -c option should not be necessary as ccache
keeps the cache below the specified limits at runtime and keeps
statistics up to date on each compile. This option is mostly useful
if you manually modify the cache contents or believe that the cache
size statistics may be inaccurate.
-dit(bf(-C)) Clear the entire cache, removing all cached files.
+dit(bf(-C, --clear)) Clear the entire cache, removing all cached files.
-dit(bf(-F maxfiles)) This sets the maximum number of files allowed in
+dit(bf(-F <maxfiles>, --max-files=<maxfiles>)) This sets the maximum number of files allowed in
the cache. The value is stored inside the cache directory and applies
to all future compiles. Due to the way the value is stored the actual
value used is always rounded down to the nearest multiple of 16.
-dit(bf(-M maxsize)) This sets the maximum cache size. You can specify
+dit(bf(-M <maxsize>, --max-size=<maxsize>)) This sets the maximum cache size. You can specify
a value in gigabytes, megabytes or kilobytes by appending a G, M or K
to the value. The default is gigabytes. The actual value stored is
rounded down to the nearest multiple of 16 kilobytes.
@@ -349,12 +349,6 @@ it() ccache can handle a much wider ranger of compiler options
it() ccache avoids a double call to cpp on a cache miss
)
-manpagesection(BUGS)
-
-When the cache is stored on an NFS filesystem, the filesystem must be
-exported with the bf(no_subtree_check) option to make renames between
-directories reliable.
-
manpagesection(CREDITS)
Thanks to the following people for their contributions to ccache