1 # Configuration for Linux on ARM. 2 # Generating binaries for the ARMv5TE architecture and higher 3 # 4 5 # Note: Hard coding the 'tune' value here is probably not ideal, 6 # and a better solution should be found in the future. 7 # 8 arch_variant_cflags := \ 9 -march=armv5te \ 10 -mtune=xscale \ 11 -D__ARM_ARCH_5__ \ 12 -D__ARM_ARCH_5T__ \ 13 -D__ARM_ARCH_5E__ \ 14 -D__ARM_ARCH_5TE__ 15 16