diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2025-12-26 18:10:27 -0800 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2025-12-26 19:58:56 -0800 |
| commit | e08837b0fe2cf4ef470d8416abcc6db7573d473e (patch) | |
| tree | 9706fb029963adc00a5f029a6f47223b7aa8bb82 | |
| parent | e3f36d0d81b85c213d03ffcd090ce19bfcbb3fbc (diff) | |
| download | zig-e08837b0fe2cf4ef470d8416abcc6db7573d473e.tar.gz zig-e08837b0fe2cf4ef470d8416abcc6db7573d473e.zip | |
build.zig: simplify max_rss compiler_rt on windows
I observed this take more memory than the previous declaration
| -rw-r--r-- | build.zig | 4 |
1 files changed, 0 insertions, 4 deletions
@@ -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, }, })); |
