Skip to content

Commit

Permalink
CI: fix the build with gcc 13
Browse files Browse the repository at this point in the history
  • Loading branch information
lazka authored and dscho committed Nov 29, 2023
1 parent 58e01d2 commit ae5462a
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,11 @@ jobs:
- name: Build
shell: msys2 {0}
run: |
# XXX: cygwin still uses gcc v11 so we get new warnings with v13,
# resulting in errors. We can't selectively disable warnigns since our
# cross compiler is also too old and doesn't understand the new
# warning flags, so we need to disable all errors for now.
export CXXFLAGS="-Wno-error -Wno-narrowing"
(cd winsup && ./autogen.sh)
./configure --disable-dependency-tracking
make -j8
Expand Down

0 comments on commit ae5462a

Please sign in to comment.