55 lines
958 B
Bash
Executable File
55 lines
958 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# base/bin/tools/EpicsHostArch - returns the Epics host architecture suitable
|
|
# for assigning to the EPICS_HOST_ARCH variable
|
|
|
|
sysname=`uname`
|
|
|
|
case $sysname in
|
|
Linux )
|
|
os=linux
|
|
cpu=`uname -m`
|
|
case $cpu in i386 | i486 | i586 | i686 )
|
|
cpu=x86
|
|
;;
|
|
esac
|
|
echo ${os}-${cpu}
|
|
;;
|
|
HP-UX )
|
|
os=hpux
|
|
cpu=`uname -m`
|
|
case $cpu in 9000/[34678]??)
|
|
cpu=m68k
|
|
;;
|
|
esac
|
|
echo ${os}-${cpu}
|
|
;;
|
|
OSF1 )
|
|
os=osf
|
|
cpu=`uname -m`
|
|
echo ${os}-${cpu}
|
|
;;
|
|
SunOS )
|
|
version=`uname -r | sed '1s/^\([0-9]*\).*$/\1/'`
|
|
if [ ${version} -ge 5 ]; then
|
|
os=solaris
|
|
else
|
|
os=sun4
|
|
fi
|
|
cpu=`uname -m`
|
|
case $cpu in
|
|
sun4*)
|
|
cpu=sparc
|
|
;;
|
|
i86pc)
|
|
cpu=x86
|
|
;;
|
|
esac
|
|
echo ${os}-${cpu}
|
|
;;
|
|
* )
|
|
echo unsupported
|
|
;;
|
|
esac
|
|
|