From 11120240046dc9079a07188b526220109650b3b0 Mon Sep 17 00:00:00 2001 From: Jul Lang Date: Sun, 1 Feb 2026 22:42:38 +0100 Subject: [PATCH] docs: fix examples showing an xz-compress toolchain archive Only gzip is currently supported. --- docs/DistributedQuickstart.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/DistributedQuickstart.md b/docs/DistributedQuickstart.md index dbcc8afa3..a3f73d8db 100644 --- a/docs/DistributedQuickstart.md +++ b/docs/DistributedQuickstart.md @@ -162,7 +162,7 @@ On Linux and macOS: [[dist.toolchains]] type = "path_override" compiler_executable = "/home/me/.mozbuild/clang/bin/clang" -archive = "/home/me/.mozbuild/toolchains/33d92fcd79ffef6e-clang-dist-toolchain.tar.xz" +archive = "/home/me/.mozbuild/toolchains/33d92fcd79ffef6e-clang-dist-toolchain.tar.gz" archive_compiler_executable = "/builds/worker/toolchains/clang/bin/clang" ``` @@ -172,7 +172,7 @@ On Windows: [[dist.toolchains]] type = "path_override" compiler_executable = "C:/clang/bin\\clang-cl.exe" -archive = "C:/toolchains/33d92fcd79ffef6e-clang-dist-toolchain.tar.xz" +archive = "C:/toolchains/33d92fcd79ffef6e-clang-dist-toolchain.tar.gz" archive_compiler_executable = "/builds/worker/toolchains/clang/bin/clang" ``` @@ -180,7 +180,7 @@ Where: - `compiler_executable` identifies the path that sccache will match against to activate this configuration (you need to be careful on Windows - paths can have slashes in both directions, and you may need to escape backslashes, as in the example) - - `archive` is the compressed tar archive containing the compiler toolchain to distribute + - `archive` is the gzip-compressed tar archive containing the compiler toolchain to distribute when `compiler_executable` is matched - `archive_compiler_executable` is the path within the archive the distributed compilation should invoke