ccache - a fast compiler cache
Go to file
2010-04-29 18:25:26 +02:00
packaging Unset ccache version in ccache.spec 2010-03-01 20:03:29 +01:00
zlib Bundle (a subset of) zlib 1.2.3 for portability 2010-02-25 23:27:58 +01:00
.gitignore Convert all documentation files to AsciiDoc and rename ccache.txt to manual.txt 2010-04-28 20:44:33 +02:00
args.c Switch license to GPLv3+ 2010-04-22 22:47:16 +02:00
autogen.sh Portability: don't require GNU make 2010-02-26 21:24:09 +01:00
ccache.c Disable compression by default 2010-04-29 18:25:26 +02:00
ccache.h Add CCACHE_EXTRAFILES feature 2010-04-28 22:30:55 +02:00
cleanup.c Switch license to GPLv3+ 2010-04-22 22:47:16 +02:00
configure-dev Portability: don't require GNU make 2010-02-26 21:24:09 +01:00
configure.ac Sort functions in configure.ac 2010-04-05 10:40:03 +02:00
COPYING Switch license to GPLv3+ 2010-04-22 22:47:16 +02:00
dev.mk.in Use nicer temporary directory names in dist/distcheck makefile targets 2010-04-28 20:50:31 +02:00
dump-manifest Add a hash_size field to the manifest on-disk format 2010-02-22 21:45:53 +01:00
execute.c Switch license to GPLv3+ 2010-04-22 22:47:16 +02:00
getopt_long.c Make getopt_long prettier and more standalone 2010-02-17 20:09:55 +01:00
getopt_long.h Make getopt_long prettier and more standalone 2010-02-17 20:09:55 +01:00
hash.c Hash a delimiter string between parts to separate them 2010-04-27 18:19:51 +02:00
hashtable_itr.c First working version of the direct mode 2010-01-05 18:53:01 +01:00
hashtable_itr.h Another try at supporting systems without support for "extern inline" 2010-02-28 14:55:50 +01:00
hashtable_private.h Portability: Use AC_C_INLINE to check for availability of the inline keyword 2010-02-28 00:07:52 +01:00
hashtable.c First working version of the direct mode 2010-01-05 18:53:01 +01:00
hashtable.h Portability: Use AC_C_INLINE to check for availability of the inline keyword 2010-02-28 00:07:52 +01:00
hashutil.c Handle __{DATE,FILE,TIME}__ macros in a better way 2010-04-28 08:56:06 +02:00
hashutil.h Include local header file mdfour.h correctly 2010-04-28 20:19:25 +02:00
install-sh Remove trailing whitespace 2010-01-05 18:53:01 +01:00
INSTALL.txt Convert all documentation files to AsciiDoc and rename ccache.txt to manual.txt 2010-04-28 20:44:33 +02:00
Makefile.in Convert all documentation files to AsciiDoc and rename ccache.txt to manual.txt 2010-04-28 20:44:33 +02:00
manifest.c Handle __{DATE,FILE,TIME}__ macros in a better way 2010-04-28 08:56:06 +02:00
manifest.h Correctly handle direct mode hit, missing object file and differing cpp hash 2010-01-05 18:53:02 +01:00
manual.txt Disable compression by default 2010-04-29 18:25:26 +02:00
mdfour.c Switch license to GPLv3+ 2010-04-22 22:47:16 +02:00
mdfour.h Switch license to GPLv3+ 2010-04-22 22:47:16 +02:00
murmurhashneutral2.c First working version of the direct mode 2010-01-05 18:53:01 +01:00
murmurhashneutral2.h First working version of the direct mode 2010-01-05 18:53:01 +01:00
NEWS.txt Disable compression by default 2010-04-29 18:25:26 +02:00
perf.sh Perform a compilation to warm up the disk cache 2010-04-29 18:22:19 +02:00
README.txt Convert all documentation files to AsciiDoc and rename ccache.txt to manual.txt 2010-04-28 20:44:33 +02:00
snprintf.c Remove trailing whitespace 2010-01-05 18:53:01 +01:00
stats.c Add CCACHE_EXTRAFILES feature 2010-04-28 22:30:55 +02:00
test.sh Disable compression by default 2010-04-29 18:25:26 +02:00
unify.c Switch license to GPLv3+ 2010-04-22 22:47:16 +02:00
util.c Switch license to GPLv3+ 2010-04-22 22:47:16 +02:00

ccache README
=============


About
-----

ccache is a compiler cache. It speeds up recompilation of C/C++ code by caching
previous compiles and detecting when the same compile is being done again. The
main focus is to handle the GNU C/C++ compiler (GCC), but it may also work with
compilers that mimic GCC good enough.

Please see the manual page and documentation at http://ccache.samba.org for
more information.


Documentation
-------------

See the ccache(1) man page. It's also avaiable as manual.txt and manual.html.


Installation
------------

See INSTALL.txt or INSTALL.html.


Web site
--------

The main ccache web site is here:

    http://ccache.samba.org


Mailing list
------------

There is a mailing list for discussing usage and development of ccache:

    http://lists.samba.org/mailman/listinfo/ccache/

Anyone is welcome to join.


Bug reports
-----------

To submit a bug report or to search for existing reports, please visit this web
page:

    http://ccache.samba.org/bugs.html


Source code repository
----------------------

To get the very latest version of ccache directly from the source code
repository, use git:

    git clone git://git.samba.org/ccache.git

You can also browse the repository:

    http://gitweb.samba.org/?p=ccache.git


History
-------

ccache was originally written by Andrew Tridgell and is currently maintained by
Joel Rosdahl. ccache started out as a reimplementation of Erik Thiele's
``compilercache'' (see http://www.erikyyy.de/compilercache/) in C.

See also the NEWS file.


Copyright
---------

Copyright (C) 2002-2007 Andrew Tridgell
Copyright (C) 2009-2010 Joel Rosdahl

ccache may be used, modified and redistributed only under the terms of the GNU
General Public License version 3 or later, found in the file COPYING in this
distribution, or on this web page:

    http://www.fsf.org/licenses/gpl.html