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 AE1D2138334 for ; Tue, 24 Jul 2018 23:44:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C8DC5E08C0; Tue, 24 Jul 2018 23:44:26 +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 757BCE08C0 for ; Tue, 24 Jul 2018 23:44:26 +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 636F533BEA5 for ; Tue, 24 Jul 2018 23:44:24 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4C67F36B for ; Tue, 24 Jul 2018 23:44:22 +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: <1532475839.712070946fb41c145b455813dc33e10f10f5ce06.slyfox@gentoo> Subject: [gentoo-commits] proj/crossdev:master commit in: / X-VCS-Repository: proj/crossdev X-VCS-Files: README crossdev X-VCS-Directories: / X-VCS-Committer: slyfox X-VCS-Committer-Name: Sergei Trofimovich X-VCS-Revision: 712070946fb41c145b455813dc33e10f10f5ce06 X-VCS-Branch: master Date: Tue, 24 Jul 2018 23:44:22 +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: 08e4b061-7868-407a-9919-1c84044c8718 X-Archives-Hash: a327ed0493948baee1221069ee64fe46 commit: 712070946fb41c145b455813dc33e10f10f5ce06 Author: James Le Cuirot gentoo org> AuthorDate: Tue Jul 24 23:11:18 2018 +0000 Commit: Sergei Trofimovich gentoo org> CommitDate: Tue Jul 24 23:43:59 2018 +0000 URL: https://gitweb.gentoo.org/proj/crossdev.git/commit/?id=71207094 crossdev: Make armv[67] default to hardfloat following eclass change 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. Signed-off-by: James Le Cuirot gentoo.org> Signed-off-by: Sergei Trofimovich gentoo.org> 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*)