summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorChuck Ebbert <76306.1226@compuserve.com>2006-03-07 23:58:33 -0800
committerSam Ravnborg <sam@mars.ravnborg.org>2006-03-12 23:35:16 +0100
commit7d1859835cd6c0afd1773d249300da82b1b868a5 (patch)
tree88028900d69f1c619ce70cdabbea0defa6f87000 /scripts
parentce560686947fd50b30eaf42045554797f53949dd (diff)
downloadlinux-3.10-7d1859835cd6c0afd1773d249300da82b1b868a5.tar.gz
linux-3.10-7d1859835cd6c0afd1773d249300da82b1b868a5.tar.bz2
linux-3.10-7d1859835cd6c0afd1773d249300da82b1b868a5.zip
kbuild: add -fverbose-asm to i386 Makefile
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 <der.herr@hofr.at> Signed-off-by: Chuck Ebbert <76306.1226@compuserve.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
Diffstat (limited to 'scripts')
-rw-r--r--scripts/Makefile.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/Makefile.build b/scripts/Makefile.build
index 19ef2bc514c..e48e60da304 100644
--- a/scripts/Makefile.build
+++ b/scripts/Makefile.build
@@ -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)