Browse Source

Disable MMX for i686 and pentiumpro

Originally committed as revision 24946 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/n0.8
Måns Rullgård 14 years ago
parent
commit
0a6cf0afdc
1 changed files with 7 additions and 1 deletions
  1. +7
    -1
      configure

+ 7
- 1
configure View File

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


Loading…
Cancel
Save