From fdca6af3c70b5ee97598452e1d117002d8814b18 Mon Sep 17 00:00:00 2001 From: Ed Bordin Date: Thu, 4 Mar 2021 22:25:17 +1100 Subject: [PATCH] #74 try manual downgrade of binutils --- scripts/install_dependencies.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/scripts/install_dependencies.sh b/scripts/install_dependencies.sh index f66e131..22af2cf 100755 --- a/scripts/install_dependencies.sh +++ b/scripts/install_dependencies.sh @@ -81,10 +81,13 @@ if [ $ARCH == "windows_x86" ]; then fi if [ $ARCH == "windows_amd64" ]; then - pacman --noconfirm --needed -S git base-devel mingw-w64-x86_64-binutils-2.36-1 mingw-w64-x86_64-toolchain mingw-w64-x86_64-cmake \ + pacman --noconfirm --needed -S git base-devel mingw-w64-x86_64-toolchain mingw-w64-x86_64-cmake \ mingw-w64-x86_64-boost mingw-w64-x86_64-eigen3 rsync unzip zip mingw-w64-x86_64-libftdi bison flex \ mingw-w64-x86_64-gcc-ada p7zip mingw-w64-x86_64-jsoncpp + wget https://repo.msys2.org/mingw/x86_64/mingw-w64-x86_64-binutils-2.36-1-any.pkg.tar.zst + pacman --noconfirm -U mingw-w64-x86_64-binutils-2.36-1-any.pkg.tar.zst + x86_64-w64-mingw32-gcc --version x86_64-w64-mingw32-g++ --version fi