From: Joel Rosdahl Date: Sun, 26 Oct 2025 08:06:29 +0000 (+0100) Subject: docs: Update URLs in manual and news X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1a97acb055fcaf9614f533b03409f072c033d9dd;p=thirdparty%2Fccache.git docs: Update URLs in manual and news --- diff --git a/doc/manual.adoc b/doc/manual.adoc index 28500cda..32a55ae3 100644 --- a/doc/manual.adoc +++ b/doc/manual.adoc @@ -693,7 +693,7 @@ Semantics of *compression_level*: *1*. -- + -See the http://zstd.net[Zstandard documentation] for more information. +See the https://facebook.github.io/zstd/[Zstandard documentation] for more information. [#config_cpp_extension] *cpp_extension* (*CCACHE_EXTENSION*):: @@ -1602,8 +1602,9 @@ output. It works by creating a unique hash (the "`input hash`") from various information that affects the compilation. When the same hash is encountered again, ccache can supply all the correct compiler outputs from the cache. -For hashing, ccache uses BLAKE3, a fast cryptographic hash algorithm. For data -integrity, cached data is protected with XXH3 checksums to detect corruption. +For hashing, ccache uses https://blake3.io[BLAKE3], a fast cryptographic hash +algorithm. For data integrity, cached data is protected with +https://xxhash.com[XXH3] checksums to detect corruption. Ccache has two strategies for gathering the information used to create cache lookup keys: diff --git a/doc/news.adoc b/doc/news.adoc index 54e9c857..18acd822 100644 --- a/doc/news.adoc +++ b/doc/news.adoc @@ -2475,17 +2475,17 @@ Release date: 2020-10-18 locality. - Added compression of result and manifest files using the - http://zstd.net[Zstandard] algorithm. Compression is enabled by default with - compression level 1. This makes ccache able to store more data in the cache. - Previously compression using Deflate (zlib) was available but disabled by - default. Files can be recompressed with another compression level later with - the `-X/--recompress` option described further below. + https://facebook.github.io/zstd/[Zstandard] algorithm. Compression is enabled + by default with compression level 1. This makes ccache able to store more data + in the cache. Previously compression using Deflate (zlib) was available but + disabled by default. Files can be recompressed with another compression level + later with the `-X/--recompress` option described further below. - Changed from MD4 to https://blake3.io[BLAKE3] for hashing input. This improves performance and reduces the risk of hash collisions. - Added checksumming of result and manifest files using the - http://xxhash.com[XXH3] algorithm to detect data corruption. + https://xxhash.com[XXH3] algorithm to detect data corruption. - Ccache now follows the https://specifications.freedesktop.org/basedir-spec/[XDG base directory @@ -4263,7 +4263,7 @@ General - Added support for long command-line options. - A `CACHEDIR.TAG` file is now created in the cache directory. See - . + . - Messages printed to the debug log (specified by `CCACHE_LOGFILE`) have been improved.