mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 05:44:20 +00:00
build.zig: it takes even more ram to build zig apparently
zig build-exe zig Debug aarch64-macos-none: error: memory usage peaked at 6466420736 bytes, exceeding the declared upper bound of 6350000000
This commit is contained in:
parent
8520aa585f
commit
c55a33e6d9
1 changed files with 1 additions and 1 deletions
|
|
@ -578,7 +578,7 @@ fn addCompilerStep(
|
|||
.root_source_file = .{ .path = "src/main.zig" },
|
||||
.target = target,
|
||||
.optimize = optimize,
|
||||
.max_rss = 6_350_000_000,
|
||||
.max_rss = 6_500_000_000,
|
||||
});
|
||||
exe.stack_size = stack_size;
|
||||
exe.addAnonymousModule("aro", .{
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue