diff options
author | Masahiro Yamada <masahiroy@kernel.org> | 2020-09-24 17:45:46 +0200 |
---|---|---|
committer | Masahiro Yamada <masahiroy@kernel.org> | 2020-10-09 16:57:30 +0200 |
commit | 08beb669cb3f11ff5e05055bcab5e29385e69f98 (patch) | |
tree | 870bf0c04f67a3fc6028e843624926d985f4de88 /scripts/kconfig/tests | |
parent | kbuild: explicitly specify the build id style (diff) | |
download | linux-08beb669cb3f11ff5e05055bcab5e29385e69f98.tar.xz linux-08beb669cb3f11ff5e05055bcab5e29385e69f98.zip |
kbuild: split the build log of kallsyms
Currently, the build log shows KSYM + object name.
Precisely speaking, kallsyms generates a .S file and then the compiler
compiles it into a .o file. Split the build log into two.
[Before]
GEN modules.builtin
LD .tmp_vmlinux.kallsyms1
KSYM .tmp_vmlinux.kallsyms1.o
LD .tmp_vmlinux.kallsyms2
KSYM .tmp_vmlinux.kallsyms2.o
LD vmlinux
[After]
GEN modules.builtin
LD .tmp_vmlinux.kallsyms1
KSYMS .tmp_vmlinux.kallsyms1.S
AS .tmp_vmlinux.kallsyms1.o
LD .tmp_vmlinux.kallsyms2
KSYMS .tmp_vmlinux.kallsyms2.S
AS .tmp_vmlinux.kallsyms2.o
LD vmlinux
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Diffstat (limited to 'scripts/kconfig/tests')
0 files changed, 0 insertions, 0 deletions