From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 finch.gentoo.org (Postfix) with ESMTPS id 1F1441580F6 for ; Mon, 19 May 2025 14:00:59 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (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) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 0887234320A for ; Mon, 19 May 2025 14:00:59 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 556A211047D; Mon, 19 May 2025 14:00:54 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 bobolink.gentoo.org (Postfix) with ESMTPS id 4F9ED11047D for ; Mon, 19 May 2025 14:00:54 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 013563431F0 for ; Mon, 19 May 2025 14:00:54 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 66F272741 for ; Mon, 19 May 2025 14:00:52 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1747663205.9b7037e721c2a5ba7256a812de08be1c8b9f1c01.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/cython/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/cython/cython-3.1.1.ebuild X-VCS-Directories: dev-python/cython/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 9b7037e721c2a5ba7256a812de08be1c8b9f1c01 X-VCS-Branch: master Date: Mon, 19 May 2025 14:00:52 +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: ee11ca49-51cd-4683-9a83-b6386e28566d X-Archives-Hash: c169d514f477e3870868d269b4b01c9d commit: 9b7037e721c2a5ba7256a812de08be1c8b9f1c01 Author: Sam James gentoo org> AuthorDate: Mon May 19 13:59:42 2025 +0000 Commit: Sam James gentoo org> CommitDate: Mon May 19 14:00:05 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9b7037e7 dev-python/cython: workaround crashes on musl ... via the usual fix/workaround. Closes: https://bugs.gentoo.org/925318 Signed-off-by: Sam James gentoo.org> dev-python/cython/cython-3.1.1.ebuild | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/dev-python/cython/cython-3.1.1.ebuild b/dev-python/cython/cython-3.1.1.ebuild index 51b147eecc22..65b4160cf930 100644 --- a/dev-python/cython/cython-3.1.1.ebuild +++ b/dev-python/cython/cython-3.1.1.ebuild @@ -50,6 +50,11 @@ python_compile() { # Python gets confused when it is in sys.path before build. local -x PYTHONPATH= + if use elibc_musl ; then + # Workaround for bug #925318 + local -x LDFLAGS="${LDFLAGS} -Wl,-z,stack-size=2097152" + fi + distutils-r1_python_compile }