mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-02-26 00:23:14 +01:00
Added script to find the alternative triple of the host.
This commit is contained in:
19
find-alt-triple.sh
Executable file
19
find-alt-triple.sh
Executable file
@@ -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
|
||||
Reference in New Issue
Block a user