Enable FAST_UNALIGNED on ARM variants that support it

Originally committed as revision 15609 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Måns Rullgård 2008-10-12 23:10:48 +00:00
parent aa8bc0f10f
commit f2e49553de

6
configure vendored
View File

@ -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"
;;
*)