Commit 4cac0d55 authored by Diego Biurrun's avatar Diego Biurrun

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
parent 57b3c36d
...@@ -1079,7 +1079,7 @@ if test $tune != "generic"; then ...@@ -1079,7 +1079,7 @@ if test $tune != "generic"; then
CFLAGS="$CFLAGS -march=$tune" CFLAGS="$CFLAGS -march=$tune"
;; ;;
sparc64) sparc64)
CFLAGS="$CFLAGS -mcpu=ultrasparc -mtune=ultrasparc" CFLAGS="$CFLAGS -mcpu=v9 -mtune=v9"
;; ;;
*) *)
echo "WARNING: Unknown CPU \"$tune\", ignored." echo "WARNING: Unknown CPU \"$tune\", ignored."
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment