diff options
author | Måns Rullgård <mans@mansr.com> | 2008-10-12 23:10:48 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2008-10-12 23:10:48 +0000 |
commit | f2e49553de52d694f9207c877e85f95dfe7bb4e7 (patch) | |
tree | 694a66aab33b9a4cf4b169ba442892adca533e28 /configure | |
parent | aa8bc0f10fd35b08ad622aa0551704ab6e933722 (diff) | |
download | ffmpeg-f2e49553de52d694f9207c877e85f95dfe7bb4e7.tar.gz |
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-x | configure | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -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" ;; *) |