i have problems with my build system where it doesnt cache correctly and doesnt work
i got told some direction of what to do but i am not sure how to do it:
two main issues I see:
1, the files in sysroot/ are never added as dependencies so any changes to them won’t retrigger anything (make them a LazyPath with b.path to make them automatically handled by the cache system)
2, you never add a dependency to building the image for the qemu command, don’t just have it depend on `zig-out/`, have it depend on the `out_file` LazyPath instead using `addInputArg`
my code is in https://github.com/cat1000101/NyaOS/blob/main/build.zig
if anyone has time to help tyvm