commit 2d757c65d84337d3b0a6dbdc06074966138084a0 (tree)
parent 8cdaaa7b4fcf10f1cb5603dc3bb2340ef17c9fc9
Author: Jakub Konka <kubkon@jakubkonka.com>
Date: Sun, 28 Jan 2024 01:01:43 +0100
build: reduce max rss back down to 7GB
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 = 8_000_000_000,
+ .max_rss = 7_000_000_000,
.strip = options.strip,
.sanitize_thread = options.sanitize_thread,
.single_threaded = options.single_threaded,