mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH] kbuild: normalize paths in quiet compile output
@ 2026-06-08  7:00 Yang Wang
  2026-06-08 22:08 ` Nathan Chancellor
  0 siblings, 1 reply; 3+ messages in thread
From: Yang Wang @ 2026-06-08  7:00 UTC (permalink / raw)
  To: linux-kbuild, linux-kernel, amd-gfx; +Cc: nathan, nsc

Composite objects may contain relative components in their member object
paths. This can make quiet compile output include noisy dot-dot components,
for example:

  CC [M]  drivers/gpu/drm/amd/amdgpu/../amdkfd/kfd_module.o

Use the existing normalize_path helper for quiet C and assembly compile
output so the same target is printed as:

  CC [M]  drivers/gpu/drm/amd/amdkfd/kfd_module.o

The actual compile commands still use $@, so object paths, dependency
tracking and generated files are unchanged.

Signed-off-by: Yang Wang <kevinyang.wang@amd.com>
---
 scripts/Makefile.lib | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/scripts/Makefile.lib b/scripts/Makefile.lib
index 28a1c08e3b22..7d1589d993a8 100644
--- a/scripts/Makefile.lib
+++ b/scripts/Makefile.lib
@@ -239,7 +239,7 @@ ifdef CONFIG_LTO_CLANG
 cmd_ld_single = $(if $(objtool-enabled)$(is-single-obj-m), ; $(LD) $(ld_flags) -r -o $(tmp-target) $@; mv $(tmp-target) $@)
 endif
 
-quiet_cmd_cc_o_c = CC $(quiet_modtag)  $@
+quiet_cmd_cc_o_c = CC $(quiet_modtag)  $(call normalize_path,$@)
       cmd_cc_o_c = $(CC) $(c_flags) -c -o $@ $< \
 		$(cmd_ld_single) \
 		$(cmd_objtool)
@@ -254,7 +254,7 @@ define rule_cc_o_c
 	$(call cmd,warn_shared_object)
 endef
 
-quiet_cmd_as_o_S = AS $(quiet_modtag)  $@
+quiet_cmd_as_o_S = AS $(quiet_modtag)  $(call normalize_path,$@)
       cmd_as_o_S = $(CC) $(a_flags) -c -o $@ $< $(cmd_objtool)
 
 define rule_as_o_S
-- 
2.47.3


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2026-06-09  1:28 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-06-08  7:00 [PATCH] kbuild: normalize paths in quiet compile output Yang Wang
2026-06-08 22:08 ` Nathan Chancellor
2026-06-09  1:28   ` Wang, Yang(Kevin)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®