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 6AB9A138334 for ; Tue, 24 Jul 2018 23:11:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 49E87E08E0; Tue, 24 Jul 2018 23:11:31 +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 DB7D6E088A for ; Tue, 24 Jul 2018 23:11:30 +0000 (UTC) Received: from symphony.aura-online.co.uk (154.189.187.81.in-addr.arpa [81.187.189.154]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) (Authenticated sender: chewi) by smtp.gentoo.org (Postfix) with ESMTPSA id 3F4FF33BEC5; Tue, 24 Jul 2018 23:11:29 +0000 (UTC) From: James Le Cuirot To: gentoo-dev@lists.gentoo.org Cc: James Le Cuirot Subject: [gentoo-dev] [arm17] [PATCH] crossdev: Make armv[67] default to hardfloat following eclass change Date: Wed, 25 Jul 2018 00:11:18 +0100 Message-Id: <20180724231118.30841-1-chewi@gentoo.org> X-Mailer: git-send-email 2.17.0 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 X-Archives-Salt: 39308ada-363c-4c5e-af9a-57c3e98f6963 X-Archives-Hash: c8878a4bae27838ee8fe8b7e3b22de45 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 --- 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