You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/release-windows-mingw.yml
+2-3Lines changed: 2 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -44,16 +44,15 @@ jobs:
44
44
# TODO: install mingw-w64-x86_64-make and use mingw32.make instead - currently fails with "Windows Subsystem for Linux has no installed distributions."
45
45
install: >-
46
46
mingw-w64-x86_64-lld
47
-
mingw-w64-x86_64-ccache
48
47
make
49
48
mingw-w64-x86_64-gcc
49
+
python
50
50
51
51
- name: Build cppcheck
52
52
run: |
53
53
export PATH="/mingw64/lib/ccache/bin:$PATH"
54
54
# set RDYNAMIC to work around broken MinGW detection
55
-
# use lld for faster linking
56
-
make VERBOSE=1 RDYNAMIC=-lshlwapi LDOPTS=-fuse-ld=lld -j$(nproc) CXXFLAGS=-O2 MATCHCOMPILER=yes cppcheck
55
+
make VERBOSE=1 RDYNAMIC=-lshlwapi -j$(nproc) CXXFLAGS=-O2 MATCHCOMPILER=yes cppcheck
0 commit comments