summaryrefslogtreecommitdiff
path: root/Documentation
diff options
context:
space:
mode:
authorFangrui Song <maskray@google.com>2020-04-02 10:38:42 -0700
committerBruno Martins <bgcngm@gmail.com>2022-10-28 15:57:24 +0100
commitb891e8fdc46636722509c1b9341d4ca09232578f (patch)
treec179a8ad36a7cdd7260f34c8682a391e992b80b6 /Documentation
parent75d6fa8368a87210aae10d166941a6cbe7cf71db (diff)
BACKPORT: Documentation/llvm: fix the name of llvm-size
The tool is called llvm-size, not llvm-objsize. Fixes: fcf1b6a35c16 ("Documentation/llvm: add documentation on building w/ Clang/LLVM") Signed-off-by: Fangrui Song <maskray@google.com> Reviewed-by: Nick Desaulniers <ndesaulniers@google.com> Reviewed-by: Nathan Chancellor <natechancellor@gmail.com> Signed-off-by: Masahiro Yamada <masahiroy@kernel.org> (cherry picked from commit 0f44fbc162b737ff6251ae248184390ae2279fee) Change-Id: Ib6ff2a256b55983d0a3e9bb10f53f7a5c3c214d2
Diffstat (limited to 'Documentation')
-rw-r--r--Documentation/kbuild/llvm.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/kbuild/llvm.txt b/Documentation/kbuild/llvm.txt
index 0c30444a7368..d469accd5fa3 100644
--- a/Documentation/kbuild/llvm.txt
+++ b/Documentation/kbuild/llvm.txt
@@ -51,7 +51,7 @@ LLVM has substitutes for GNU binutils utilities. These can be invoked as
additional parameters to [make]{.title-ref}.
> make CC=clang AS=clang LD=ld.lld AR=llvm-ar NM=llvm-nm STRIP=llvm-strip \\
-> OBJCOPY=llvm-objcopy OBJDUMP=llvm-objdump OBJSIZE=llvm-objsize \\
+> OBJCOPY=llvm-objcopy OBJDUMP=llvm-objdump OBJSIZE=llvm-size \\
> READELF=llvm-readelf HOSTCC=clang HOSTCXX=clang++ HOSTAR=llvm-ar \\
> HOSTLD=ld.lld