OSDN Git Service

eclair snapshot
[android-x86/build.git] / core / combo / arch / arm / armv5te.mk
1 # Configuration for Linux on ARM.
2 # Generating binaries for the ARMv5TE architecture and higher
3 #
4 ARCH_ARM_HAVE_THUMB_SUPPORT     := true
5 ARCH_ARM_HAVE_FAST_INTERWORKING := true
6 ARCH_ARM_HAVE_64BIT_DATA        := true
7 ARCH_ARM_HAVE_HALFWORD_MULTIPLY := true
8 ARCH_ARM_HAVE_CLZ               := true
9 ARCH_ARM_HAVE_FFS               := true
10
11 # Note: Hard coding the 'tune' value here is probably not ideal,
12 # and a better solution should be found in the future.
13 #
14 arch_variant_cflags := \
15     -march=armv5te \
16     -mtune=xscale  \
17     -D__ARM_ARCH_5__ \
18     -D__ARM_ARCH_5T__ \
19     -D__ARM_ARCH_5E__ \
20     -D__ARM_ARCH_5TE__
21