zig

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

commit 5d96a58f1d02d162fdff3e0ef0d742ee1d5074a7 (tree)
parent bf58a3bc082a7d305df082360ef93316d8c8dfd6
Author: Alex Rønne Petersen <alex@alexrp.com>
Date:   Sun,  7 Dec 2025 11:27:35 +0100

build: bump test-compiler-rt max_rss to 868_445_388 on x86_64-linux

Diffstat:
Mbuild.zig | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/build.zig b/build.zig @@ -522,8 +522,8 @@ pub fn build(b: *std.Build) !void { .loongarch64 => 598_884_352, .riscv64 => 636_429_516, .s390x => 574_166_630, - .x86_64 => 764_861_644, - else => 800_000_000, + .x86_64 => 868_445_388, + else => 900_000_000, }, .macos => switch (b.graph.host.result.cpu.arch) { .aarch64 => 701_413_785, @@ -533,7 +533,7 @@ pub fn build(b: *std.Build) !void { .x86_64 => 536_414_208, else => 600_000_000, }, - else => 800_000_000, + else => 900_000_000, }, }));