diff --git a/tools/update_mingw.zig b/tools/update_mingw.zig index 7348546fd3..c4fc75759c 100644 --- a/tools/update_mingw.zig +++ b/tools/update_mingw.zig @@ -94,6 +94,12 @@ pub fn main() !void { if (blacklisted) continue; + if (std.mem.endsWith(u8, entry.basename, "_windowsapp.def")) + continue; + + if (std.mem.endsWith(u8, entry.basename, "_onecore.def")) + continue; + src_crt_dir.copyFile(entry.path, dest_crt_dir, entry.path, .{}) catch |err| { std.log.err("unable to copy {s}: {s}", .{ entry.path, @errorName(err) }); fail = true;