Skip to content

Commit

Permalink
gcc
Browse files Browse the repository at this point in the history
  • Loading branch information
riverar committed May 24, 2024
1 parent 682bc2c commit 98fbe7b
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/actions/fix-environment/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,14 @@ runs:
>> $env:GITHUB_ENV
}
}
# Workaround to address two issues with windows-2022 runners:
# 1. Old mingw-w64-* binutils that prevent deterministic builds.
# 2. Missing llvm-dlltool in the native Windows LLVM package.
# Workaround to address several issues with windows-2022 runners:
# - Old mingw-w64-* binutils that prevent deterministic builds.
# - Missing llvm-dlltool in the native Windows LLVM package.
# - Missing mingw-w64 compiler packages.
- name: Update packages
shell: pwsh
run: |
C:\msys64\usr\bin\pacman.exe -S --noconfirm mingw-w64-x86_64-binutils
C:\msys64\usr\bin\pacman.exe -S --noconfirm mingw-w64-x86_64-llvm
C:\msys64\usr\bin\pacman.exe -S --noconfirm mingw-w64-i686-gcc
C:\msys64\usr\bin\pacman.exe -S --noconfirm mingw-w64-x86_64-gcc

0 comments on commit 98fbe7b

Please sign in to comment.