We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4bc588a commit 88ca12cCopy full SHA for 88ca12c
.github/workflows/ci.yml
@@ -492,8 +492,11 @@ jobs:
492
# Install dependencies for cross compilation
493
if [ "${{ matrix.host.name }}" == "windows-x86_64" ]; then
494
# Make MinGW-w64 win32 cross toolchain available in PATH
495
- echo "/opt/mingw-w64-win32/bin" >> $GITHUB_PATH
496
- export PATH="/opt/mingw-w64-win32/bin:$PATH"
+ #echo "/opt/mingw-w64-win32/bin" >> $GITHUB_PATH
+ #export PATH="/opt/mingw-w64-win32/bin:$PATH"
497
+ # Install MinGW-w64 cross toolchain
498
+ sudo apt-get install -y binutils-mingw-w64 gcc-mingw-w64 \
499
+ g++-mingw-w64
500
501
# Build and install libboost-regex for MinGW-w64 host
502
## Check out Boost library source code
0 commit comments