Is there a straightforward path to building Zig with polyglot build systems like Bazel and Buck2? I'm worried Zig's reliance on Turing complete build scripts will make building (and caching) such code difficult in those deterministic systems. In Rust, libraries that eschew build.rs are far preferable for this reason. Do Zig libraries typically have a lot of custom build setup?
rockwotj|4 months ago
https://github.com/aherrmann/rules_zig
Real world projects like ZML uses it:
https://github.com/zml/zml
esjeon|4 months ago
[1]: https://andrewkelley.me/post/zig-cc-powerful-drop-in-replace...