diff options
author | Måns Rullgård <mans@mansr.com> | 2010-08-26 13:46:45 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2010-08-26 13:46:45 +0000 |
commit | 0a6cf0afdc9dc1130f679ffdf42a75912d3a2bd1 (patch) | |
tree | d15243015480f3172b2b73db77785f2d50c9902d | |
parent | bcafde6174697e8605d2680d6896553302acb4dd (diff) | |
download | ffmpeg-0a6cf0afdc9dc1130f679ffdf42a75912d3a2bd1.tar.gz |
Disable MMX for i686 and pentiumpro
Originally committed as revision 24946 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rwxr-xr-x | configure | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -2105,8 +2105,14 @@ elif enabled x86; then cpuflags="-march=$cpu" disable cmov ;; + i686|pentiumpro) + cpuflags="-march=$cpu" + enable cmov + enable fast_cmov + disable mmx + ;; # targets that do support conditional mov (cmov) - i686|pentiumpro|pentium[23]|pentium-m|athlon|athlon-tbird|athlon-4|athlon-[mx]p|athlon64|k8|opteron|athlon-fx|core2|amdfam10|barcelona|atom) + pentium[23]|pentium-m|athlon|athlon-tbird|athlon-4|athlon-[mx]p|athlon64|k8|opteron|athlon-fx|core2|amdfam10|barcelona|atom) cpuflags="-march=$cpu" enable cmov enable fast_cmov |