Switch Windows 64-bit MSYS2 build from mingw64 to ucrt64

This only affects CI, because our release binaries are MSVC builds.
This commit is contained in:
kichikuou
2023-11-17 09:24:08 +09:00
parent 16b9abe64f
commit 73a7380a69
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -6,7 +6,7 @@ jobs:
runs-on: windows-latest
strategy:
matrix:
sys: ["MINGW32", "MINGW64"]
sys: ["MINGW32", "UCRT64"]
defaults:
run:
shell: msys2 {0}
+2 -2
View File
@@ -30,11 +30,11 @@ $ make
$ sudo make install
```
### Windows (MSYS2 mingw64)
### Windows (MSYS2)
```bash
$ git submodule update --init
$ pacman -S make mingw-w64-x86_64-gcc mingw-w64-x86_64-cmake mingw-w64-x86_64-SDL2 mingw-w64-x86_64-SDL2_ttf
$ pacman -S make mingw-w64-ucrt-x86_64-gcc mingw-w64-ucrt-x86_64-cmake mingw-w64-ucrt-x86_64-SDL2 mingw-w64-ucrt-x86_64-SDL2_ttf
$ mkdir -p out/debug
$ cd out/debug
$ cmake -G"MSYS Makefiles" -DCMAKE_BUILD_TYPE=Debug ../../src/