wok diff ccache/description.txt @ rev 24863
updated lshw (8.02.18 -> 8.02.19.2)
author | Hans-G?nter Theisgen |
---|---|
date | Wed Mar 30 06:14:20 2022 +0100 (2022-03-30) |
parents | |
children |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/ccache/description.txt Wed Mar 30 06:14:20 2022 +0100 1.3 @@ -0,0 +1,24 @@ 1.4 +Ccache is a compiler cache. It speeds up recompilation by caching 1.5 +previous compilations and detecting when the same compilation is 1.6 +being done again. 1.7 + 1.8 +Features 1.9 + 1.10 +- Supports GCC, Clang and other similar compilers. 1.11 +- Works on Linux, macOS, other Unix-like operating systems and Windows. 1.12 +- Understands C, C++, assembler, CUDA, Objective-C and Objective-C++. 1.13 +- Supports secondary storage on HTTP, Redis or local filesystem, 1.14 + optionally sharding data to a server cluster. 1.15 +- Supports fast "direct" and "depend" modes that don't rely on using 1.16 + the preprocessor. 1.17 +- Supports compression using Zstandard. 1.18 +- Checksums cache content using XXH3 to detect data corruption. 1.19 +- Keeps statistics on hits and misses. 1.20 +- Automatic cache size management. 1.21 +- Easy installation. 1.22 +- Low overhead. 1.23 +- Support for rewriting absolute paths to relative in order to increase 1.24 + the cache hit ratio. 1.25 +- Optionally uses file cloning (AKA "reflinks") where possible 1.26 + to avoid copies. 1.27 +- Optionally uses hard links where possible to avoid copies.