From 8fd4c36bf90baf8d2f7614e61b779aa75c66ee90 Mon Sep 17 00:00:00 2001 From: Jakub Konka Date: Mon, 22 Jan 2024 23:21:55 +0100 Subject: [PATCH] build: bump max_rss for building the compiler again --- build.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.zig b/build.zig index a430512cdd..1b5ca01ea2 100644 --- 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,