From 5275ac0db4922ca5f1d27469ba1185890cab687b Mon Sep 17 00:00:00 2001 From: Tomas Lindquist Olsen Date: Sun, 1 Mar 2009 22:27:37 +0100 Subject: [PATCH] Added script to find the alternative triple of the host. --- find-alt-triple.sh | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100755 find-alt-triple.sh diff --git a/find-alt-triple.sh b/find-alt-triple.sh new file mode 100755 index 00000000..3d0a3f05 --- /dev/null +++ b/find-alt-triple.sh @@ -0,0 +1,19 @@ +#!/bin/sh + +HOST_TARGET=$1 + +[ "$HOST_TARGET" == "" ] && exit 1 + +REST=`echo $HOST_TARGET | sed -e 's/[a-zA-Z0-9_]*\(\-.*\)/\1/'` +X86=`echo $HOST_TARGET | sed -e 's/\(i[3-9]86\)\-.*/\1/'` +X86_64=`echo $HOST_TARGET | sed -e 's/\(x86_64\)\-.*/\1/'` + +ALT= +if [ "$X86_64" != "$HOST_TARGET" ]; then + ALT="i686$REST" + +elif [ "$X86" != "$HOST_TARGET" ]; then + ALT="x86_64$REST" +fi + +echo $ALT