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 6AAAE1389F5 for ; Fri, 31 Oct 2014 01:56:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E841DE087C; Fri, 31 Oct 2014 01:56:55 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 49AE7E086C for ; Fri, 31 Oct 2014 01:56:55 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 438733404DE for ; Fri, 31 Oct 2014 01:56:54 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E44B691C3 for ; Fri, 31 Oct 2014 01:56:52 +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: <1414017339.dd74b7ca6c7a30031dc6fe967fc5c6764ef0fab2.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: dd74b7ca6c7a30031dc6fe967fc5c6764ef0fab2 X-VCS-Branch: master Date: Fri, 31 Oct 2014 01:56:52 +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: 87cd651d-9335-4120-9a07-34a0a9cdff37 X-Archives-Hash: 85b08bea606a4dcf054df7a8cba05d28 commit: dd74b7ca6c7a30031dc6fe967fc5c6764ef0fab2 Author: Tim Harder gentoo org> AuthorDate: Wed Oct 22 22:35:39 2014 +0000 Commit: Mike Frysinger gentoo org> CommitDate: Wed Oct 22 22:35:39 2014 +0000 URL: http://sources.gentoo.org/gitweb/?p=proj/crossdev.git;a=commit;h=dd74b7ca crossdev: update msp430 support to use standard binutils/gcc/newlib/gdb Signed-off-by: Tim Harder gentoo.org> Signed-off-by: Mike Frysinger gentoo.org> --- crossdev | 18 +++++++----------- 1 file changed, 7 insertions(+), 11 deletions(-) diff --git a/crossdev b/crossdev index aa7be29..f900215 100755 --- a/crossdev +++ b/crossdev @@ -130,7 +130,7 @@ parse_target() { - h8300 http://h8300-hms.sourceforge.net/ - mingw32 http://www.mingw.org/ - mingw64 http://mingw-w64.sourceforge.net/ - - msp430 http://mspgcc.sourceforge.net/ + - msp430 http://www.ti.com/msp430 - nds32 http://github.com/nds32 - nios2 http://www.altera.com/products/ip/processors/nios2/ni2-index.html - xc16x http://www.infineon.com/ @@ -183,7 +183,7 @@ parse_target() { CTARGET="${CTARGET}-unknown-linux-gnueabi";; aarch64*|alpha*|cris*|hppa*|ia64*|m68*|mips*|powerpc*|sparc*|sh*|tile*) CTARGET="${CTARGET}-unknown-linux-gnu";; - bfin*|h8300*|nds32*|nios2*|spu*|xc16x*) + bfin*|h8300*|msp430*|nds32*|nios2*|spu*|xc16x*) CTARGET="${CTARGET}-elf";; esac fi @@ -234,15 +234,11 @@ parse_target() { KCAT="dev-util"; KPKG="w32api"; LCAT="dev-util"; LPKG="mingw-runtime";; - msp430) - KCAT="dev-embedded"; KPKG="msp430mcu"; - BCAT="dev-embedded"; BPKG="msp430-binutils"; - GCAT="dev-embedded"; GPKG="msp430-gcc"; - LCAT="dev-embedded"; LPKG="msp430-libc"; - DCAT="dev-embedded"; DPKG="msp430-gdb"; - GUSE="-fortran -openmp"; - MULTILIB_USE="yes" - WITH_DEF_HEADERS="no";; + msp430*) + BVER=">=2.24.90"; + GVER=">=4.9.1"; + LVER=">=2.1.0"; + DVER=">=7.7";; nios2*) BPKG="binutils-nios2";