[FFmpeg-cvslog] r24946 - trunk/configure

mru subversion
Thu Aug 26 15:46:45 CEST 2010


Author: mru
Date: Thu Aug 26 15:46:45 2010
New Revision: 24946

Log:
Disable MMX for i686 and pentiumpro

Modified:
   trunk/configure

Modified: trunk/configure
==============================================================================
--- trunk/configure	Thu Aug 26 14:52:10 2010	(r24945)
+++ trunk/configure	Thu Aug 26 15:46:45 2010	(r24946)
@@ -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



More information about the ffmpeg-cvslog mailing list