summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2006-07-10 00:12:38 +0000
committerDiego Biurrun <diego@biurrun.de>2006-07-10 00:12:38 +0000
commitd7b34d08317ec559c6ae19f1b63c1f4845c0fd27 (patch)
treee8f8d3181f52582399fa96e02d0b8d19fc15732c /configure
parentd2a067d1d9011bf1015fd23efcbfb20cd4f79e1a (diff)
Move UltraSparc CFLAG addition to configure.
Originally committed as revision 5698 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure3
1 files changed, 3 insertions, 0 deletions
diff --git a/configure b/configure
index 3b3e8606c9..2dd5bf976c 100755
--- a/configure
+++ b/configure
@@ -1048,6 +1048,9 @@ if test $tune != "generic"; then
i[3456]86|pentium|pentiumpro|pentium-mmx|pentium[234]|prescott|k6|k6-[23]|athlon|athlon-tbird|athlon-4|athlon-[mx]p|winchip-c6|winchip2|c3|nocona|athlon64|k8|opteron|athlon-fx)
CFLAGS="$CFLAGS -march=$tune"
;;
+ sparc64)
+ CFLAGS="$CFLAGS -mcpu=ultrasparc -mtune=ultrasparc"
+ ;;
*)
echo "WARNING: Unknown CPU \"$tune\", ignored."
;;