Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ec14ce57 authored by Colin Cross's avatar Colin Cross
Browse files

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
parent 5394bf19
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
# 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
+2 −2
Original line number Diff line number Diff line
# 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.