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 A5430138206 for ; Mon, 15 Jan 2018 19:38:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CE37EE082B; Mon, 15 Jan 2018 19:38:22 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 AA4FFE082B for ; Mon, 15 Jan 2018 19:38:22 +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 D6307335C34 for ; Mon, 15 Jan 2018 19:38:20 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 995F0151 for ; Mon, 15 Jan 2018 19:38:19 +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: <1516044014.626f41a9781c566d38796a9dabb7971a016b0e64.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: 626f41a9781c566d38796a9dabb7971a016b0e64 X-VCS-Branch: master Date: Mon, 15 Jan 2018 19:38: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-Archives-Salt: b9eb056a-abf5-4b13-96b7-46b554b5e60c X-Archives-Hash: c06151feaf232c4198214b9883a51ae7 commit: 626f41a9781c566d38796a9dabb7971a016b0e64 Author: Fabian Groffen gentoo org> AuthorDate: Mon Jan 15 19:20:14 2018 +0000 Commit: Fabian Groffen gentoo org> CommitDate: Mon Jan 15 19:20:14 2018 +0000 URL: https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=626f41a9 scripts/bootstrap-prefix: add small note about gcc-4.7 wrt c++ scripts/bootstrap-prefix.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/bootstrap-prefix.sh b/scripts/bootstrap-prefix.sh index 7afede079e..56a99fa65b 100755 --- a/scripts/bootstrap-prefix.sh +++ b/scripts/bootstrap-prefix.sh @@ -179,6 +179,8 @@ configure_toolchain() { # stage1 compiler that can build with C only. # But gcc-4.7 fails to build with gcc-5.4, so we check for # >gcc-4.7, as anything newer provides c++ anyway (#619542). + # gcc-4.7 is the last version not to require a c++ compiler to + # build eval $( (gcc -E - | grep compiler_stage1) <<-EOP #if defined(__GNUC__) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ > 7)) compiler_stage1+=" sys-devel/gcc"