summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2006-07-10 14:57:04 +0000
committerDiego Biurrun <diego@biurrun.de>2006-07-10 14:57:04 +0000
commit4cac0d5589ab1a076e977425925015f2c8e591a8 (patch)
treea60eb7539145581659b9a9743456c05f62b1f870 /configure
parent57b3c36d0f3b97c5ff6e07820ff935108a4c4b91 (diff)
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
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index 271723760f..641861d047 100755
--- a/configure
+++ b/configure
@@ -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."