Fixed the ifeq that checks the cpu and defines it for the code by adding cortex-a15 check.

This commit is contained in:
Robbie VanVossen 2015-02-13 10:22:44 -05:00
parent 5e7030cb0a
commit a13f8053ac

View file

@ -354,10 +354,12 @@ ASFLAGS += -Wa,-mcpu=${CPU} -Wa,-march=${ARMV}
DEFINES += -D$(shell echo ${ARMV}|tr [:lower:] [:upper:]|tr - _)
ifeq (${CPU},cortex-a8)
DEFINES += -DARM_CORTEX_A8
else
endif
ifeq (${CPU},cortex-a9)
DEFINES += -DARM_CORTEX_A9
endif
ifeq (${CPU},cortex-a15)
DEFINES += -DARM_CORTEX_A15
endif
endif