wok view ccache/description.txt @ rev 25283

updated roundup (1.6.1 -> 2.2.0)
author Hans-G?nter Theisgen
date Mon Jul 18 15:58:43 2022 +0100 (21 months ago)
parents
children
line source
1 Ccache is a compiler cache. It speeds up recompilation by caching
2 previous compilations and detecting when the same compilation is
3 being done again.
5 Features
7 - Supports GCC, Clang and other similar compilers.
8 - Works on Linux, macOS, other Unix-like operating systems and Windows.
9 - Understands C, C++, assembler, CUDA, Objective-C and Objective-C++.
10 - Supports secondary storage on HTTP, Redis or local filesystem,
11 optionally sharding data to a server cluster.
12 - Supports fast "direct" and "depend" modes that don't rely on using
13 the preprocessor.
14 - Supports compression using Zstandard.
15 - Checksums cache content using XXH3 to detect data corruption.
16 - Keeps statistics on hits and misses.
17 - Automatic cache size management.
18 - Easy installation.
19 - Low overhead.
20 - Support for rewriting absolute paths to relative in order to increase
21 the cache hit ratio.
22 - Optionally uses file cloning (AKA "reflinks") where possible
23 to avoid copies.
24 - Optionally uses hard links where possible to avoid copies.