Commit 43f240803d

Andrew Kelley <andrew@ziglang.org>
2024-03-20 19:22:35
mingw-w64 updater: don't omit win32 def files
see #18968
1 parent 5005c62
Changed files (1)
tools/update_mingw.zig
@@ -94,9 +94,6 @@ pub fn main() !void {
 
             if (blacklisted) continue;
 
-            if (std.mem.startsWith(u8, entry.basename, "api-ms-win-"))
-                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;