diff options
author | Diego Biurrun <diego@biurrun.de> | 2006-07-10 14:57:04 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2006-07-10 14:57:04 +0000 |
commit | 4cac0d5589ab1a076e977425925015f2c8e591a8 (patch) | |
tree | a60eb7539145581659b9a9743456c05f62b1f870 /configure | |
parent | 57b3c36d0f3b97c5ff6e07820ff935108a4c4b91 (diff) | |
download | ffmpeg-4cac0d5589ab1a076e977425925015f2c8e591a8.tar.gz |
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-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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." |