authorgravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2026-01-06 20:54:36+01:00
committergravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2026-01-06 20:55:23+01:00
log219624111be4a87b3e3b50328549c2b50746ad02
treedbbcc3dd5ba4fcbae69183ea7e5b653a45c8ef63
parent018da9662de319f6b5da45067179244c4630fd1f
signaturebadge-check Signed by SSH key SHA256:7B/LJ7bpR1eX8aCXSr4mtd5M45VMPKcx9zY8e95b5QM

build: bump max_rss for zig exe to 7_900_000_000

Needed for riscv64-linux. Overkill for everything else, but: e19c686c22d6e1666244075909b9fe1993e1ee2b.

1 files changed, 1 insertions(+), 1 deletions(-)

build.zig+1-1
...@@ -833,7 +833,7 @@ fn addCompilerMod(b: *std.Build, options: AddCompilerModOptions) *std.Build.Modu...@@ -833,7 +833,7 @@ fn addCompilerMod(b: *std.Build, options: AddCompilerModOptions) *std.Build.Modu
833fn addCompilerStep(b: *std.Build, options: AddCompilerModOptions) *std.Build.Step.Compile {833fn addCompilerStep(b: *std.Build, options: AddCompilerModOptions) *std.Build.Step.Compile {
834 const exe = b.addExecutable(.{834 const exe = b.addExecutable(.{
835 .name = "zig",835 .name = "zig",
836 .max_rss = 7_000_000_000,836 .max_rss = 7_900_000_000,
837 .root_module = addCompilerMod(b, options),837 .root_module = addCompilerMod(b, options),
838 });838 });
839 exe.stack_size = stack_size;839 exe.stack_size = stack_size;