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 A0ADC15814C for ; Sun, 15 Oct 2023 15:23:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AB7D82BC013; Sun, 15 Oct 2023 15:23:28 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 91DD42BC013 for ; Sun, 15 Oct 2023 15:23:28 +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 77CFC335CCD for ; Sun, 15 Oct 2023 15:23:27 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D71F195E for ; Sun, 15 Oct 2023 15:23:25 +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: <1697383361.adb049350a5d4b15b5ee19739d9f2baed83f6acf.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/ X-VCS-Repository: repo/gentoo X-VCS-Files: eclass/qt5-build.eclass X-VCS-Directories: eclass/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: adb049350a5d4b15b5ee19739d9f2baed83f6acf X-VCS-Branch: master Date: Sun, 15 Oct 2023 15:23:25 +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: a12168c7-cf00-40d6-a6ee-28997846e99a X-Archives-Hash: 7d156f3acc830e917f7b361989f54bb4 commit: adb049350a5d4b15b5ee19739d9f2baed83f6acf Author: Alfred Wingate protonmail com> AuthorDate: Wed Oct 11 12:30:44 2023 +0000 Commit: Sam James gentoo org> CommitDate: Sun Oct 15 15:22:41 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=adb04935 qt5-build.eclass: workaround undefined qt_version_tag (LLD 17) Bug: https://bugreports.qt.io/browse/QTBUG-111514 Bug: https://bugs.gentoo.org/915203 Signed-off-by: Alfred Wingate protonmail.com> Closes: https://github.com/gentoo/gentoo/pull/33302 Signed-off-by: Sam James gentoo.org> eclass/qt5-build.eclass | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/eclass/qt5-build.eclass b/eclass/qt5-build.eclass index 5e23d793915a..e9cb2f50fd3a 100644 --- a/eclass/qt5-build.eclass +++ b/eclass/qt5-build.eclass @@ -231,6 +231,12 @@ qt5-build_src_configure() { qt5_tools_configure fi + # Workaround for bug #915203 + # Upstream: https://bugreports.qt.io/browse/QTBUG-111514 + if [[ ${PN} != qtcore ]]; then + append-ldflags -Wl,--undefined-version + fi + qt5_foreach_target_subdir qt5_qmake }