OSDN Git Service

Select the arch_variant_cflags for the 2nd arch.
authorYing Wang <wangying@google.com>
Fri, 7 Feb 2014 18:40:37 +0000 (10:40 -0800)
committerYing Wang <wangying@google.com>
Fri, 7 Feb 2014 18:44:10 +0000 (10:44 -0800)
Change-Id: Id2f9d7073a4aae3ba0fe5e5464045761f4d42b4e

core/combo/arch/arm/armv7-a-neon.mk

index 1105330..a021258 100644 (file)
@@ -6,13 +6,13 @@ ARCH_ARM_HAVE_VFP               := true
 ARCH_ARM_HAVE_VFP_D32           := true
 ARCH_ARM_HAVE_NEON              := true
 
-ifeq ($(TARGET_CPU_VARIANT),$(filter $(TARGET_CPU_VARIANT),cortex-a15 krait))
+ifneq (,$(filter cortex-a15 krait,$(TARGET_$(combo_2nd_arch_prefix)CPU_VARIANT)))
        arch_variant_cflags := -mcpu=cortex-a15
 else
-ifeq ($(strip $(TARGET_CPU_VARIANT)),cortex-a8)
+ifeq ($(strip $(TARGET_$(combo_2nd_arch_prefix)CPU_VARIANT)),cortex-a8)
        arch_variant_cflags := -mcpu=cortex-a8
 else
-ifeq ($(strip $(TARGET_CPU_VARIANT)),cortex-a7)
+ifeq ($(strip $(TARGET_$(combo_2nd_arch_prefix)CPU_VARIANT)),cortex-a7)
        arch_variant_cflags := -mcpu=cortex-a7
 else
        arch_variant_cflags := -march=armv7-a