1
mirror of https://git.videolan.org/git/ffmpeg.git synced 2024-08-07 10:04:15 +02:00

ARM: enable fast_unaligned when --cpu=armv[67] is specified

Originally committed as revision 19308 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Måns Rullgård 2009-06-30 12:46:09 +00:00
parent 8d8409ca9f
commit d6ced96317

4
configure vendored
View File

@ -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
;;