ARM/IntegratorCP: Assembler flags require "assembler-with-cpp" since renaming .S files to .s.

This commit is contained in:
Kelvin Lawson
2013-02-27 14:37:20 +00:00
parent 30183b1b9f
commit 3e41694c37

View File

@@ -15,7 +15,7 @@ LN = arm-none-eabi-gcc
AS = arm-none-eabi-gcc
CFLAGS := $(CFLAGS) -Wall -g -c -mcpu=arm926ej-s -ffreestanding
AFLAGS := $(AFLAGS) -Wall -g -c -mcpu=arm926ej-s -ffreestanding
AFLAGS := $(AFLAGS) -Wall -g -c -mcpu=arm926ej-s -ffreestanding -x assembler-with-cpp
LFLAGS := $(LFLAGS) -Wall -mcpu=arm926ej-s -Wl,-Map=system.map -Tsystem.ld
CDEFS := $(CDEFS) -DATOMTHREADS_TEST='"$(TEST_NAME)"'