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 C698B1582EF for ; Mon, 10 Mar 2025 13:16:28 +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 AC4433430F8 for ; Mon, 10 Mar 2025 13:16:28 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id CE5F51103A8; Mon, 10 Mar 2025 13:16:23 +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 C252F1103A8 for ; Mon, 10 Mar 2025 13:16:23 +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 7B9413430B3 for ; Mon, 10 Mar 2025 13:16:23 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DCCD028AE for ; Mon, 10 Mar 2025 13:16:21 +0000 (UTC) From: "Ionen Wolkens" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ionen Wolkens" Message-ID: <1741612533.e53035ee6d462eac8c9f922830359142e808a20f.ionen@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-emulation/pcsx2/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-emulation/pcsx2/pcsx2-2.2.0-r1.ebuild X-VCS-Directories: games-emulation/pcsx2/ X-VCS-Committer: ionen X-VCS-Committer-Name: Ionen Wolkens X-VCS-Revision: e53035ee6d462eac8c9f922830359142e808a20f X-VCS-Branch: master Date: Mon, 10 Mar 2025 13:16:21 +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: ef0e09b1-13f6-4827-9414-91029f10fc7f X-Archives-Hash: 596af20ac364def0ed9ab5a3aa2a29ee commit: e53035ee6d462eac8c9f922830359142e808a20f Author: Ionen Wolkens gentoo org> AuthorDate: Mon Mar 10 13:07:22 2025 +0000 Commit: Ionen Wolkens gentoo org> CommitDate: Mon Mar 10 13:15:33 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e53035ee games-emulation/pcsx2: fix build with clang:20 Signed-off-by: Ionen Wolkens gentoo.org> games-emulation/pcsx2/pcsx2-2.2.0-r1.ebuild | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/games-emulation/pcsx2/pcsx2-2.2.0-r1.ebuild b/games-emulation/pcsx2/pcsx2-2.2.0-r1.ebuild index 35d596e13f4d..181d5165a2d7 100644 --- a/games-emulation/pcsx2/pcsx2-2.2.0-r1.ebuild +++ b/games-emulation/pcsx2/pcsx2-2.2.0-r1.ebuild @@ -113,6 +113,10 @@ src_configure() { # to remove if bundled lzma code is updated like 7zip did (bug #935298) use elibc_musl && append-cppflags -DZ7_AFFINITY_DISABLE + # workaround for clang:20, backporting to old fmt would be complicated + # https://github.com/fmtlib/fmt/issues/4177 (probably?) + append-cppflags -DFMT_CONSTEVAL= + local mycmakeargs=( -DBUILD_SHARED_LIBS=no -DDISABLE_ADVANCE_SIMD=yes