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 9F585138334 for ; Thu, 27 Sep 2018 23:44:08 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2A900E093D; Thu, 27 Sep 2018 23:44:07 +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 03C7BE093D for ; Thu, 27 Sep 2018 23:44:06 +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 4A5AC335C95 for ; Thu, 27 Sep 2018 23:44:05 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CFF9E3C6 for ; Thu, 27 Sep 2018 23:44:02 +0000 (UTC) From: "Jason Donenfeld" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jason Donenfeld" Message-ID: <1538091446.d30e5756540a0590ae9dd81fdc1bbf75accf9ded.zx2c4@gentoo> Subject: [gentoo-commits] proj/crossdev:master commit in: / X-VCS-Repository: proj/crossdev X-VCS-Files: crossdev X-VCS-Directories: / X-VCS-Committer: zx2c4 X-VCS-Committer-Name: Jason Donenfeld X-VCS-Revision: d30e5756540a0590ae9dd81fdc1bbf75accf9ded X-VCS-Branch: master Date: Thu, 27 Sep 2018 23:44:02 +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: 0970d535-3fad-4392-b2fa-6a7b34ac20f4 X-Archives-Hash: 6d1e0a698627cce93bd93510b82e352b commit: d30e5756540a0590ae9dd81fdc1bbf75accf9ded Author: Jason A. Donenfeld gentoo org> AuthorDate: Thu Sep 27 23:37:26 2018 +0000 Commit: Jason Donenfeld gentoo org> CommitDate: Thu Sep 27 23:37:26 2018 +0000 URL: https://gitweb.gentoo.org/proj/crossdev.git/commit/?id=d30e5756 crossdev: mips64 is sometimes called mipsisa64 This is the case for tuples like `mipsisa64r6-pc-linux-gnu`, which are required for making a working mips64r6 compiler. Signed-off-by: Jason A. Donenfeld gentoo.org> crossdev | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/crossdev b/crossdev index b8027a3..997b0a1 100755 --- a/crossdev +++ b/crossdev @@ -280,13 +280,13 @@ parse_target() { LPKG="newlib";; ppu*) TARCH=ppc64;; - mips64*-gnuabin32) + mips64*-gnuabin32|mipsisa64*-gnuabin32) [[ ${MULTILIB_ABIS} == "default" ]] && MULTILIB_ABIS="n32";; - mips64*-gnuabi64|\ - mips64*-gnuabin64) + mips64*-gnuabi64|mipsisa64*-gnuabi64|\ + mips64*-gnuabin64|mipsisa64*-gnuabin64) [[ ${MULTILIB_ABIS} == "default" ]] && MULTILIB_ABIS="n64";; - mips64*-gnuabi32|\ - mips64*-gnuabio32) + mips64*-gnuabi32|mipsisa64*-gnuabi32|\ + mips64*-gnuabio32|mipsisa64*-gnuabio32) [[ ${MULTILIB_ABIS} == "default" ]] && MULTILIB_ABIS="o32";; ee*) TARCH=mips; KPKG="[none]" @@ -351,7 +351,7 @@ parse_target() { # glibc targets *-gnu*) case ${CTARGET} in - mips64*) + mips64*|mipsisa64*) # has some support code, fails to build ;; x86_64*|i?86*|arm*|aarch64*|powerpc*)