Made the size target look at the ELF file, not the hex, as per Jared Szechy's patch. Craig Leres made a similar comment
This commit is contained in:
parent
c6fef7c499
commit
b15aa4e88f
1 changed files with 2 additions and 2 deletions
|
@ -679,8 +679,8 @@ clean:
|
|||
depends: $(DEPS)
|
||||
cat $(DEPS) > $(DEP_FILE)
|
||||
|
||||
size: $(OBJDIR) $(TARGET_HEX)
|
||||
$(SIZE) $(TARGET_HEX)
|
||||
size: $(OBJDIR) $(TARGET_ELF)
|
||||
$(SIZE) -C --mcu=$(MCU) $(TARGET_ELF)
|
||||
|
||||
show_boards:
|
||||
$(PARSE_BOARD_CMD) --boards
|
||||
|
|
Loading…
Reference in a new issue