We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a4d18db commit 3eb06b1Copy full SHA for 3eb06b1
1 file changed
src/cmd/generate.zig
@@ -294,6 +294,7 @@ fn print_pkg_data_to(w: std.fs.File.Writer, alloc: std.mem.Allocator, cachepath:
294
if (mod.deps.len != 0) {
295
try w.writeAll(" .deps = &[_]*Package{");
296
for (mod.deps, 0..) |moddep, j| {
297
+ if (moddep.type == .system_lib or moddep.type == .framework) continue;
298
try w.print(" &_{s}", .{moddep.id[0..12]});
299
if (j != mod.deps.len - 1) try w.writeAll(",");
300
}
0 commit comments