diff options
author | Måns Rullgård <mans@mansr.com> | 2010-01-18 01:25:57 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2010-01-18 01:25:57 +0000 |
commit | 8d072dd2a96dc1ed7c1a65d49361311db71f5bfb (patch) | |
tree | deb57bdc13c94d85e21d1c8c11b426a706ac1cb3 | |
parent | 7da0d82104866b6c10104ce5735d3beaf77d2889 (diff) | |
download | ffmpeg-8d072dd2a96dc1ed7c1a65d49361311db71f5bfb.tar.gz |
Only set HAVE_MMX when a supported CPU is specified
Originally committed as revision 21277 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rwxr-xr-x | configure | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -1789,8 +1789,12 @@ case $cpu in cpuflags="-mcpu=cell" enable ldbrx ;; + i[345]86|pentium) + cpuflags="-march=$cpu" + disable mmx + ;; # targets that do NOT support conditional mov (cmov) - i[345]86|pentium|pentium-mmx|k6|k6-[23]|winchip-c6|winchip2|c3) + pentium-mmx|k6|k6-[23]|winchip-c6|winchip2|c3) cpuflags="-march=$cpu" disable cmov ;; |