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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 5EB0B158041 for ; Mon, 4 Mar 2024 05:02:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9D6E42BC029; Mon, 4 Mar 2024 05:02:34 +0000 (UTC) Received: from smtp.gentoo.org (mail.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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 808D02BC029 for ; Mon, 4 Mar 2024 05:02:34 +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 81C02340906 for ; Mon, 4 Mar 2024 05:02:33 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DD7CE119 for ; Mon, 4 Mar 2024 05:02:31 +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: <1709528499.b34a8017a0faa59faac8d19621c7e9ff1fb9402e.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-emulation/dolphin/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-emulation/dolphin/dolphin-5.0_p20220520-r2.ebuild games-emulation/dolphin/dolphin-9999.ebuild X-VCS-Directories: games-emulation/dolphin/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: b34a8017a0faa59faac8d19621c7e9ff1fb9402e X-VCS-Branch: master Date: Mon, 4 Mar 2024 05:02:31 +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: 973a72e1-7590-4fa1-819c-f1cf5f0de8f8 X-Archives-Hash: d07f6b59fa1dcf857e26e771aa3014e6 commit: b34a8017a0faa59faac8d19621c7e9ff1fb9402e Author: Sam James gentoo org> AuthorDate: Mon Mar 4 05:01:39 2024 +0000 Commit: Sam James gentoo org> CommitDate: Mon Mar 4 05:01:39 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b34a8017 games-emulation/dolphin: filter LTO with USE=gui Interaction between Qt and LTO. Bug: https://bugs.dolphin-emu.org/issues/11481 Bug: https://bugreports.qt.io/browse/QTBUG-61710 Closes: https://bugs.gentoo.org/891225 Signed-off-by: Sam James gentoo.org> games-emulation/dolphin/dolphin-5.0_p20220520-r2.ebuild | 7 +++++-- games-emulation/dolphin/dolphin-9999.ebuild | 7 +++++-- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/games-emulation/dolphin/dolphin-5.0_p20220520-r2.ebuild b/games-emulation/dolphin/dolphin-5.0_p20220520-r2.ebuild index af6e7afd45e0..c1f43ed2cbd5 100644 --- a/games-emulation/dolphin/dolphin-5.0_p20220520-r2.ebuild +++ b/games-emulation/dolphin/dolphin-5.0_p20220520-r2.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 -inherit cmake desktop xdg-utils pax-utils +inherit cmake desktop flag-o-matic xdg-utils pax-utils if [[ ${PV} == *9999 ]] then @@ -153,6 +153,9 @@ src_prepare() { } src_configure() { + # bug #891225 (https://bugs.dolphin-emu.org/issues/11481, QTBUG-61710) + use gui && filter-lto + local mycmakeargs=( # Use ccache only when user did set FEATURES=ccache (or similar) # not when ccache binary is present in system (automagic). diff --git a/games-emulation/dolphin/dolphin-9999.ebuild b/games-emulation/dolphin/dolphin-9999.ebuild index 690c3afb5517..25bf321c0c70 100644 --- a/games-emulation/dolphin/dolphin-9999.ebuild +++ b/games-emulation/dolphin/dolphin-9999.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 -inherit cmake desktop xdg-utils pax-utils +inherit cmake desktop flag-o-matic xdg-utils pax-utils if [[ ${PV} == *9999 ]] then @@ -151,6 +151,9 @@ src_prepare() { } src_configure() { + # bug #891225 (https://bugs.dolphin-emu.org/issues/11481, QTBUG-61710) + use gui && filter-lto + local mycmakeargs=( # Use ccache only when user did set FEATURES=ccache (or similar) # not when ccache binary is present in system (automagic).