From 846d386b4d84faa6c5f373d0f608e859239465e8 Mon Sep 17 00:00:00 2001 From: Pietro Albini Date: Wed, 27 Nov 2019 15:19:59 +0100 Subject: [PATCH] ci: install binutils in msys2 --- src/ci/scripts/install-msys2-packages.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/ci/scripts/install-msys2-packages.sh b/src/ci/scripts/install-msys2-packages.sh index 36d9202f7a2d3..843a2bf2d5e55 100755 --- a/src/ci/scripts/install-msys2-packages.sh +++ b/src/ci/scripts/install-msys2-packages.sh @@ -6,7 +6,8 @@ IFS=$'\n\t' source "$(cd "$(dirname "$0")" && pwd)/../shared.sh" if isWindows; then - pacman -S --noconfirm --needed base-devel ca-certificates make diffutils tar + pacman -S --noconfirm --needed base-devel ca-certificates make diffutils tar \ + binutils # Make sure we use the native python interpreter instead of some msys equivalent # one way or another. The msys interpreters seem to have weird path conversions