blob: 4a519770f5a266411848e8916eb2212d67ec31a9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# Configuration for Linux on ARM.
# Generating binaries for the ARMv7-a architecture and higher
#
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.
#
arch_variant_cflags := \
-march=armv7-a \
-mfloat-abi=softfp \
-mfpu=vfpv3-d16
arch_variant_ldflags := \
-Wl,--fix-cortex-a8
|