summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorMåns Rullgård <mans@mansr.com>2008-10-12 23:10:48 +0000
committerMåns Rullgård <mans@mansr.com>2008-10-12 23:10:48 +0000
commitf2e49553de52d694f9207c877e85f95dfe7bb4e7 (patch)
tree694a66aab33b9a4cf4b169ba442892adca533e28 /configure
parentaa8bc0f10fd35b08ad622aa0551704ab6e933722 (diff)
Enable FAST_UNALIGNED on ARM variants that support it
Originally committed as revision 15609 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure6
1 files changed, 5 insertions, 1 deletions
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"
;;
*)