summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorChris Halse Rogers <chalserogers@gmail.com>2005-10-03 08:15:48 +0000
committerMåns Rullgård <mans@mansr.com>2005-10-03 08:15:48 +0000
commit5af837972c6583ae3f500b047b451dad7d3e64be (patch)
treef1e3515b735533a12724a5f5e257470395d07c60 /configure
parente47972625e780624b08127c00966ef93402c069e (diff)
This patch to configure makes the --tune option recognise k8 core cpus
(athlon64, opteron, etc). Currently configure just spits a warning, saying "unknown cpu type", and doesn't set the --march compile flag. Patch by Chris Halse Rogers <chalserogers at gmail com>. Originally committed as revision 4627 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index 94a94ddea6..5c7b1aa231 100755
--- a/configure
+++ b/configure
@@ -754,7 +754,7 @@ if test $tune != "generic"; then
TUNECPU=ppc970
POWERPCMODE="64bits"
;;
- i[3456]86|pentium|pentiumpro|pentium-mmx|pentium[234]|prescott|k6|k6-[23]|athlon|athlon-tbird|athlon-4|athlon-[mx]p|winchip-c6|winchip2|c3|nocona)
+ i[3456]86|pentium|pentiumpro|pentium-mmx|pentium[234]|prescott|k6|k6-[23]|athlon|athlon-tbird|athlon-4|athlon-[mx]p|winchip-c6|winchip2|c3|nocona|athlon64|k8|opteron|athlon-fx)
CFLAGS="$CFLAGS -march=$tune"
;;
*)