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 6B99D138334 for ; Sun, 8 Sep 2019 11:16:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 93D62E0833; Sun, 8 Sep 2019 11:16:34 +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 7C6D2E0833 for ; Sun, 8 Sep 2019 11:16:34 +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 1C8D134AE93 for ; Sun, 8 Sep 2019 11:16:33 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5B9A9766 for ; Sun, 8 Sep 2019 11:16:30 +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: <1567941282.090d76eaa97df4429e3e06c0811d758045539783.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: 090d76eaa97df4429e3e06c0811d758045539783 X-VCS-Branch: master Date: Sun, 8 Sep 2019 11:16:30 +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: 87cd7eb5-960c-4c28-9bc0-198d284498a6 X-Archives-Hash: 1518d47d8dd750a0be670e3541b171b3 commit: 090d76eaa97df4429e3e06c0811d758045539783 Author: Sergei Trofimovich gentoo org> AuthorDate: Sun Sep 8 11:14:42 2019 +0000 Commit: Sergei Trofimovich gentoo org> CommitDate: Sun Sep 8 11:14:42 2019 +0000 URL: https://gitweb.gentoo.org/proj/crossdev.git/commit/?id=090d76ea crossdev: reenable --with-headers for mingw targets gcc can't build libgcc2.c on --without-headers setup. Needs more investigation. Reported-by: Kyle Elbert Bug: https://bugs.gentoo.org/693770 Bug: https://bugs.gentoo.org/693730 Signed-off-by: Sergei Trofimovich gentoo.org> crossdev | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/crossdev b/crossdev index 305185a..3c867b5 100755 --- a/crossdev +++ b/crossdev @@ -264,11 +264,15 @@ parse_target() { # these are the mingw64 targets that binutils seems to use x86_64-*-mingw*|*-w64-mingw*) KPKG="[none]"; - LCAT="dev-util"; LPKG="mingw64-runtime";; + LCAT="dev-util"; LPKG="mingw64-runtime" + WITH_DEF_HEADERS="yes" # gcc can't boot without headers: bug #693770 + ;; mingw*|*-mingw*) KCAT="dev-util"; KPKG="w32api"; - LCAT="dev-util"; LPKG="mingw-runtime";; + LCAT="dev-util"; LPKG="mingw-runtime" + WITH_DEF_HEADERS="yes" # gcc can't boot without headers: bug #693770 + ;; msp430*) BVER=">=2.24.90";