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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 77D9D1580E0 for ; Thu, 30 Jan 2025 01:31: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 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 5EE233430D2 for ; Thu, 30 Jan 2025 01:31:29 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 563D81103B6; Thu, 30 Jan 2025 01:31:28 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 bobolink.gentoo.org (Postfix) with ESMTPS id 48E821103B6 for ; Thu, 30 Jan 2025 01:31: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 EDF243430D0 for ; Thu, 30 Jan 2025 01:31:27 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3562511A7 for ; Thu, 30 Jan 2025 01:31:26 +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: <1738199989.d0f22208ed3fe7a108614c01217d8a6cfffcf049.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/ X-VCS-Repository: repo/gentoo X-VCS-Files: eclass/toolchain.eclass X-VCS-Directories: eclass/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: d0f22208ed3fe7a108614c01217d8a6cfffcf049 X-VCS-Branch: master Date: Thu, 30 Jan 2025 01:31:26 +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: 12919d27-b219-44d3-af69-1aab4b9ded89 X-Archives-Hash: 15efed10b8f57c9b5684e608421cb012 commit: d0f22208ed3fe7a108614c01217d8a6cfffcf049 Author: Sam James gentoo org> AuthorDate: Thu Jan 30 01:19:49 2025 +0000 Commit: Sam James gentoo org> CommitDate: Thu Jan 30 01:19:49 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d0f22208 toolchain.eclass: add TODO for --enable-version-specific-runtime-libs While we pass it only for Darwin, I have to wonder if these days at least whether we should be using that all the time instead of passing LIBPATH. Prompted by https://inbox.sourceware.org/libc-alpha/5fc11ae8d8cc26b8cb2b500ee7a08ce8f6e98588.camel xry111.site/. Signed-off-by: Sam James gentoo.org> eclass/toolchain.eclass | 2 ++ 1 file changed, 2 insertions(+) diff --git a/eclass/toolchain.eclass b/eclass/toolchain.eclass index 3f7c2fbff780..2bfa751b531d 100644 --- a/eclass/toolchain.eclass +++ b/eclass/toolchain.eclass @@ -2266,6 +2266,8 @@ gcc_do_make() { local emakeargs=( LDFLAGS="${LDFLAGS}" + # TODO: Can we replace this with --enable-version-specific-runtime-libs + # these days? LIBPATH="${LIBPATH}" )