Skip to content
Snippets Groups Projects
Commit a13f8053 authored by Robbie VanVossen's avatar Robbie VanVossen
Browse files

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

parent 5e7030cb
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment