From f2e49553de52d694f9207c877e85f95dfe7bb4e7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A5ns=20Rullg=C3=A5rd?= Date: Sun, 12 Oct 2008 23:10:48 +0000 Subject: [PATCH] Enable FAST_UNALIGNED on ARM variants that support it Originally committed as revision 15609 to svn://svn.ffmpeg.org/ffmpeg/trunk --- configure | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/configure b/configure index adebac0559..b0b6229cc5 100755 --- a/configure +++ b/configure @@ -1518,7 +1518,11 @@ if test $cpu != "generic"; then sparc64) add_cflags "-mcpu=v9" ;; - arm*|cortex*) + arm11*|cortex*) + add_cflags "-mcpu=$cpu" + enable fast_unaligned + ;; + arm*) add_cflags "-mcpu=$cpu" ;; *)