From 9aaecde63f4d507b11de236c9eb6fc547f256b0e Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Thu, 8 Jan 2026 20:52:42 -0800 Subject: [PATCH] build: bump freebsd max_rss error: memory usage peaked at 0.75GB (751378432 bytes), exceeding the declared upper bound of 0.74GB (743802470 bytes) --- build.zig | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/build.zig b/build.zig index aaa67f458d..29824e16e4 100644 --- a/build.zig +++ b/build.zig @@ -519,10 +519,7 @@ pub fn build(b: *std.Build) !void { .skip_libc = true, .no_builtin = true, .max_rss = switch (b.graph.host.result.os.tag) { - .freebsd => switch (b.graph.host.result.cpu.arch) { - .x86_64 => 743_802_470, - else => 800_000_000, - }, + .freebsd => 800_000_000, .linux => switch (b.graph.host.result.cpu.arch) { .aarch64 => 639_565_414, .loongarch64 => 598_884_352,