[avr] added missing mcu parameter to ASFLAGS in order to enable assembler compilation

This commit is contained in:
Enrico Joerns 2014-06-04 14:56:27 +02:00
parent 01bd045570
commit 351e4e9fba
1 changed files with 1 additions and 0 deletions

View File

@ -99,6 +99,7 @@ CFLAGSNO = -Wall -mmcu=$(MCU) -gdwarf-2 -fno-strict-aliasing \
-I. -I$(CONTIKI)/core -I$(CONTIKI_CPU) $(USB_INCLUDES) \
$(CONTIKI_PLAT_DEFS)
CFLAGS += $(CFLAGSNO) -O$(OPTI)
ASFLAGS += -mmcu=$(MCU)
ifndef BOOTLOADER_START
BOOTLOADER_START = 0x1F800
endif