remove mcu argument for avr-size in makefile as it is not present in GNU Binutils 2.22
This commit is contained in:
parent
0894183991
commit
24280f95a5
2
Makefile
2
Makefile
@ -84,7 +84,7 @@ main.elf: $(OBJECTS)
|
|||||||
grbl.hex: main.elf
|
grbl.hex: main.elf
|
||||||
rm -f grbl.hex
|
rm -f grbl.hex
|
||||||
avr-objcopy -j .text -j .data -O ihex main.elf grbl.hex
|
avr-objcopy -j .text -j .data -O ihex main.elf grbl.hex
|
||||||
avr-size --format=berkeley --mcu=$(DEVICE) main.elf
|
avr-size --format=berkeley main.elf
|
||||||
# If you have an EEPROM section, you must also create a hex file for the
|
# If you have an EEPROM section, you must also create a hex file for the
|
||||||
# EEPROM and add it to the "flash" target.
|
# EEPROM and add it to the "flash" target.
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user