1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-11-21 10:55:51 +02:00

allow various x86 models with --tune

Originally committed as revision 4230 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Måns Rullgård 2005-05-12 23:06:47 +00:00
parent 5b558574ba
commit efc39ba89a

5
configure vendored
View File

@ -691,8 +691,11 @@ 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)
CFLAGS="$CFLAGS -march=$tune"
;;
*)
echo "WARNING: unknown CPU "$tune", ignored"
echo "WARNING: unknown CPU \"$tune\", ignored"
;;
esac
fi