| author | |
| committer | |
| log | 869c2a03f3e99671fe0a9bacf13a8861b21097ef |
| tree | c98f1d086a186debe1670ed61e8fa9e2e65a8097 |
| parent | 25fb6de83caad1fdf6454b0a01c504dd1d7311a6 |
1 files changed, 6 insertions(+), 0 deletions(-)
tools/update_mingw.zig+6| ... | ... | @@ -94,6 +94,12 @@ pub fn main() !void { |
| 94 | 94 | |
| 95 | 95 | if (blacklisted) continue; |
| 96 | 96 | |
| 97 | if (std.mem.endsWith(u8, entry.basename, "_windowsapp.def")) | |
| 98 | continue; | |
| 99 | ||
| 100 | if (std.mem.endsWith(u8, entry.basename, "_onecore.def")) | |
| 101 | continue; | |
| 102 | ||
| 97 | 103 | src_crt_dir.copyFile(entry.path, dest_crt_dir, entry.path, .{}) catch |err| { |
| 98 | 104 | std.log.err("unable to copy {s}: {s}", .{ entry.path, @errorName(err) }); |
| 99 | 105 | fail = true; |