Skip to content
Snippets Groups Projects
Commit 4cac0d55 authored by Diego Biurrun's avatar Diego Biurrun
Browse files

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
No related branches found
No related tags found
No related merge requests found
...@@ -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."
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment