From 9bff77a12a4f6eedeadbd2ad6076be4fe2c4e804 Mon Sep 17 00:00:00 2001 From: DoKoB Date: Tue, 5 Aug 2025 08:11:36 +0530 Subject: [PATCH] fix: initial zig build caused by self.step.evalZigProcess() --- build.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.zig b/build.zig index f3dd2d2..8b22a3c 100644 --- a/build.zig +++ b/build.zig @@ -519,7 +519,7 @@ const ZiglingStep = struct { // NOTE: After many changes in zig build system, we need to create the cache path manually. // See https://github.com/ziglang/zig/pull/21115 // Maybe there is a better way (in the future). - const exe_dir = try self.step.evalZigProcess(zig_args.items, prog_node, false); + const exe_dir = try self.step.evalZigProcess(zig_args.items, prog_node, false, null, b.allocator); const exe_name = switch (self.exercise.kind) { .exe => self.exercise.name(), .@"test" => "test",