From 139734154070b0e229df4c6c0e3297badd1d4fdc Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Sun, 10 Mar 2024 18:22:53 -0700 Subject: [PATCH] add missing field to module creation Fixes a merge conflict with one of mlugg's recent branches. --- src/Compilation.zig | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Compilation.zig b/src/Compilation.zig index 2bb80a9abe..13fb672042 100644 --- a/src/Compilation.zig +++ b/src/Compilation.zig @@ -3941,6 +3941,7 @@ fn workerDocsWasmFallible(comp: *Compilation, prog_node: *std.Progress.Node) any .cc_argv = &.{}, .parent = null, .builtin_mod = null, + .builtin_modules = null, // there is only one module in this compilation }); const bin_basename = try std.zig.binNameAlloc(arena, .{ .root_name = root_name,