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 5AF8C138334 for ; Tue, 24 Jul 2018 23:44:54 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 176DFE08C9; Tue, 24 Jul 2018 23:44: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 9301AE089E for ; Tue, 24 Jul 2018 23:44:48 +0000 (UTC) Received: from sf (trofi-1-pt.tunnel.tserv1.lon2.ipv6.he.net [IPv6:2001:470:1f1c:a0f::2]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) (Authenticated sender: slyfox) by smtp.gentoo.org (Postfix) with ESMTPSA id 77E3533BEA5; Tue, 24 Jul 2018 23:44:46 +0000 (UTC) Date: Wed, 25 Jul 2018 00:44:43 +0100 From: Sergei Trofimovich To: James Le Cuirot Cc: gentoo-dev@lists.gentoo.org Subject: Re: [gentoo-dev] [arm17] [PATCH] crossdev: Make armv[67] default to hardfloat following eclass change Message-ID: <20180725004443.199e25fd@sf> In-Reply-To: <20180724231118.30841-1-chewi@gentoo.org> References: <20180724231118.30841-1-chewi@gentoo.org> X-Mailer: Claws Mail 3.16.0 (GTK+ 2.24.32; x86_64-pc-linux-gnu) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-dev@lists.gentoo.org Reply-to: gentoo-dev@lists.gentoo.org MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Archives-Salt: 273f367e-ff04-45e0-bf9d-e2af2f3da2df X-Archives-Hash: 41bc485c4747ebf559a92c7d13f59855 On Wed, 25 Jul 2018 00:11:18 +0100 James Le Cuirot wrote: > armv7a-unknown-linux-gnueabi would have previously been treated as > hardfloat but is now softfloat. > > I have removed the armv7a-hardfloat-linux-gnueabi-7.3.0 example from > the README to avoid confusion even though it does still work. Applied. Thanks! > Signed-off-by: James Le Cuirot > --- > README | 3 +-- > crossdev | 2 ++ > 2 files changed, 3 insertions(+), 2 deletions(-) > > diff --git a/README b/README > index 99287a1..7aecdc4 100644 > --- a/README > +++ b/README > @@ -50,8 +50,7 @@ executables or kernels if applies): > alpha-unknown-linux-gnu-7.3.0 > arm-none-eabi-7.3.0 > armv5tel-softfloat-linux-gnueabi-7.3.0 > - armv7a-hardfloat-linux-gnueabi-7.3.0 > - armv7a-unknown-linux-gnueabi-7.3.0 > + armv7a-unknown-linux-gnueabihf-7.3.0 > avr-7.3.0 > hppa-unknown-linux-gnu-7.3.0 > hppa2.0-unknown-linux-gnu-7.3.0 > diff --git a/crossdev b/crossdev > index a4b32a2..4ee7076 100755 > --- a/crossdev > +++ b/crossdev > @@ -189,6 +189,8 @@ parse_target() { > CTARGET="${CTARGET}-ibm-linux-gnu";; > arm64*) > CTARGET="aarch${CTARGET#arm}-unknown-linux-gnu";; > + armv[67]*) > + CTARGET="${CTARGET}-unknown-linux-gnueabihf";; > arm*) > CTARGET="${CTARGET}-unknown-linux-gnueabi";; > aarch64*|alpha*|cris*|hppa*|ia64*|m68*|mips*|powerpc*|sparc*|sh*|tile*) > -- > 2.17.0 > > -- Sergei