From 24280f95a5b0c257b73a1755df376de44acff271 Mon Sep 17 00:00:00 2001 From: 0xPIT Date: Sun, 25 Aug 2013 14:54:10 +0200 Subject: [PATCH] remove mcu argument for avr-size in makefile as it is not present in GNU Binutils 2.22 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 3426db6..78c1032 100644 --- a/Makefile +++ b/Makefile @@ -84,7 +84,7 @@ main.elf: $(OBJECTS) grbl.hex: main.elf rm -f 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 # EEPROM and add it to the "flash" target.