mirror of
https://github.com/CTCaer/darkblue-beacon.git
synced 2024-11-23 09:49:48 +00:00
60 lines
1.6 KiB
Plaintext
60 lines
1.6 KiB
Plaintext
|
#!/bin/bash
|
||
|
#
|
||
|
# Copyright 2014, Broadcom Corporation
|
||
|
# All Rights Reserved.
|
||
|
#
|
||
|
# This is UNPUBLISHED PROPRIETARY SOURCE CODE of Broadcom Corporation;
|
||
|
# the contents of this file may not be disclosed to third parties, copied
|
||
|
# or duplicated in any form, in whole or in part, without the prior
|
||
|
# written permission of Broadcom Corporation.
|
||
|
#
|
||
|
scriptname=${0##*/}
|
||
|
scriptdir=${0%*$scriptname}
|
||
|
|
||
|
# clear environment variables
|
||
|
declare() { unset -- "${2%%=*}" 2> /dev/null || true; }
|
||
|
eval "$(builtin declare -x)"
|
||
|
unset declare
|
||
|
|
||
|
linux32unamestr=`${scriptdir}Tools/common/Linux32/uname 2> /dev/null`
|
||
|
linux64unamestr=`${scriptdir}Tools/common/Linux64/uname 2> /dev/null`
|
||
|
osxunamestr=`${scriptdir}Tools/common/OSX/uname 2> /dev/null`
|
||
|
win32unamestr=`${scriptdir}Tools/common/Win32/uname.exe -o 2> /dev/null`
|
||
|
|
||
|
if [ "$linux32unamestr" == "Linux" ] || [ "$linux64unamestr" == "Linux" ]; then
|
||
|
# Linux
|
||
|
linuxuname64str=`${scriptdir}Tools/common/Linux64/uname -m 2> /dev/null`
|
||
|
if [ "$linuxuname64str" == "x86_64" ]; then
|
||
|
|
||
|
# Linux64
|
||
|
#echo Host is Linux64
|
||
|
"${scriptdir}Tools/common/Linux64/make" "$@" HOST_OS=Linux64
|
||
|
|
||
|
else
|
||
|
|
||
|
# Linux32
|
||
|
#echo Host is Linux32
|
||
|
"${scriptdir}Tools/common/Linux32/make" "$@" HOST_OS=Linux32
|
||
|
|
||
|
fi
|
||
|
elif [[ "$osxunamestr" == *Darwin* ]]; then
|
||
|
|
||
|
#OSX
|
||
|
#echo Host is OSX
|
||
|
"${scriptdir}Tools/common/OSX/make" "$@" HOST_OS=OSX
|
||
|
|
||
|
elif [ "${win32unamestr}" == "MinGW" ]; then
|
||
|
|
||
|
#MinGW / Cygwin
|
||
|
#echo Host is MinGW
|
||
|
"${scriptdir}Tools/common/Win32/make.exe" "$@" HOST_OS=Win32
|
||
|
|
||
|
else
|
||
|
echo Unknown host
|
||
|
echo Linux32 uname: \"${linux32unamestr}\"
|
||
|
echo Linux64 uname: \"${linux32unamestr}\"
|
||
|
echo OSX uname: \"${osxunamestr}\"
|
||
|
echo Win32 uname: \"${win32unamestr}\"
|
||
|
fi
|
||
|
|