17 lines
440 B
Makefile
17 lines
440 B
Makefile
# 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
|