Skip to content

Commit f0d3e93

Browse files
committed
Tune for Windows CI: C11 is broken, so switch to C99 and requests ISO C compatible printf function.
1 parent e77ff24 commit f0d3e93

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ccpp.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
run: choco install mingw --no-progress
2929
- name: make
3030
shell: bash
31-
run: mingw32-make CC="gcc -std=c11"
31+
run: mingw32-make CC="gcc -std=c99 -D__USE_MINGW_ANSI_STDIO=1"
3232
- name: make check
3333
shell: bash
34-
run: mingw32-make CC="gcc -std=c11" check
34+
run: mingw32-make CC="gcc -std=c99 -D__USE_MINGW_ANSI_STDIO=1" check

0 commit comments

Comments
 (0)