From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 72568158013 for ; Wed, 13 Dec 2023 07:47:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B655B2BC02D; Wed, 13 Dec 2023 07:47:42 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A0F022BC02D for ; Wed, 13 Dec 2023 07:47:42 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C1353335D7B for ; Wed, 13 Dec 2023 07:47:41 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 394879C7 for ; Wed, 13 Dec 2023 07:47:40 +0000 (UTC) From: "Florian Schmaus" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Florian Schmaus" Message-ID: <1702453643.ff13cba4edbd2a712f1d863b96fa549f74a9e91b.flow@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lang/zig/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-lang/zig/zig-9999.ebuild X-VCS-Directories: dev-lang/zig/ X-VCS-Committer: flow X-VCS-Committer-Name: Florian Schmaus X-VCS-Revision: ff13cba4edbd2a712f1d863b96fa549f74a9e91b X-VCS-Branch: master Date: Wed, 13 Dec 2023 07:47:40 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: ffee3895-1738-4743-8b80-d9bc56568a98 X-Archives-Hash: e8f006d1a691da3fbd0e7327d3775f3c commit: ff13cba4edbd2a712f1d863b96fa549f74a9e91b Author: Eric Joldasov getgoogleoff me> AuthorDate: Tue Dec 12 14:35:44 2023 +0000 Commit: Florian Schmaus gentoo org> CommitDate: Wed Dec 13 07:47:23 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ff13cba4 dev-lang/zig: remove ".max_rss" fields initializers from build.zig in 9999 They are too high and cause errors like below: * https://www.github.com/ziglang/zig/issues/18263 Signed-off-by: Eric Joldasov getgoogleoff.me> Closes: https://github.com/gentoo/gentoo/pull/34252 Signed-off-by: Florian Schmaus gentoo.org> dev-lang/zig/zig-9999.ebuild | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/dev-lang/zig/zig-9999.ebuild b/dev-lang/zig/zig-9999.ebuild index 6e98f73a3af4..a29f09a3db19 100644 --- a/dev-lang/zig/zig-9999.ebuild +++ b/dev-lang/zig/zig-9999.ebuild @@ -148,6 +148,11 @@ src_configure() { } src_compile() { + # Remove "limit memory usage" flags, it's already verified by + # CHECKREQS_MEMORY and causes unneccessary errors. Upstream set them + # according to CI OOM failures, which are higher than during Gentoo build. + sed -i -e '/\.max_rss = .*,/d' build.zig || die + if ! use llvm; then $(tc-getCC) -o bootstrap bootstrap.c || die "Zig's bootstrap.c compilation failed" edob ./bootstrap