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 C67CF158074 for ; Tue, 24 Jun 2025 09:36: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) server-digest SHA256) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id AF193340DF9 for ; Tue, 24 Jun 2025 09:36:59 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id A2A45110362; Tue, 24 Jun 2025 09:36:58 +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) server-digest SHA256) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id 979F0110362 for ; Tue, 24 Jun 2025 09:36:58 +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) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 413023410A3 for ; Tue, 24 Jun 2025 09:36:58 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AC4532A05 for ; Tue, 24 Jun 2025 09:36:56 +0000 (UTC) From: "Jakov Smolić" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jakov Smolić" Message-ID: <1750757791.69e920cb07fb697116d88e9e8d0e08ddb3640db3.jsmolic@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libpng/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/libpng/libpng-1.6.49.ebuild X-VCS-Directories: media-libs/libpng/ X-VCS-Committer: jsmolic X-VCS-Committer-Name: Jakov Smolić X-VCS-Revision: 69e920cb07fb697116d88e9e8d0e08ddb3640db3 X-VCS-Branch: master Date: Tue, 24 Jun 2025 09:36:56 +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: 0ee2870d-2dba-4a3f-bffb-b61386c31afd X-Archives-Hash: 6a7e54879ab9a05dcf7de6db7ede9d5a commit: 69e920cb07fb697116d88e9e8d0e08ddb3640db3 Author: Jakov Smolić gentoo org> AuthorDate: Mon Jun 23 13:32:17 2025 +0000 Commit: Jakov Smolić gentoo org> CommitDate: Tue Jun 24 09:36:31 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=69e920cb media-libs/libpng: Disable RISC-V V extension Testing the latest release on a machine with C920 core fails with a lot of `Illegal instruction (core dumped) "$@"` messages even with the locally applied post-release fixes, and the upstream configure seems to have harcoded the -march flag to turn the V extension on even when it's off in the build system which won't work for systems that don't support V extension, so disable it completely for now. Closes: https://bugs.gentoo.org/958203 Signed-off-by: Jakov Smolić gentoo.org> media-libs/libpng/libpng-1.6.49.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/media-libs/libpng/libpng-1.6.49.ebuild b/media-libs/libpng/libpng-1.6.49.ebuild index 77886f50f392..a7708793d226 100644 --- a/media-libs/libpng/libpng-1.6.49.ebuild +++ b/media-libs/libpng/libpng-1.6.49.ebuild @@ -65,7 +65,7 @@ multilib_src_configure() { $(use_enable test tests) $(use_enable cpu_flags_x86_sse intel-sse) $(use_enable static-libs static) - --enable-riscv-rvv=check + --disable-riscv-rvv ) ECONF_SOURCE="${S}" econf "${myeconfargs[@]}"