Browse Source

Enable FAST_UNALIGNED on ARM variants that support it

Originally committed as revision 15609 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Måns Rullgård 17 years ago
parent
commit
f2e49553de
1 changed files with 5 additions and 1 deletions
  1. +5
    -1
      configure

+ 5
- 1
configure 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"
;;
*)


Loading…
Cancel
Save