| author | |
| committer | |
| log | 5ec59f2a01e268cdbd85f4a2babc62f9996513b7 |
| tree | 135cd17a3db2006b11c2bf6de91694c83bcc9613 |
| parent | 1c48588fc8c218a0db0a6f511302020830fc3990 |
Previous commit caused this error to be printed:
zig build-exe zig Debug aarch64-macos-none: error: memory usage peaked
at 6323765248 bytes, exceeding the declared upper bound of 52000000001 files changed, 4 insertions(+), 1 deletions(-)
build.zig+4-1| ... | ... | @@ -578,7 +578,10 @@ fn addCompilerStep( |
| 578 | 578 | .root_source_file = .{ .path = "src/main.zig" }, |
| 579 | 579 | .target = target, |
| 580 | 580 | .optimize = optimize, |
| 581 | .max_rss = 5_200_000_000, | |
| 581 | .max_rss = if (target.getObjectFormat() == .macho) | |
| 582 | 6_350_000_000 | |
| 583 | else | |
| 584 | 5_200_000_000, | |
| 582 | 585 | }); |
| 583 | 586 | exe.stack_size = stack_size; |
| 584 | 587 | exe.addAnonymousModule("aro", .{ |