I'm trying to build the Zig compiler from source on Windows using option 1b per the Wiki:
https://github.com/ziglang/zig/wiki/Building-Zig-on-Windows
I have unzipped the webkit, but when I run the suggested command
.\bin\zig.exe build -p stage3 --search-prefix C:\Users\10aded\Software\zig+llvm+lld+clang --zig-lib-dir lib -Dstatic-llvm -Duse-zig-libcxx -Dtarget=x86_64-windows-gnu
I get the following error:
info: initialize build.zig template file with 'zig init'
info: see 'zig --help' for more options
error: no build.zig file found, in the current directory or any parent directories
PS C:\Users\10aded\Software\zig+llvm+lld+clang>
This doesn't seem like a simple "complier is out of date" issue. How can I use the pre-packaged Zig compiler to make the build?