[FFmpeg-cvslog] configure: rework parsing --cpu arguments to support all features unless blacklisted

James Almer git at videolan.org
Tue Sep 19 18:48:15 EEST 2023


ffmpeg | branch: master | James Almer <jamrial at gmail.com> | Sun Sep 17 15:43:23 2023 -0300| [abc346de735cae1b9316b7b853aa2d2661ab40fb] | committer: James Almer

configure: rework parsing --cpu arguments to support all features unless blacklisted

Keeping an ever growing list of CPUs just to pass -march to the compiler and
enable fast_cmov is a waste of time. Every CPU we know has limitations is
already handled here, so just fallback to enabling everything when a passed in
argument is not one of those.

This will enable optimizations for CPU architectures released in the past 7 or
so years with supported GCC and clang compilers when used as argument in
configure, instead of silently ignoring them.

Signed-off-by: James Almer <jamrial at gmail.com>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=abc346de735cae1b9316b7b853aa2d2661ab40fb
---

 configure | 14 ++++++--------
 1 file changed, 6 insertions(+), 8 deletions(-)

diff --git a/configure b/configure
index 48fee07f81..e40dcce09e 100755
--- a/configure
+++ b/configure
@@ -5445,20 +5445,18 @@ elif enabled x86; then
             cpuflags="-march=$cpu"
             disable i686
         ;;
-        # targets that do support nopl and conditional mov (cmov)
-        i686|pentiumpro|pentium[23]|pentium-m|athlon|athlon-tbird|athlon-4|athlon-[mx]p|athlon64*|k8*|opteron*|athlon-fx\
-        |core*|atom|bonnell|nehalem|westmere|silvermont|sandybridge|ivybridge|haswell|broadwell|skylake*|knl\
-        |amdfam10|barcelona|b[dt]ver*|znver*)
-            cpuflags="-march=$cpu"
-            enable i686
-            enable fast_cmov
-        ;;
         # targets that do support conditional mov but on which it's slow
         pentium4|pentium4m|prescott|nocona)
             cpuflags="-march=$cpu"
             enable i686
             disable fast_cmov
         ;;
+        # everything else should support nopl and conditional mov (cmov)
+        *)
+            cpuflags="-march=$cpu"
+            enable i686
+            enable fast_cmov
+        ;;
     esac
 
 fi



More information about the ffmpeg-cvslog mailing list