From 81024b89f62904bb052b08b18decd59d95e09076 Mon Sep 17 00:00:00 2001 From: alex Date: Sat, 27 Dec 2003 19:27:59 +0000 Subject: [PATCH] optimizing for cpus on irix git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@11690 b3059339-0415-0410-9bf9-f77b7e298cf2 --- configure | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/configure b/configure index b9f30b6d6a..3077f26767 100755 --- a/configure +++ b/configure @@ -971,6 +971,21 @@ EOF _march='' _mcpu='' _optimizing='' + + if irix ; then + echocheck "CPU type" + proc=`hinv -c processor | grep CPU | cut -d " " -f3` + case "`echo $proc`" in + R3000) _march='-mips1' _mcpu='-mtune=r2000' ;; + R4000) _march='-mips3' _mcpu='-mtune=r4000' ;; + R4400) _march='-mips3' _mcpu='-mtune=r4400' ;; + R4600) _march='-mips3' _mcpu='-mtune=r4600' ;; + R5000) _march='-mips4' _mcpu='-mtune=r5000' ;; + R8000|R10000|R12000|R14000|R16000) _march='-mips4' _mcpu='-mtune=r8000' ;; + esac + echores "$proc" + fi + ;; hppa)