Commit ca3614594a

Alex Rønne Petersen <alex@alexrp.com>
2024-11-30 12:56:52
update_mingw: Remove some leftover code.
See 4a2b23c2beb043c1e5368d3737893494d61d4060.
1 parent a68119f
Changed files (1)
tools/update_mingw.zig
@@ -9,11 +9,6 @@ pub fn main() !void {
     const zig_src_lib_path = args[1];
     const mingw_src_path = args[2];
 
-    if (std.mem.eql(u8, mingw_src_path, "--missing-mingw-source-directory")) {
-        std.log.err("this build step requires passing -Dmingw-src=[path]", .{});
-        std.process.exit(1);
-    }
-
     const dest_mingw_crt_path = try std.fs.path.join(arena, &.{
         zig_src_lib_path, "libc", "mingw",
     });