zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit 9aaecde63f4d507b11de236c9eb6fc547f256b0e (tree)
parent 5e242f05510330896db202974570324cf2606c22
Author: Andrew Kelley <andrew@ziglang.org>
Date:   Thu,  8 Jan 2026 20:52:42 -0800

build: bump freebsd max_rss

error: memory usage peaked at 0.75GB (751378432 bytes), exceeding the
declared upper bound of 0.74GB (743802470 bytes)

Diffstat:
Mbuild.zig | 5+----
1 file changed, 1 insertion(+), 4 deletions(-)

diff --git 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,