From 219624111be4a87b3e3b50328549c2b50746ad02 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alex=20R=C3=B8nne=20Petersen?= Date: Tue, 6 Jan 2026 20:54:36 +0100 Subject: [PATCH] build: bump max_rss for zig exe to 7_900_000_000 Needed for riscv64-linux. Overkill for everything else, but: e19c686c22d6e1666244075909b9fe1993e1ee2b. --- build.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.zig b/build.zig index 6cd91823cd7848a93bb2edd146906f6892a91495..342c2cfada354e9cccda63484ed9252b7bcafe67 100644 --- a/build.zig +++ b/build.zig @@ -833,7 +833,7 @@ fn addCompilerMod(b: *std.Build, options: AddCompilerModOptions) *std.Build.Modu fn addCompilerStep(b: *std.Build, options: AddCompilerModOptions) *std.Build.Step.Compile { const exe = b.addExecutable(.{ .name = "zig", - .max_rss = 7_000_000_000, + .max_rss = 7_900_000_000, .root_module = addCompilerMod(b, options), }); exe.stack_size = stack_size; -- 2.54.0