fn invalidateSteps(maker: *Maker, steps: []const std.Build.Configuration.Step.Index) bool
fn invalidateSteps(maker: *Maker, steps: []const std.Build.Configuration.Step.Index) bool { var any_dirty = false; for (steps) |step_index| { const step = maker.stepByIndex(step_index); if (maker.invalidateResult(step)) any_dirty = true; } return any_dirty; }