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

Not every 64 bit SPARC is an UltraSPARC so optimize for v9 instead.

hint by Derek E. Lewis, dlewis_at_solnetworks net

Originally committed as revision 5706 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Diego Biurrun 2006-07-10 14:57:04 +00:00
parent 57b3c36d0f
commit 4cac0d5589

2
configure vendored
View File

@ -1079,7 +1079,7 @@ if test $tune != "generic"; then
CFLAGS="$CFLAGS -march=$tune"
;;
sparc64)
CFLAGS="$CFLAGS -mcpu=ultrasparc -mtune=ultrasparc"
CFLAGS="$CFLAGS -mcpu=v9 -mtune=v9"
;;
*)
echo "WARNING: Unknown CPU \"$tune\", ignored."