armv7-a-neon.mk revision 03d2aa4dd0adf85f240e98563ef399584baedb62
1# Configuration for Linux on ARM.
2# Generating binaries for the ARMv7-a architecture and higher with NEON
3#
4ARCH_ARM_HAVE_ARMV7A            := true
5ARCH_ARM_HAVE_VFP               := true
6ARCH_ARM_HAVE_VFP_D32           := true
7ARCH_ARM_HAVE_NEON              := true
8
9# Note: Hard coding the 'tune' value here is probably not ideal,
10# and a better solution should be found in the future.
11#
12arch_variant_cflags := \
13    -march=armv7-a \
14    -mfloat-abi=softfp \
15    -mfpu=neon
16
17arch_variant_ldflags := \
18	-Wl,--fix-cortex-a8
19