core: combo: arm: add cortex-a8 target
Change-Id: I83e409dd048762acbd2e2dec9b0095933141cff0
This commit is contained in:
parent
7358390697
commit
8805930b6f
|
@ -9,12 +9,16 @@ ARCH_ARM_HAVE_NEON := true
|
|||
ifeq ($(strip $(TARGET_CPU_VARIANT)), cortex-a15)
|
||||
arch_variant_cflags := -mcpu=cortex-a15
|
||||
else
|
||||
ifeq ($(strip $(TARGET_CPU_VARIANT)),cortex-a8)
|
||||
arch_variant_cflags := -mcpu=cortex-a8
|
||||
else
|
||||
ifeq ($(strip $(TARGET_CPU_VARIANT)),cortex-a7)
|
||||
arch_variant_cflags := -mcpu=cortex-a7
|
||||
else
|
||||
arch_variant_cflags := -march=armv7-a
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
|
||||
arch_variant_cflags += \
|
||||
-mfloat-abi=softfp \
|
||||
|
|
Loading…
Reference in New Issue