cff0723064
* Update dependencies from https://github.com/dotnet/arcade build 20190725.15 - Microsoft.DotNet.Arcade.Sdk - 1.0.0-beta.19375.15 * Update dependencies from https://github.com/dotnet/arcade build 20190726.18 - Microsoft.DotNet.Arcade.Sdk - 1.0.0-beta.19376.18
234 lines
6.9 KiB
Bash
Executable file
234 lines
6.9 KiB
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
usage()
|
|
{
|
|
echo "Usage: $0 [BuildArch] [LinuxCodeName] [lldbx.y] [--skipunmount] --rootfsdir <directory>]"
|
|
echo "BuildArch can be: arm(default), armel, arm64, x86"
|
|
echo "LinuxCodeName - optional, Code name for Linux, can be: trusty, xenial(default), zesty, bionic, alpine. If BuildArch is armel, LinuxCodeName is jessie(default) or tizen."
|
|
echo "lldbx.y - optional, LLDB version, can be: lldb3.9(default), lldb4.0, lldb5.0, lldb6.0 no-lldb. Ignored for alpine"
|
|
echo "--skipunmount - optional, will skip the unmount of rootfs folder."
|
|
exit 1
|
|
}
|
|
|
|
__LinuxCodeName=xenial
|
|
__CrossDir=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )
|
|
__InitialDir=$PWD
|
|
__BuildArch=arm
|
|
__UbuntuArch=armhf
|
|
__UbuntuRepo="http://ports.ubuntu.com/"
|
|
__LLDB_Package="liblldb-3.9-dev"
|
|
__SkipUnmount=0
|
|
|
|
# base development support
|
|
__UbuntuPackages="build-essential"
|
|
|
|
__AlpinePackages="alpine-base"
|
|
__AlpinePackages+=" build-base"
|
|
__AlpinePackages+=" linux-headers"
|
|
__AlpinePackages+=" lldb-dev"
|
|
__AlpinePackages+=" llvm-dev"
|
|
|
|
# symlinks fixer
|
|
__UbuntuPackages+=" symlinks"
|
|
|
|
# CoreCLR and CoreFX dependencies
|
|
__UbuntuPackages+=" libicu-dev"
|
|
__UbuntuPackages+=" liblttng-ust-dev"
|
|
__UbuntuPackages+=" libunwind8-dev"
|
|
|
|
__AlpinePackages+=" gettext-dev"
|
|
__AlpinePackages+=" icu-dev"
|
|
__AlpinePackages+=" libunwind-dev"
|
|
__AlpinePackages+=" lttng-ust-dev"
|
|
|
|
# CoreFX dependencies
|
|
__UbuntuPackages+=" libcurl4-openssl-dev"
|
|
__UbuntuPackages+=" libkrb5-dev"
|
|
__UbuntuPackages+=" libssl-dev"
|
|
__UbuntuPackages+=" zlib1g-dev"
|
|
|
|
__AlpinePackages+=" curl-dev"
|
|
__AlpinePackages+=" krb5-dev"
|
|
__AlpinePackages+=" openssl-dev"
|
|
__AlpinePackages+=" zlib-dev"
|
|
|
|
__UnprocessedBuildArgs=
|
|
while :; do
|
|
if [ $# -le 0 ]; then
|
|
break
|
|
fi
|
|
|
|
lowerI="$(echo $1 | awk '{print tolower($0)}')"
|
|
case $lowerI in
|
|
-?|-h|--help)
|
|
usage
|
|
exit 1
|
|
;;
|
|
arm)
|
|
__BuildArch=arm
|
|
__UbuntuArch=armhf
|
|
__AlpineArch=armhf
|
|
__QEMUArch=arm
|
|
;;
|
|
arm64)
|
|
__BuildArch=arm64
|
|
__UbuntuArch=arm64
|
|
__AlpineArch=aarch64
|
|
__QEMUArch=aarch64
|
|
;;
|
|
armel)
|
|
__BuildArch=armel
|
|
__UbuntuArch=armel
|
|
__UbuntuRepo="http://ftp.debian.org/debian/"
|
|
__LinuxCodeName=jessie
|
|
;;
|
|
x86)
|
|
__BuildArch=x86
|
|
__UbuntuArch=i386
|
|
__UbuntuRepo="http://archive.ubuntu.com/ubuntu/"
|
|
;;
|
|
lldb3.6)
|
|
__LLDB_Package="lldb-3.6-dev"
|
|
;;
|
|
lldb3.8)
|
|
__LLDB_Package="lldb-3.8-dev"
|
|
;;
|
|
lldb3.9)
|
|
__LLDB_Package="liblldb-3.9-dev"
|
|
;;
|
|
lldb4.0)
|
|
__LLDB_Package="liblldb-4.0-dev"
|
|
;;
|
|
lldb5.0)
|
|
__LLDB_Package="liblldb-5.0-dev"
|
|
;;
|
|
lldb6.0)
|
|
__LLDB_Package="liblldb-6.0-dev"
|
|
;;
|
|
no-lldb)
|
|
unset __LLDB_Package
|
|
;;
|
|
trusty) # Ubuntu 14.04
|
|
if [ "$__LinuxCodeName" != "jessie" ]; then
|
|
__LinuxCodeName=trusty
|
|
fi
|
|
;;
|
|
xenial) # Ubuntu 16.04
|
|
if [ "$__LinuxCodeName" != "jessie" ]; then
|
|
__LinuxCodeName=xenial
|
|
fi
|
|
;;
|
|
zesty) # Ubuntu 17.04
|
|
if [ "$__LinuxCodeName" != "jessie" ]; then
|
|
__LinuxCodeName=zesty
|
|
fi
|
|
;;
|
|
bionic) # Ubuntu 18.04
|
|
if [ "$__LinuxCodeName" != "jessie" ]; then
|
|
__LinuxCodeName=bionic
|
|
fi
|
|
;;
|
|
jessie) # Debian 8
|
|
__LinuxCodeName=jessie
|
|
__UbuntuRepo="http://ftp.debian.org/debian/"
|
|
;;
|
|
stretch) # Debian 9
|
|
__LinuxCodeName=stretch
|
|
__UbuntuRepo="http://ftp.debian.org/debian/"
|
|
__LLDB_Package="liblldb-6.0-dev"
|
|
;;
|
|
buster) # Debian 10
|
|
__LinuxCodeName=buster
|
|
__UbuntuRepo="http://ftp.debian.org/debian/"
|
|
__LLDB_Package="liblldb-6.0-dev"
|
|
;;
|
|
tizen)
|
|
if [ "$__BuildArch" != "armel" ]; then
|
|
echo "Tizen is available only for armel."
|
|
usage;
|
|
exit 1;
|
|
fi
|
|
__LinuxCodeName=
|
|
__UbuntuRepo=
|
|
__Tizen=tizen
|
|
;;
|
|
alpine)
|
|
__LinuxCodeName=alpine
|
|
__UbuntuRepo=
|
|
;;
|
|
--skipunmount)
|
|
__SkipUnmount=1
|
|
;;
|
|
--rootfsdir|-rootfsdir)
|
|
shift
|
|
__RootfsDir=$1
|
|
;;
|
|
*)
|
|
__UnprocessedBuildArgs="$__UnprocessedBuildArgs $1"
|
|
;;
|
|
esac
|
|
|
|
shift
|
|
done
|
|
|
|
if [ "$__BuildArch" == "armel" ]; then
|
|
__LLDB_Package="lldb-3.5-dev"
|
|
fi
|
|
__UbuntuPackages+=" ${__LLDB_Package:-}"
|
|
|
|
if [ -z "$__RootfsDir" ] && [ ! -z "$ROOTFS_DIR" ]; then
|
|
__RootfsDir=$ROOTFS_DIR
|
|
fi
|
|
|
|
if [ -z "$__RootfsDir" ]; then
|
|
__RootfsDir="$__CrossDir/../../../.tools/rootfs/$__BuildArch"
|
|
fi
|
|
|
|
if [ -d "$__RootfsDir" ]; then
|
|
if [ $__SkipUnmount == 0 ]; then
|
|
umount $__RootfsDir/*
|
|
fi
|
|
rm -rf $__RootfsDir
|
|
fi
|
|
|
|
if [[ "$__LinuxCodeName" == "alpine" ]]; then
|
|
__ApkToolsVersion=2.9.1
|
|
__AlpineVersion=3.7
|
|
__ApkToolsDir=$(mktemp -d)
|
|
wget https://github.com/alpinelinux/apk-tools/releases/download/v$__ApkToolsVersion/apk-tools-$__ApkToolsVersion-x86_64-linux.tar.gz -P $__ApkToolsDir
|
|
tar -xf $__ApkToolsDir/apk-tools-$__ApkToolsVersion-x86_64-linux.tar.gz -C $__ApkToolsDir
|
|
mkdir -p $__RootfsDir/usr/bin
|
|
cp -v /usr/bin/qemu-$__QEMUArch-static $__RootfsDir/usr/bin
|
|
$__ApkToolsDir/apk-tools-$__ApkToolsVersion/apk \
|
|
-X http://dl-cdn.alpinelinux.org/alpine/v$__AlpineVersion/main \
|
|
-X http://dl-cdn.alpinelinux.org/alpine/v$__AlpineVersion/community \
|
|
-X http://dl-cdn.alpinelinux.org/alpine/edge/testing \
|
|
-X http://dl-cdn.alpinelinux.org/alpine/edge/main \
|
|
-U --allow-untrusted --root $__RootfsDir --arch $__AlpineArch --initdb \
|
|
add $__AlpinePackages
|
|
rm -r $__ApkToolsDir
|
|
elif [[ -n $__LinuxCodeName ]]; then
|
|
qemu-debootstrap --arch $__UbuntuArch $__LinuxCodeName $__RootfsDir $__UbuntuRepo
|
|
cp $__CrossDir/$__BuildArch/sources.list.$__LinuxCodeName $__RootfsDir/etc/apt/sources.list
|
|
chroot $__RootfsDir apt-get update
|
|
chroot $__RootfsDir apt-get -f -y install
|
|
chroot $__RootfsDir apt-get -y install $__UbuntuPackages
|
|
chroot $__RootfsDir symlinks -cr /usr
|
|
|
|
if [ $__SkipUnmount == 0 ]; then
|
|
umount $__RootfsDir/*
|
|
fi
|
|
|
|
if [[ "$__BuildArch" == "arm" && "$__LinuxCodeName" == "trusty" ]]; then
|
|
pushd $__RootfsDir
|
|
patch -p1 < $__CrossDir/$__BuildArch/trusty.patch
|
|
patch -p1 < $__CrossDir/$__BuildArch/trusty-lttng-2.4.patch
|
|
popd
|
|
fi
|
|
elif [ "$__Tizen" == "tizen" ]; then
|
|
ROOTFS_DIR=$__RootfsDir $__CrossDir/$__BuildArch/tizen-build-rootfs.sh
|
|
else
|
|
echo "Unsupported target platform."
|
|
usage;
|
|
exit 1
|
|
fi
|