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:
parent
9f3a7a3251
commit
70ae9ecb9b
|
@ -107,7 +107,7 @@ stages_o = $(obj)/arch/armv7/stages.o
|
||||||
|
|
||||||
$(stages_o): $(stages_c)
|
$(stages_o): $(stages_c)
|
||||||
@printf " CC $(subst $(obj)/,,$(@))\n"
|
@printf " CC $(subst $(obj)/,,$(@))\n"
|
||||||
$(CC) -Wa,-acdlns -I. $(INCLUDES) -c -o $@ $< -marm
|
$(CC) -I. $(INCLUDES) -c -o $@ $< -marm
|
||||||
|
|
||||||
|
|
||||||
################################################################################
|
################################################################################
|
||||||
|
|
Loading…
Reference in New Issue