]> git.lizzy.rs Git - rust.git/blob - src/ci/scripts/install-mingw.sh
Rollup merge of #65843 - xen0n:mips64-musl-targets-with-ci, r=alexcrichton
[rust.git] / src / ci / scripts / install-mingw.sh
1 #!/bin/bash
2 # If we need to download a custom MinGW, do so here and set the path
3 # appropriately.
4 #
5 # Here we also do a pretty heinous thing which is to mangle the MinGW
6 # installation we just downloaded. Currently, as of this writing, we're using
7 # MinGW-w64 builds of gcc, and that's currently at 6.3.0. We use 6.3.0 as it
8 # appears to be the first version which contains a fix for #40546, builds
9 # randomly failing during LLVM due to ar.exe/ranlib.exe failures.
10 #
11 # Unfortunately, though, 6.3.0 *also* is the first version of MinGW-w64 builds
12 # to contain a regression in gdb (#40184). As a result if we were to use the
13 # gdb provided (7.11.1) then we would fail all debuginfo tests.
14 #
15 # In order to fix spurious failures (pretty high priority) we use 6.3.0. To
16 # avoid disabling gdb tests we download an *old* version of gdb, specifically
17 # that found inside the 6.2.0 distribution. We then overwrite the 6.3.0 gdb
18 # with the 6.2.0 gdb to get tests passing.
19 #
20 # Note that we don't literally overwrite the gdb.exe binary because it appears
21 # to just use gdborig.exe, so that's the binary we deal with instead.
22 #
23 # Otherwise install MinGW through `pacman`
24
25 set -euo pipefail
26 IFS=$'\n\t'
27
28 source "$(cd "$(dirname "$0")" && pwd)/../shared.sh"
29
30 if isWindows; then
31     if [[ -z "${MINGW_URL+x}" ]]; then
32         arch=i686
33         if [ "$MSYS_BITS" = "64" ]; then
34           arch=x86_64
35         fi
36         pacman -S --noconfirm --needed mingw-w64-$arch-toolchain mingw-w64-$arch-cmake \
37             mingw-w64-$arch-gcc mingw-w64-$arch-python2
38         ciCommandAddPath "${SYSTEM_WORKFOLDER}/msys2/mingw${MSYS_BITS}/bin"
39     else
40         curl -o mingw.7z "${MINGW_URL}/${MINGW_ARCHIVE}"
41         7z x -y mingw.7z > /dev/null
42         curl -o "${MINGW_DIR}/bin/gdborig.exe" "${MINGW_URL}/2017-04-20-${MSYS_BITS}bit-gdborig.exe"
43         ciCommandAddPath "$(pwd)/${MINGW_DIR}/bin"
44     fi
45 fi