Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

New preprocessor, work in progress #719

Draft
wants to merge 10 commits into
base: master
Choose a base branch
from
Next Next commit
zig update: Update signature for BuildStep makeFn
ehaas committed Jul 18, 2024
commit 7703d8738636ba7cac62f207edb132f606e10f48
4 changes: 2 additions & 2 deletions build/GenerateDef.zig
Original file line number Diff line number Diff line change
@@ -50,8 +50,8 @@ pub fn create(owner: *std.Build, options: Options) std.Build.Module.Import {
};
}

fn make(step: *Step, prog_node: std.Progress.Node) !void {
_ = prog_node;
fn make(step: *Step, options: std.Build.Step.MakeOptions) !void {
_ = options;
const b = step.owner;
const self: *GenerateDef = @fieldParentPtr("step", step);
const arena = b.allocator;