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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 9A8921382C5 for ; Sat, 13 Mar 2021 12:29:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F1263E08C3; Sat, 13 Mar 2021 12:29:29 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D8A6BE08C3 for ; Sat, 13 Mar 2021 12:29:29 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id EA185340988 for ; Sat, 13 Mar 2021 12:29:28 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9C58813B for ; Sat, 13 Mar 2021 12:29:27 +0000 (UTC) From: "Fabian Groffen" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Fabian Groffen" Message-ID: <1615638471.3d12a4fb0cb041c7a6ff652ae0c6b2ca1d0f2a9b.grobian@gentoo> Subject: [gentoo-commits] repo/proj/prefix:master commit in: scripts/ X-VCS-Repository: repo/proj/prefix X-VCS-Files: scripts/bootstrap-prefix.sh X-VCS-Directories: scripts/ X-VCS-Committer: grobian X-VCS-Committer-Name: Fabian Groffen X-VCS-Revision: 3d12a4fb0cb041c7a6ff652ae0c6b2ca1d0f2a9b X-VCS-Branch: master Date: Sat, 13 Mar 2021 12:29:27 +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: 53132a0d-3154-4cec-9350-671c95b0371e X-Archives-Hash: e20b9ddb2d99aaccd842ef9195c77771 commit: 3d12a4fb0cb041c7a6ff652ae0c6b2ca1d0f2a9b Author: Fabian Groffen gentoo org> AuthorDate: Sat Mar 13 12:27:51 2021 +0000 Commit: Fabian Groffen gentoo org> CommitDate: Sat Mar 13 12:27:51 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=3d12a4fb scripts/bootstrap-prefix: use binutils without gold in stage2 If we don't have a c++ compiler, we're trying to build one, so it helps in that case if the linker (binutils) doesn't impose a c++ dependency on us there. Closes: https://bugs.gentoo.org/770289 Signed-off-by: Fabian Groffen gentoo.org> scripts/bootstrap-prefix.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/bootstrap-prefix.sh b/scripts/bootstrap-prefix.sh index 70a418cb71..6789abd382 100755 --- a/scripts/bootstrap-prefix.sh +++ b/scripts/bootstrap-prefix.sh @@ -486,6 +486,7 @@ bootstrap_setup() { # stage2 libstdc++.so might conflict with that of stage3. The # trade-off is just not to use cxx. dev-libs/gmp -cxx + sys-devel/binutils -gold EOF }