Fixed for windows build

This commit is contained in:
jess 2026-04-22 16:15:26 -07:00
parent 671c0427c4
commit 6e1585b6bd
2 changed files with 11 additions and 3 deletions

View File

@ -18,7 +18,7 @@ kicad-ipc-rs = { git = "https://git.else-if.org/jess/kicad-ipc-rs.git" }
prost-types = "0.14"
kiutils_kicad = "0.3"
kiutils_sexpr = "0.1"
siphon = { path = "../Siphon" }
siphon = { git = "https://git.else-if.org/jess/Siphon.git" }
acord-viewport = { git = "https://git.else-if.org/jess/Acord.git" }

View File

@ -44,11 +44,19 @@ In the MSYS2 shell:
```sh
# ARM64 (Snapdragon X, Surface Pro 11, etc.)
pacman -Syu
pacman -S --needed mingw-w64-clang-aarch64-toolchain git
pacman -S --needed \
mingw-w64-clang-aarch64-toolchain \
mingw-w64-clang-aarch64-cmake \
mingw-w64-clang-aarch64-ninja \
git
# x86_64 (Intel / AMD)
pacman -Syu
pacman -S --needed mingw-w64-ucrt-x86_64-toolchain git
pacman -S --needed \
mingw-w64-ucrt-x86_64-toolchain \
mingw-w64-ucrt-x86_64-cmake \
mingw-w64-ucrt-x86_64-ninja \
git
```
(You can close + reopen the shell after the first `pacman -Syu` if it asks you to.)