From 8497497f7888c6a347688eb60397bb48f543c1df Mon Sep 17 00:00:00 2001 From: Jan200101 Date: Mon, 21 Apr 2025 23:28:27 +0200 Subject: [PATCH] increase upper bounds of main zig executable to 9G On Fedora 42 aarch64 memory usage peaked at 8736403456 bytes --- build.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.zig b/build.zig index c7987cb67747..11df45c968dd 100644 --- a/build.zig +++ b/build.zig @@ -679,7 +679,7 @@ fn addCompilerStep(b: *std.Build, options: AddCompilerStepOptions) *std.Build.St const exe = b.addExecutable(.{ .name = "zig", - .max_rss = 7_800_000_000, + .max_rss = 9_000_000_000, .root_module = compiler_mod, }); exe.stack_size = stack_size;