wok diff ccache/description.txt @ rev 25037

Up glza (0.11.4)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat May 21 21:38:29 2022 +0000 (24 months ago)
parents
children
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/ccache/description.txt	Sat May 21 21:38:29 2022 +0000
     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.