remove 2nd arch from ARCH_ARM_* defines
Users of ARCH_ARM_* defines don't care about first vs. second arch, set ARCH_ARM_* regardless of which arch is arm. Change-Id: I2ae83ec5c3f839ff91a0e352c95d76ec2cbd5dc5
This commit is contained in:
parent
5394bf1950
commit
ec14ce578b
|
@ -1,10 +1,10 @@
|
|||
# Configuration for Linux on ARM.
|
||||
# Generating binaries for the ARMv7-a architecture and higher with NEON
|
||||
#
|
||||
$(combo_2nd_arch_prefix)ARCH_ARM_HAVE_ARMV7A := true
|
||||
$(combo_2nd_arch_prefix)ARCH_ARM_HAVE_VFP := true
|
||||
$(combo_2nd_arch_prefix)ARCH_ARM_HAVE_VFP_D32 := true
|
||||
$(combo_2nd_arch_prefix)ARCH_ARM_HAVE_NEON := true
|
||||
ARCH_ARM_HAVE_ARMV7A := true
|
||||
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))
|
||||
arch_variant_cflags := -mcpu=cortex-a15
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
# Configuration for Linux on ARM.
|
||||
# Generating binaries for the ARMv7-a architecture and higher
|
||||
#
|
||||
$(combo_2nd_arch_prefix)ARCH_ARM_HAVE_ARMV7A := true
|
||||
$(combo_2nd_arch_prefix)ARCH_ARM_HAVE_VFP := true
|
||||
ARCH_ARM_HAVE_ARMV7A := true
|
||||
ARCH_ARM_HAVE_VFP := true
|
||||
|
||||
# Note: Hard coding the 'tune' value here is probably not ideal,
|
||||
# and a better solution should be found in the future.
|
||||
|
|
Loading…
Reference in New Issue