core: combo: arm: add cortex-a8 target

Change-Id: I83e409dd048762acbd2e2dec9b0095933141cff0
This commit is contained in:
Rom Lemarchand 2013-05-03 05:41:01 -07:00
parent 7358390697
commit 8805930b6f
1 changed files with 4 additions and 0 deletions

View File

@ -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 \