summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Kostylev <michael.kostylev@gmail.com>2010-05-07 10:17:25 +0000
committerMåns Rullgård <mans@mansr.com>2010-05-07 10:17:25 +0000
commit26b7199e12a27dbac90ca43d8a2e5bf49b33f6c7 (patch)
treef739840171d44a2f08a15758abaa6cad90870889
parentefdc74ef198e9e73e63818f20417e4582b9b6a18 (diff)
SPARC: disable VIS for Niagara CPU
The Niagara/T1 supports only a subset of VIS, and even this is very slow. Patch by Michael Kostylev <michael kostylev gmail> Originally committed as revision 23045 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rwxr-xr-xconfigure4
1 files changed, 4 insertions, 0 deletions
diff --git a/configure b/configure
index 355cab1cc3..819d14b939 100755
--- a/configure
+++ b/configure
@@ -2018,6 +2018,10 @@ elif enabled x86; then
elif enabled sparc; then
case $cpu in
+ niagara)
+ cpuflags="-mcpu=$cpu"
+ disable vis
+ ;;
sparc64)
cpuflags="-mcpu=v9"
;;