From 66eaf63d81bd00160e1b38a5703383c66669e23d Mon Sep 17 00:00:00 2001 From: Piotr Esden-Tempski Date: Mon, 14 May 2012 21:46:35 -0700 Subject: [PATCH] Added -x parameter to size, so that the code relocation is better visible. --- conf/Makefile.stm32 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conf/Makefile.stm32 b/conf/Makefile.stm32 index c70b55cb1e..e536d6968b 100644 --- a/conf/Makefile.stm32 +++ b/conf/Makefile.stm32 @@ -219,7 +219,7 @@ lss: $(OBJDIR)/$(TARGET).lss sym: $(OBJDIR)/$(TARGET).sym # Display size of file. -ELFSIZE = $(SIZE) -A $(OBJDIR)/$(TARGET).elf +ELFSIZE = $(SIZE) -Ax $(OBJDIR)/$(TARGET).elf sizebefore: @if [ -f $(OBJDIR)/$(TARGET).elf ]; then echo; echo "Previous size:"; $(ELFSIZE); fi