Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1628410 > unrolled thread

[PATCH 1/1] objtool: make it visible in make V=1 output

Started byJiri Slaby <jslaby@suse.cz>
First post2017-04-21 20:20 +0200
Last post2017-04-21 20:20 +0200
Articles 1 — 1 participant

Back to article view | Back to linux.kernel


Contents

  [PATCH 1/1] objtool: make it visible in make V=1 output Jiri Slaby <jslaby@suse.cz> - 2017-04-21 20:20 +0200

#1628410 — [PATCH 1/1] objtool: make it visible in make V=1 output

FromJiri Slaby <jslaby@suse.cz>
Date2017-04-21 20:20 +0200
Subject[PATCH 1/1] objtool: make it visible in make V=1 output
Message-ID<tyLjY-Fc-25@gated-at.bofh.it>
It is currently impossible to see what is going on with objtool when
building, so call echo-cmd to see the actions:
  gcc -Wp,-MD,arch/x86/entry/.entry_64.o.d  -nostdinc -isystem ...
  ./tools/objtool/objtool check "arch/x86/entry/entry_64.o";

Signed-off-by: Jiri Slaby <jslaby@suse.cz>
Cc: Masahiro Yamada <yamada.masahiro@socionext.com>
Cc: Michal Marek <mmarek@suse.com>
Cc: linux-kbuild@vger.kernel.org
Cc: Josh Poimboeuf <jpoimboe@redhat.com>
---
 scripts/Makefile.build | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/scripts/Makefile.build b/scripts/Makefile.build
index d883116ebaa4..dbe0dde80b00 100644
--- a/scripts/Makefile.build
+++ b/scripts/Makefile.build
@@ -272,14 +272,14 @@ define rule_cc_o_c
 	$(call echo-cmd,checksrc) $(cmd_checksrc)			  \
 	$(call cmd_and_fixdep,cc_o_c)					  \
 	$(cmd_modversions_c)						  \
-	$(cmd_objtool)						          \
+	$(call echo-cmd,objtool) $(cmd_objtool)				  \
 	$(call echo-cmd,record_mcount) $(cmd_record_mcount)
 endef
 
 define rule_as_o_S
 	$(call cmd_and_fixdep,as_o_S)					  \
 	$(cmd_modversions_S)						  \
-	$(cmd_objtool)
+	$(call echo-cmd,objtool) $(cmd_objtool)
 endef
 
 # List module undefined symbols (or empty line if not enabled)
-- 
2.12.2

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web