From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 46B441381F3 for ; Fri, 11 Oct 2013 19:05:08 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 01D86E0AED; Fri, 11 Oct 2013 19:05:07 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 8FD2AE0AED for ; Fri, 11 Oct 2013 19:05:06 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9544233EEA8 for ; Fri, 11 Oct 2013 19:05:05 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 493FEE5460 for ; Fri, 11 Oct 2013 19:05:04 +0000 (UTC) From: "Mike Frysinger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Frysinger" Message-ID: <1381518274.1ac79abd7a53f536478763c252f0f2e38fbcffb2.vapier@gentoo> Subject: [gentoo-commits] proj/crossdev:master commit in: / X-VCS-Repository: proj/crossdev X-VCS-Files: crossdev X-VCS-Directories: / X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger X-VCS-Revision: 1ac79abd7a53f536478763c252f0f2e38fbcffb2 X-VCS-Branch: master Date: Fri, 11 Oct 2013 19:05:04 +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: 66ae9225-d009-4a69-bc01-ba81a2cbdd75 X-Archives-Hash: f516e8730dc5a0adb59cfe4b7c627175 commit: 1ac79abd7a53f536478763c252f0f2e38fbcffb2 Author: Mike Frysinger gentoo org> AuthorDate: Fri Oct 11 19:04:34 2013 +0000 Commit: Mike Frysinger gentoo org> CommitDate: Fri Oct 11 19:04:34 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/crossdev.git;a=commit;h=1ac79abd crossdev: mips: select default ABI based on target Key off some of the targets that glibc itself uses to autoselect the default ABI. Signed-off-by: Mike Frysinger gentoo.org> --- crossdev | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/crossdev b/crossdev index baebf44..81120d0 100755 --- a/crossdev +++ b/crossdev @@ -247,6 +247,14 @@ parse_target() { LPKG="newlib";; ppu*) TARCH=ppc64;; + mips64*-gnuabin32) + [[ ${MULTILIB_ABIS} == "default" ]] && MULTILIB_ABIS="n32";; + mips64*-gnuabi64|\ + mips64*-gnuabin64) + [[ ${MULTILIB_ABIS} == "default" ]] && MULTILIB_ABIS="n64";; + mips64*-gnuabi32|\ + mips64*-gnuabio32) + [[ ${MULTILIB_ABIS} == "default" ]] && MULTILIB_ABIS="o32";; ee*) TARCH=mips; KPKG="[none]" GVER="3.2.2"; BVER="2.14";