diff options
author | Steve MacLean <sdmaclea@qti.qualcomm.com> | 2017-02-15 12:00:56 -0500 |
---|---|---|
committer | Jan Vorlicek <janvorli@microsoft.com> | 2017-02-15 18:00:56 +0100 |
commit | 70b0f61459a43abaa31203667090fb0663899706 (patch) | |
tree | c0892460e6b7513afdba9b0afcb7ce241c6dd008 /cross | |
parent | 94d1639d5d0b969489abbb3ce78b11a72c4493c4 (diff) | |
download | coreclr-70b0f61459a43abaa31203667090fb0663899706.tar.gz coreclr-70b0f61459a43abaa31203667090fb0663899706.tar.bz2 coreclr-70b0f61459a43abaa31203667090fb0663899706.zip |
[ARM64/Unix] LLDB (#9504)
* [Arm64/Unix] Default to no lldb in build-rootfs
lldb is not readily available on arm64 Ubuntu releases prior to
16.10
Set the default lldb version to none to allow building Arm64 rootfs
* [Arm64/Unix] Warn if lldb is missing
SOS lldb plugin is an optional component
lldb is not availiable on arm64 prior to lldb3.9
lldb3.9 is not readily available on many ubuntu until 16.10
Change error to warning to simplify building arm64
Diffstat (limited to 'cross')
-rwxr-xr-x | cross/build-rootfs.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cross/build-rootfs.sh b/cross/build-rootfs.sh index 6b4d184133..c40d644e45 100755 --- a/cross/build-rootfs.sh +++ b/cross/build-rootfs.sh @@ -5,7 +5,7 @@ usage() echo "Usage: $0 [BuildArch] [LinuxCodeName] [lldbx.y] [--skipunmount]" echo "BuildArch can be: arm(default), armel, arm64, x86" echo "LinuxCodeName - optional, Code name for Linux, can be: trusty(default), vivid, wily, xenial. If BuildArch is armel, LinuxCodeName is jessie(default) or tizen." - echo "lldbx.y - optional, LLDB version, can be: lldb3.6(default), lldb3.8" + echo "lldbx.y - optional, LLDB version, can be: lldb3.6, lldb3.8" echo "--skipunmount - optional, will skip the unmount of rootfs folder." exit 1 } @@ -16,7 +16,7 @@ __InitialDir=$PWD __BuildArch=arm __UbuntuArch=armhf __UbuntuRepo="http://ports.ubuntu.com/" -__LLDB_Package="lldb-3.6-dev" +__LLDB_Package="" __SkipUnmount=0 # base development support |