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