I've been working through this here: https://github.com/ziglang/zig/issues/12703 , but it seems like building llvm with MSVC (https://github.com/ziglang/zig/wiki/Building-Zig-on-Windows#option-2-using-cmake-and-microsoft-visual-studio) doesn't work atm because of conflicting C libs (zig tries to link the mingw crt2 while llvm pulls in libcmt). I think the CI must build llvm with a different compiler?
GitHub
Zig Version 26e9839 Steps to Reproduce Within the zig folder: mkdir build-release pushd build-release "c:\Program Files\CMake\bin\cmake.exe" .. -Thost=x64 -G "Visual Stud...