Skip to content

Commit

Permalink
kbuild: add -fverbose-asm to i386 Makefile
Browse files Browse the repository at this point in the history
Add -fverbose-asm to i386 Makefile rule for building .s files.  This makes
the assembler output much more readable for humans.

Suggested by Der Herr Hofrat <[email protected]>

Signed-off-by: Chuck Ebbert <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Sam Ravnborg <[email protected]>
  • Loading branch information
Chuck Ebbert authored and Sam Ravnborg committed Mar 12, 2006
1 parent ce56068 commit 7d18598
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/Makefile.build
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ $(multi-objs-y:.o=.s) : modname = $(modname-multi)
$(multi-objs-y:.o=.lst) : modname = $(modname-multi)

quiet_cmd_cc_s_c = CC $(quiet_modtag) $@
cmd_cc_s_c = $(CC) $(c_flags) -S -o $@ $<
cmd_cc_s_c = $(CC) $(c_flags) -fverbose-asm -S -o $@ $<

%.s: %.c FORCE
$(call if_changed_dep,cc_s_c)
Expand Down

0 comments on commit 7d18598

Please sign in to comment.