am 47e27a4f: Merge "core: combo: arm: use appropriate mcpu flags for cortex-a7" into jb-mr2-dev

* commit '47e27a4f9ca67facd6501bf24314e6e02117b0d4':
  core: combo: arm: use appropriate mcpu flags for cortex-a7
This commit is contained in:
Dima Zavin 2013-03-25 19:43:40 +00:00 committed by Android Git Automerger
commit 0cfdb4e965

View file

@ -8,9 +8,13 @@ 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-a7)
arch_variant_cflags := -mcpu=cortex-a7
else
arch_variant_cflags := -march=armv7-a
endif
endif
arch_variant_cflags += \
-mfloat-abi=softfp \