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 48CBD138334 for ; Sun, 1 Sep 2019 16:15:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6AF12E08F0; Sun, 1 Sep 2019 16:15:00 +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 4E4ABE08F0 for ; Sun, 1 Sep 2019 16:15:00 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 E6F8834A851 for ; Sun, 1 Sep 2019 16:14:58 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7318976E for ; Sun, 1 Sep 2019 16:14:57 +0000 (UTC) From: "Sergei Trofimovich" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sergei Trofimovich" Message-ID: <1567354467.7283a01fc3dd7523793c28d8acd04ce7fd049389.slyfox@gentoo> Subject: [gentoo-commits] proj/crossdev:master commit in: / X-VCS-Repository: proj/crossdev X-VCS-Files: crossdev X-VCS-Directories: / X-VCS-Committer: slyfox X-VCS-Committer-Name: Sergei Trofimovich X-VCS-Revision: 7283a01fc3dd7523793c28d8acd04ce7fd049389 X-VCS-Branch: master Date: Sun, 1 Sep 2019 16:14:57 +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: 65e30609-8643-4475-8191-75eb4274d0b7 X-Archives-Hash: afb46209e760e872e5beb4d3405f220c commit: 7283a01fc3dd7523793c28d8acd04ce7fd049389 Author: Sergei Trofimovich gentoo org> AuthorDate: Sun Sep 1 16:08:26 2019 +0000 Commit: Sergei Trofimovich gentoo org> CommitDate: Sun Sep 1 16:14:27 2019 +0000 URL: https://gitweb.gentoo.org/proj/crossdev.git/commit/?id=7283a01f crossdev: set --without-headers by default In https://sourceware.org/PR24577 we discovered that riscv can't really install libc headers as it needs a cross-compiler. Before this change we had the following default build order: - cross-binutils - kernel/libc headers - stage1 gcc - glibc - stage2 gcc After this change it's: - cross-binutils - stage1 gcc - kernel headers - glibc - stage2 gcc Users can still fors headers installation with '--ith-headers' option. Bug: https://sourceware.org/PR24577 Bug: https://bugs.gentoo.org/692052 Bug: https://bugs.gentoo.org/686248 Signed-off-by: Sergei Trofimovich gentoo.org> crossdev | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/crossdev b/crossdev index 6d61f1c..e03ea78 100755 --- a/crossdev +++ b/crossdev @@ -708,7 +708,14 @@ GUSE_DISABLE="-boundschecking -d -gcj -gtk -libffi -mudflap -objc -objc++ -objc- # These are disabled only for stage1 gcc. Normally need libc present. GUSE_DISABLE_STAGE_1="${GUSE_DISABLE} -fortran -go -jit -cxx -mpx -openmp -sanitize -vtv" GUSE_DISABLE_STAGE_2="${GUSE_DISABLE}" -WITH_HEADERS="COW" WITH_DEF_HEADERS="yes" #227065 gcc-4.3+ is a pita w/out headers + +# Past history of WITH_DEF_HEADERS: +# - ????-2005: "no" +# - 2005-2019: "yes": #227065 gcc-4.3+ is a pita w/out headers +# - 2019-????: "no" again: glibc does not really support headers install +# at least on riscv-*: #686248 +WITH_HEADERS="COW" +WITH_DEF_HEADERS="no" EX_FAST="no" EX_GCC="no" EX_GDB="no"