summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMåns Rullgård <mans@mansr.com>2009-06-30 12:46:09 +0000
committerMåns Rullgård <mans@mansr.com>2009-06-30 12:46:09 +0000
commitd6ced963176f00569e4ca1fcd196afa1742a7b2c (patch)
treed56f529de618593fa6b79ba3c1b9ff1e4c05b44d
parent8d8409ca9ffd56eea6a8ae1963c15492a75af0bd (diff)
ARM: enable fast_unaligned when --cpu=armv[67] is specified
Originally committed as revision 19308 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rwxr-xr-xconfigure4
1 files changed, 4 insertions, 0 deletions
diff --git a/configure b/configure
index 818b50a92f..6b74a029d0 100755
--- a/configure
+++ b/configure
@@ -1882,6 +1882,10 @@ if test $cpu != "generic"; then
add_cflags -mcpu=$cpu
enable fast_unaligned
;;
+ armv[67]*)
+ add_cflags -march=$cpu
+ enable fast_unaligned
+ ;;
armv*)
add_cflags -march=$cpu
;;