Skip to content

Commit 1fa45c1

Browse files
committed
Windows, MSVCRT: Switch to GCC 14
1 parent ec2164b commit 1fa45c1

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

.github/workflows/windows-gcc-msvcrt.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,10 @@ jobs:
2222
windows-cross:
2323
name: 'Windows, cross-build only, MSVCRT: no GUI'
2424
runs-on: ubuntu-latest
25+
# The package https://packages.debian.org/trixie/g++-mingw-w64-ucrt64 (v14.2.0)
26+
# includes the fix for the false positive `-Wdangling-reference`.
27+
# See: https://github.com/bitcoin/bitcoin/commit/fae1d99651e29341e486a10e6340335c71a2144e.
28+
container: debian:trixie
2529

2630
steps:
2731
- name: Checkout Bitcoin Core repo
@@ -30,9 +34,11 @@ jobs:
3034
repository: bitcoin/bitcoin
3135

3236
- name: Install dependencies
37+
env:
38+
DEBIAN_FRONTEND: noninteractive
3339
run: |
34-
sudo apt-get update
35-
sudo apt-get install g++-mingw-w64-x86-64-posix
40+
apt-get update
41+
apt-get install -y --no-install-recommends ca-certificates cmake curl g++-mingw-w64-x86-64-posix make patch
3642
3743
- name: Build depends
3844
run: |

0 commit comments

Comments
 (0)