diff options
author | Chuck Ebbert <76306.1226@compuserve.com> | 2006-03-08 02:58:33 -0500 |
---|---|---|
committer | Sam Ravnborg <sam@mars.ravnborg.org> | 2006-03-12 17:35:16 -0500 |
commit | 7d1859835cd6c0afd1773d249300da82b1b868a5 (patch) | |
tree | 88028900d69f1c619ce70cdabbea0defa6f87000 /scripts/Makefile.build | |
parent | ce560686947fd50b30eaf42045554797f53949dd (diff) |
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/Makefile.build')
-rw-r--r-- | scripts/Makefile.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/Makefile.build b/scripts/Makefile.build index 19ef2bc514c2..e48e60da3040 100644 --- a/scripts/Makefile.build +++ b/scripts/Makefile.build | |||
@@ -129,7 +129,7 @@ $(multi-objs-y:.o=.s) : modname = $(modname-multi) | |||
129 | $(multi-objs-y:.o=.lst) : modname = $(modname-multi) | 129 | $(multi-objs-y:.o=.lst) : modname = $(modname-multi) |
130 | 130 | ||
131 | quiet_cmd_cc_s_c = CC $(quiet_modtag) $@ | 131 | quiet_cmd_cc_s_c = CC $(quiet_modtag) $@ |
132 | cmd_cc_s_c = $(CC) $(c_flags) -S -o $@ $< | 132 | cmd_cc_s_c = $(CC) $(c_flags) -fverbose-asm -S -o $@ $< |
133 | 133 | ||
134 | %.s: %.c FORCE | 134 | %.s: %.c FORCE |
135 | $(call if_changed_dep,cc_s_c) | 135 | $(call if_changed_dep,cc_s_c) |