Merge pull request #10662 from helloguo/VectorConversion
[platform/upstream/coreclr.git] / init-tools.sh
1 #!/usr/bin/env bash
2
3 __scriptpath=$(cd "$(dirname "$0")"; pwd -P)
4 __init_tools_log=$__scriptpath/init-tools.log
5 __PACKAGES_DIR=$__scriptpath/packages
6 __TOOLRUNTIME_DIR=$__scriptpath/Tools
7 __DOTNET_PATH=$__TOOLRUNTIME_DIR/dotnetcli
8 __DOTNET_CMD=$__DOTNET_PATH/dotnet
9 if [ -z "$__BUILDTOOLS_SOURCE" ]; then __BUILDTOOLS_SOURCE=https://dotnet.myget.org/F/dotnet-buildtools/api/v3/index.json; fi
10 export __BUILDTOOLS_USE_CSPROJ=true
11 __BUILD_TOOLS_PACKAGE_VERSION=$(cat $__scriptpath/BuildToolsVersion.txt)
12 __DOTNET_TOOLS_VERSION=$(cat $__scriptpath/DotnetCLIVersion.txt)
13 __BUILD_TOOLS_PATH=$__PACKAGES_DIR/microsoft.dotnet.buildtools/$__BUILD_TOOLS_PACKAGE_VERSION/lib
14 __INIT_TOOLS_RESTORE_PROJECT=$__scriptpath/init-tools.msbuild
15 __INIT_TOOLS_DONE_MARKER=$__TOOLRUNTIME_DIR/$__BUILD_TOOLS_PACKAGE_VERSION/done
16
17 if [ -z "$__DOTNET_PKG" ]; then
18     if [ "$(uname -m | grep "i[3456]86")" = "i686" ]; then
19         echo "Warning: build not supported on 32 bit Unix"
20     fi
21 OSName=$(uname -s)
22     case $OSName in
23         Darwin)
24             OS=OSX
25             __DOTNET_PKG=dotnet-dev-osx-x64
26             ulimit -n 2048
27             ;;
28
29         Linux)
30             __DOTNET_PKG=dotnet-dev-linux-x64
31             OS=Linux
32             ;;
33
34         *)
35             echo "Unsupported OS '$OSName' detected. Downloading linux-x64 tools."
36             OS=Linux
37             __DOTNET_PKG=dotnet-dev-linux-x64
38             ;;
39   esac
40 fi
41
42 if [ ! -e $__INIT_TOOLS_DONE_MARKER ]; then
43     __PATCH_CLI_NUGET_FRAMEWORKS=0
44
45     if [ -e $__TOOLRUNTIME_DIR ]; then rm -rf -- $__TOOLRUNTIME_DIR; fi
46     echo "Running: $__scriptpath/init-tools.sh" > $__init_tools_log
47
48     if [ ! -e $__DOTNET_PATH ]; then
49
50         mkdir -p "$__DOTNET_PATH"
51
52         if [ -n "$DOTNET_TOOLSET_DIR" ] && [ -d "$DOTNET_TOOLSET_DIR/$__DOTNET_TOOLS_VERSION" ]; then
53             echo "Copying $DOTNET_TOOLSET_DIR/$__DOTNET_TOOLS_VERSION to $__DOTNET_PATH" >> $__init_tools_log
54             cp -r $DOTNET_TOOLSET_DIR/$__DOTNET_TOOLS_VERSION/* $__DOTNET_PATH
55         elif [ -n "$DOTNET_TOOL_DIR" ] && [ -d "$DOTNET_TOOL_DIR" ]; then
56             echo "Copying $DOTNET_TOOL_DIR to $__DOTNET_PATH" >> $__init_tools_log
57             cp -r $DOTNET_TOOL_DIR/* $__DOTNET_PATH
58         else
59             echo "Installing dotnet cli..."
60             __DOTNET_LOCATION="https://dotnetcli.blob.core.windows.net/dotnet/Sdk/${__DOTNET_TOOLS_VERSION}/${__DOTNET_PKG}.${__DOTNET_TOOLS_VERSION}.tar.gz"
61             # curl has HTTPS CA trust-issues less often than wget, so lets try that first.
62             echo "Installing '${__DOTNET_LOCATION}' to '$__DOTNET_PATH/dotnet.tar'" >> $__init_tools_log
63             which curl > /dev/null 2> /dev/null
64             if [ $? -ne 0 ]; then
65                 wget -q -O $__DOTNET_PATH/dotnet.tar ${__DOTNET_LOCATION}
66             else
67                 curl --retry 10 -sSL --create-dirs -o $__DOTNET_PATH/dotnet.tar ${__DOTNET_LOCATION}
68             fi
69             cd $__DOTNET_PATH
70             tar -xf $__DOTNET_PATH/dotnet.tar
71
72             cd $__scriptpath
73
74             __PATCH_CLI_NUGET_FRAMEWORKS=1
75         fi
76     fi
77
78
79     if [ -n "$BUILD_TOOLS_TOOLSET_DIR" ] && [ -d "$BUILD_TOOLS_TOOLSET_DIR/$__BUILD_TOOLS_PACKAGE_VERSION" ]; then
80         echo "Copying $BUILD_TOOLS_TOOLSET_DIR/$__BUILD_TOOLS_PACKAGE_VERSION to $__TOOLRUNTIME_DIR" >> $__init_tools_log
81         cp -r $BUILD_TOOLS_TOOLSET_DIR/$__BUILD_TOOLS_PACKAGE_VERSION/* $__TOOLRUNTIME_DIR
82     elif [ -n "$BUILD_TOOLS_TOOL_DIR" ] && [ -d "$BUILD_TOOLS_TOOL_DIR" ]; then
83         echo "Copying $BUILD_TOOLS_TOOL_DIR to $__TOOLRUNTIME_DIR" >> $__init_tools_log
84         cp -r $BUILD_TOOLS_TOOL_DIR/* $__TOOLRUNTIME_DIR
85     else
86         if [ ! -e $__BUILD_TOOLS_PATH ]; then
87             echo "Restoring BuildTools version $__BUILD_TOOLS_PACKAGE_VERSION..."
88             echo "Running: $__DOTNET_CMD restore \"$__INIT_TOOLS_RESTORE_PROJECT\" --no-cache --packages $__PACKAGES_DIR --source $__BUILDTOOLS_SOURCE /p:BuildToolsPackageVersion=$__BUILD_TOOLS_PACKAGE_VERSION" >> $__init_tools_log
89             $__DOTNET_CMD restore "$__INIT_TOOLS_RESTORE_PROJECT" --no-cache --packages $__PACKAGES_DIR --source $__BUILDTOOLS_SOURCE /p:BuildToolsPackageVersion=$__BUILD_TOOLS_PACKAGE_VERSION >> $__init_tools_log
90             if [ ! -e "$__BUILD_TOOLS_PATH/init-tools.sh" ]; then echo "ERROR: Could not restore build tools correctly. See '$__init_tools_log' for more details."1>&2; fi
91         fi
92
93         echo "Initializing BuildTools..."
94         echo "Running: $__BUILD_TOOLS_PATH/init-tools.sh $__scriptpath $__DOTNET_CMD $__TOOLRUNTIME_DIR" >> $__init_tools_log
95
96         # Executables restored with .NET Core 2.0 do not have executable permission flags. https://github.com/NuGet/Home/issues/4424
97         chmod +x $__BUILD_TOOLS_PATH/init-tools.sh
98         $__BUILD_TOOLS_PATH/init-tools.sh $__scriptpath $__DOTNET_CMD $__TOOLRUNTIME_DIR >> $__init_tools_log
99         if [ "$?" != "0" ]; then
100             echo "ERROR: An error occured when trying to initialize the tools. Please check '$__init_tools_log' for more details."1>&2
101             exit 1
102         fi
103     fi
104
105     echo "Making all .sh files executable under Tools."
106     # Executables restored with .NET Core 2.0 do not have executable permission flags. https://github.com/NuGet/Home/issues/4424
107     ls $__scriptpath/Tools/*.sh | xargs chmod +x
108     ls $__scriptpath/Tools/scripts/docker/*.sh | xargs chmod +x
109
110     Tools/crossgen.sh $__scriptpath/Tools
111
112     touch $__INIT_TOOLS_DONE_MARKER
113
114     echo "Done initializing tools."
115 else
116     echo "Tools are already initialized"
117 fi