wok annotate ccache/description.txt @ rev 25017

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