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 6F696138334 for ; Mon, 14 Oct 2019 07:35:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 56474E08C9; Mon, 14 Oct 2019 07:35:49 +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 3C26FE08C9 for ; Mon, 14 Oct 2019 07:35:49 +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 0239B34BCE2 for ; Mon, 14 Oct 2019 07:35:48 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 27FF771A for ; Mon, 14 Oct 2019 07:35:45 +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: <1571038457.b141f7e376212dbda5c70bdabd366a0161caa9ef.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: b141f7e376212dbda5c70bdabd366a0161caa9ef X-VCS-Branch: master Date: Mon, 14 Oct 2019 07:35:45 +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: 3e91109c-cbd0-479b-8e8c-66b689d99e3c X-Archives-Hash: a34b570079b33c39c2c6ef2d7153dd3b commit: b141f7e376212dbda5c70bdabd366a0161caa9ef Author: Sergei Trofimovich gentoo org> AuthorDate: Mon Oct 14 07:34:17 2019 +0000 Commit: Sergei Trofimovich gentoo org> CommitDate: Mon Oct 14 07:34:17 2019 +0000 URL: https://gitweb.gentoo.org/proj/crossdev.git/commit/?id=b141f7e3 crossdev:drop support for short 'minw', 'mingw32' aliases >From now on to get a 32-bit toolchain users would need to specify full tuple like: i686-w64-mingw32 That will use 'dev-util/mingw64-runtime'. Bug: https://bugs.gentoo.org/584858 Signed-off-by: Sergei Trofimovich gentoo.org> crossdev | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/crossdev b/crossdev index 3c867b5..8be6e17 100755 --- a/crossdev +++ b/crossdev @@ -269,9 +269,8 @@ parse_target() { ;; mingw*|*-mingw*) - KCAT="dev-util"; KPKG="w32api"; - LCAT="dev-util"; LPKG="mingw-runtime" - WITH_DEF_HEADERS="yes" # gcc can't boot without headers: bug #693770 + # bug #584858 + die "'${CTARGET}' target is not supported anymore, use i686-w64-mingw32" ;; msp430*)