Reducing zig compiler stdout verbosity?

so when I build something using zig it contains cluttre, a lot of it, for example, I believe it shows what libraries it links against in or something, which makes it a bit hard for me to read errors quickly.
is there a way, using a flag or something,to make those not appear? I just want the error(s) to only appear and anything else relavent, not the entire build command that’s being internally sent lol.

Hello @emperor-limitless
Welcome to ziggit :slight_smile:

zig build --summary none does not display the build animation.

You can use a custom build runner with the flag: --build-runner [file].
The default build runner location is at lib/compiler/build_runner.zig.

3 Likes