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)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id AF69715808B for ; Fri, 18 Feb 2022 12:27:07 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AC8CBE07D3; Fri, 18 Feb 2022 12:27:06 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 8FB13E07D3 for ; Fri, 18 Feb 2022 12:27:06 +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 8E94D343392 for ; Fri, 18 Feb 2022 12:27:04 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E6E9826D for ; Fri, 18 Feb 2022 12:27:02 +0000 (UTC) From: "Joonas Niilola" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Joonas Niilola" Message-ID: <1645187214.6fb4f8fd1f1c4a5e4dd18092d39448ac5639b52c.juippis@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: www-client/firefox/ X-VCS-Repository: repo/gentoo X-VCS-Files: www-client/firefox/firefox-97.0.1.ebuild X-VCS-Directories: www-client/firefox/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: 6fb4f8fd1f1c4a5e4dd18092d39448ac5639b52c X-VCS-Branch: master Date: Fri, 18 Feb 2022 12:27:02 +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: 13c59d21-ae8d-40a0-96ae-ff4dbf418480 X-Archives-Hash: 02c8ddf6ef7875fbab42940d51f76420 commit: 6fb4f8fd1f1c4a5e4dd18092d39448ac5639b52c Author: Joonas Niilola gentoo org> AuthorDate: Fri Feb 18 12:25:48 2022 +0000 Commit: Joonas Niilola gentoo org> CommitDate: Fri Feb 18 12:26:54 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6fb4f8fd www-client/firefox: disable gold linker for good on 97.0.1 Closes: https://bugs.gentoo.org/833573 Signed-off-by: Joonas Niilola gentoo.org> www-client/firefox/firefox-97.0.1.ebuild | 14 +++----------- 1 file changed, 3 insertions(+), 11 deletions(-) diff --git a/www-client/firefox/firefox-97.0.1.ebuild b/www-client/firefox/firefox-97.0.1.ebuild index 8ffecc9a4615..0470e6eb9aa3 100644 --- a/www-client/firefox/firefox-97.0.1.ebuild +++ b/www-client/firefox/firefox-97.0.1.ebuild @@ -826,11 +826,7 @@ src_configure() { else # ThinLTO is currently broken, see bmo#1644409 mozconfig_add_options_ac '+lto' --enable-lto=full - if tc-ld-is-gold; then - mozconfig_add_options_ac "linker is set to gold" --enable-linker=gold - else - mozconfig_add_options_ac "linker is set to bfd" --enable-linker=bfd - fi + mozconfig_add_options_ac "linker is set to bfd" --enable-linker=bfd fi if use pgo ; then @@ -847,11 +843,7 @@ src_configure() { # This is upstream's default mozconfig_add_options_ac "forcing ld=lld due to USE=clang" --enable-linker=lld else - if tc-ld-is-gold; then - mozconfig_add_options_ac "linker is set to gold" --enable-linker=gold - else - mozconfig_add_options_ac "linker is set to bfd" --enable-linker=bfd - fi + mozconfig_add_options_ac "linker is set to bfd" --enable-linker=bfd fi fi @@ -946,7 +938,7 @@ src_configure() { if use clang ; then # Nothing to do :; - elif tc-ld-is-gold || use lto ; then + elif use lto ; then append-ldflags -Wl,--no-keep-memory else append-ldflags -Wl,--no-keep-memory -Wl,--reduce-memory-overheads