From e08837b0fe2cf4ef470d8416abcc6db7573d473e Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Fri, 26 Dec 2025 18:10:27 -0800 Subject: [PATCH] build.zig: simplify max_rss compiler_rt on windows I observed this take more memory than the previous declaration --- build.zig | 4 ---- 1 file changed, 4 deletions(-) diff --git a/build.zig b/build.zig index f168eef662..338709c7c4 100644 --- a/build.zig +++ b/build.zig @@ -535,10 +535,6 @@ pub fn build(b: *std.Build) !void { .aarch64 => 701_413_785, else => 800_000_000, }, - .windows => switch (b.graph.host.result.cpu.arch) { - .x86_64 => 536_414_208, - else => 600_000_000, - }, else => 900_000_000, }, }));