gnu: zig-0.14: Set max_rss to unlimited.

Upstream sets this for CI purposes, but it fails my ARM builds. The
limit itself doesn't make too much sense as long as zig builds and the
build host is big enough, so simply allowing unlimited rss should be
fine.

* gnu/packages/zig.scm (zig-0.14)[source]: Set max_rss to unlimited.

Change-Id: I2dcd6f9f41f41eadad94aaf8eab4ead81ecb3c30
Signed-off-by: Hilton Chain <hako@ultrarare.space>
Modified-by: Hilton Chain <hako@ultrarare.space>
This commit is contained in:
Tommy Langhelle 2025-04-04 13:53:19 +02:00 committed by Hilton Chain
parent 883fd4bba0
commit f3a8c28f3f
No known key found for this signature in database
GPG key ID: ACC66D09CA528292

View file

@ -1871,7 +1871,13 @@ toolchain. Among other features it provides
(search-patches
"zig-0.14-use-baseline-cpu-by-default.patch"
"zig-0.14-use-system-paths.patch"
"zig-0.14-fix-runpath.patch"))))
"zig-0.14-fix-runpath.patch"))
(snippet
#~(begin
#$(origin-snippet (package-source zig-0.13))
;; TODO: Add this to zig-source.
(substitute* "build.zig"
(("\\.*.max_rss.*") ""))))))
(inputs
(modify-inputs (package-inputs zig-0.13)
(replace "clang" clang-19)