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 51d6bfa commit c06b847Copy full SHA for c06b847
.github/workflows/build.yaml
@@ -20,6 +20,9 @@ jobs:
20
- name: Build
21
shell: msys2 {0}
22
run: |
23
+ # XXX: cygwin still uses gcc v11 so we get new warnings with v13,
24
+ # resulting in errors due to -Werror. Disable them for now.
25
+ export CXXFLAGS="-Wno-error=stringop-truncation -Wno-error=array-bounds -Wno-error=overloaded-virtual -Wno-narrowing -Wno-use-after-free"
26
(cd winsup && ./autogen.sh)
27
./configure --disable-dependency-tracking --with-msys2-runtime-commit="$GITHUB_SHA"
28
make -j8
0 commit comments