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 E66E815820A for ; Tue, 08 Jul 2025 20:28:29 +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) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id D2D3C34107F for ; Tue, 08 Jul 2025 20:28:29 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 8C67111055E; Tue, 08 Jul 2025 20:28:21 +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) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id 82B9611055E for ; Tue, 08 Jul 2025 20:28:21 +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 392DB341083 for ; Tue, 08 Jul 2025 20:28:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7349D2EA5 for ; Tue, 08 Jul 2025 20:28:19 +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: <1752004021.07b54d7784dcb979c8785db76bf722e602f00d22.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/networkmanager/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/networkmanager/networkmanager-1.52.0.ebuild X-VCS-Directories: net-misc/networkmanager/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 07b54d7784dcb979c8785db76bf722e602f00d22 X-VCS-Branch: master Date: Tue, 08 Jul 2025 20:28:19 +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: d5a1f54a-e176-4e43-9f51-750730615784 X-Archives-Hash: f627373f3ed4e15bce400859a8031a30 commit: 07b54d7784dcb979c8785db76bf722e602f00d22 Author: Michal Rostecki disroot org> AuthorDate: Sat Jul 5 19:45:35 2025 +0000 Commit: Sam James gentoo org> CommitDate: Tue Jul 8 19:47:01 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=07b54d77 net-misc/networkmanager: Workaround LLD error on musl systems Bug: https://bugs.gentoo.org/959603 Signed-off-by: Michal Rostecki disroot.org> Part-of: https://github.com/gentoo/gentoo/pull/42890 Closes: https://github.com/gentoo/gentoo/pull/42890 Signed-off-by: Sam James gentoo.org> net-misc/networkmanager/networkmanager-1.52.0.ebuild | 3 +++ 1 file changed, 3 insertions(+) diff --git a/net-misc/networkmanager/networkmanager-1.52.0.ebuild b/net-misc/networkmanager/networkmanager-1.52.0.ebuild index e8b549440573..fc9b204159b1 100644 --- a/net-misc/networkmanager/networkmanager-1.52.0.ebuild +++ b/net-misc/networkmanager/networkmanager-1.52.0.ebuild @@ -180,6 +180,9 @@ meson_nm_native_program() { } multilib_src_configure() { + # Workaround for LLD on musl systems (bug #959603) + append-ldflags $(test-flags-CCLD -Wl,--undefined-version) + # LTO is restricted in older clang for unclear reasons. # https://gitlab.freedesktop.org/NetworkManager/NetworkManager/-/issues/593 # https://gitlab.freedesktop.org/NetworkManager/NetworkManager/-/merge_requests/2053