summaryrefslogtreecommitdiffstats
path: root/Documentation/kbuild/llvm.rst
diff options
context:
space:
mode:
authorJavier Carrasco <javier.carrasco.cruz@gmail.com>2024-08-12 14:17:21 +0200
committerMasahiro Yamada <masahiroy@kernel.org>2024-08-16 14:34:12 +0200
commit145082ebfcf08f4fd254c467abf4aa58b4d38505 (patch)
treed8d3b47f21bde67224db653ba31fb533c1a40895 /Documentation/kbuild/llvm.rst
parentkbuild: avoid scripts/kallsyms parsing /dev/null (diff)
downloadlinux-145082ebfcf08f4fd254c467abf4aa58b4d38505.tar.xz
linux-145082ebfcf08f4fd254c467abf4aa58b4d38505.zip
Documentation/llvm: turn make command for ccache into code block
The command provided to use ccache with clang is not a literal code block. Once built, the documentation displays the '' symbols as a " character, which is wrong, and the command can not be applied as provided. Turn the command into a literal code block. Signed-off-by: Javier Carrasco <javier.carrasco.cruz@gmail.com> Reviewed-by: Nathan Chancellor <nathan@kernel.org> Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Diffstat (limited to 'Documentation/kbuild/llvm.rst')
-rw-r--r--Documentation/kbuild/llvm.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/kbuild/llvm.rst b/Documentation/kbuild/llvm.rst
index bb5c44f8bd1c..6dc66b4f31a7 100644
--- a/Documentation/kbuild/llvm.rst
+++ b/Documentation/kbuild/llvm.rst
@@ -126,7 +126,7 @@ Ccache
``ccache`` can be used with ``clang`` to improve subsequent builds, (though
KBUILD_BUILD_TIMESTAMP_ should be set to a deterministic value between builds
-in order to avoid 100% cache misses, see Reproducible_builds_ for more info):
+in order to avoid 100% cache misses, see Reproducible_builds_ for more info)::
KBUILD_BUILD_TIMESTAMP='' make LLVM=1 CC="ccache clang"