ARM: remove assembly code dump when stages.o is built

For diagnostic purposes we had been dumping the assembly
code when stages.o was built. We've past the need to do this
and it's confusing to watch.

Change-Id: Ib84cb73ed9dad3454efcb2be90d990ce88575229
Signed-off-by: Ronald G. Minnich <rminnich@gmail.com>
Reviewed-on: http://review.coreboot.org/2555
Tested-by: build bot (Jenkins)
Reviewed-by: David Hendricks <dhendrix@chromium.org>
This commit is contained in:
Ronald G. Minnich 2013-02-28 11:19:23 -06:00 committed by Stefan Reinauer
parent 9f3a7a3251
commit 70ae9ecb9b
1 changed files with 1 additions and 1 deletions

View File

@ -107,7 +107,7 @@ stages_o = $(obj)/arch/armv7/stages.o
$(stages_o): $(stages_c)
@printf " CC $(subst $(obj)/,,$(@))\n"
$(CC) -Wa,-acdlns -I. $(INCLUDES) -c -o $@ $< -marm
$(CC) -I. $(INCLUDES) -c -o $@ $< -marm
################################################################################