commit 8fd4c36bf90baf8d2f7614e61b779aa75c66ee90 (tree)
parent e69ffcd8c1179f9945b672a7dba5a2d42fa6cf88
Author: Jakub Konka <kubkon@jakubkonka.com>
Date: Mon, 22 Jan 2024 23:21:55 +0100
build: bump max_rss for building the compiler again
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/build.zig b/build.zig
@@ -623,7 +623,7 @@ fn addCompilerStep(b: *std.Build, options: AddCompilerStepOptions) *std.Build.St
.root_source_file = .{ .path = "src/main.zig" },
.target = options.target,
.optimize = options.optimize,
- .max_rss = 7_500_000_000,
+ .max_rss = 8_000_000_000,
.strip = options.strip,
.sanitize_thread = options.sanitize_thread,
.single_threaded = options.single_threaded,