From a6d7fecdeea61317d63a69fac3f11d176c0e98cd Mon Sep 17 00:00:00 2001 From: GalaxyShard Date: Tue, 14 Jan 2025 02:37:31 -0500 Subject: [PATCH] pass --zig-lib-dir to the build runner --- src/DocumentStore.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/DocumentStore.zig b/src/DocumentStore.zig index 7024823ef..e744a2a25 100644 --- a/src/DocumentStore.zig +++ b/src/DocumentStore.zig @@ -1005,7 +1005,7 @@ fn prepareBuildRunnerArgs(self: *DocumentStore, build_file_uri: []const u8) ![][ defer tracy_zone.end(); const base_args = &[_][]const u8{ - self.config.zig_exe_path.?, "build", "--build-runner", self.config.build_runner_path.?, + self.config.zig_exe_path.?, "build", "--build-runner", self.config.build_runner_path.?, "--zig-lib-dir", self.config.zig_lib_path.? }; var args: std.ArrayListUnmanaged([]const u8) = try .initCapacity(self.allocator, base_args.len);