aboutsummaryrefslogtreecommitdiff
path: root/src/arch
diff options
context:
space:
mode:
authorRonald G. Minnich <rminnich@gmail.com>2013-02-28 11:19:23 -0600
committerStefan Reinauer <stefan.reinauer@coreboot.org>2013-03-20 05:56:54 +0100
commit70ae9ecb9beed3964c215362494e58c6ef37f95e (patch)
tree158da149e3f2c558f6780a69cb2f7e68b0da921a /src/arch
parent9f3a7a3251f605a30464472e91c04a1dd8baf67e (diff)
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>
Diffstat (limited to 'src/arch')
-rw-r--r--src/arch/armv7/Makefile.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/arch/armv7/Makefile.inc b/src/arch/armv7/Makefile.inc
index 86011125ef..1ab0184b32 100644
--- a/src/arch/armv7/Makefile.inc
+++ b/src/arch/armv7/Makefile.inc
@@ -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
################################################################################