summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorJanne Grunau <janne-libav@jannau.net>2013-12-12 17:45:32 +0100
committerJanne Grunau <janne-libav@jannau.net>2014-01-14 22:19:27 +0100
commit032d4da8af353e32ab5c86ee3a210f6065921a4a (patch)
tree036afe3be89d79fe733e8aad86b7ca36aba49a23 /configure
parent8b4119187b62d6932e07aded11d33d3b24e1b42f (diff)
aarch64: configure: set arch dependent features
Stack is always 16 byte aligned and clz, 64bit operations and unaligned memory access are fast in aarch64 mode on ARMv8. Signed-off-by: Janne Grunau <janne-libav@jannau.net>
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure8
1 files changed, 4 insertions, 4 deletions
diff --git a/configure b/configure
index 9866357e19..725b63a1f2 100755
--- a/configure
+++ b/configure
@@ -1583,10 +1583,10 @@ for ext in $(filter_out mmx $ARCH_EXT_LIST_X86); do
eval ${ext}_suggest='"${ext}_external ${ext}_inline"'
done
-aligned_stack_if_any="ppc x86"
-fast_64bit_if_any="alpha ia64 mips64 parisc64 ppc64 sparc64 x86_64"
-fast_clz_if_any="alpha avr32 mips ppc x86"
-fast_unaligned_if_any="ppc x86"
+aligned_stack_if_any="aarch64 ppc x86"
+fast_64bit_if_any="aarch64 alpha ia64 mips64 parisc64 ppc64 sparc64 x86_64"
+fast_clz_if_any="aarch64 alpha avr32 mips ppc x86"
+fast_unaligned_if_any="aarch64 ppc x86"
need_memalign="altivec neon sse"