| 1 | # Copyright 1999-2006 Gentoo Foundation |
1 | # Copyright 1999-2006 Gentoo Foundation |
| 2 | # Distributed under the terms of the GNU General Public License v2 |
2 | # Distributed under the terms of the GNU General Public License v2 |
| 3 | # $Header: /var/cvsroot/gentoo-x86/eclass/toolchain-funcs.eclass,v 1.51 2006/01/09 04:35:14 dostrow Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/toolchain-funcs.eclass,v 1.52 2006/01/15 20:21:59 vapier Exp $ |
| 4 | # |
4 | # |
| 5 | # Author: Toolchain Ninjas <toolchain@gentoo.org> |
5 | # Author: Toolchain Ninjas <toolchain@gentoo.org> |
| 6 | # |
6 | # |
| 7 | # This eclass contains (or should) functions to get common info |
7 | # This eclass contains (or should) functions to get common info |
| 8 | # about the toolchain (libc/compiler/binutils/etc...) |
8 | # about the toolchain (libc/compiler/binutils/etc...) |
| … | |
… | |
| 94 | [[ -z ${host} ]] && host=${CTARGET:-${CHOST}} |
94 | [[ -z ${host} ]] && host=${CTARGET:-${CHOST}} |
| 95 | |
95 | |
| 96 | case ${host} in |
96 | case ${host} in |
| 97 | alpha*) echo alpha;; |
97 | alpha*) echo alpha;; |
| 98 | arm*) echo arm;; |
98 | arm*) echo arm;; |
|
|
99 | bfin*) ninj bfin blackfin;; |
| 99 | cris*) echo cris;; |
100 | cris*) echo cris;; |
| 100 | hppa*) ninj parisc hppa;; |
101 | hppa*) ninj parisc hppa;; |
| 101 | i?86*) ninj i386 x86;; |
102 | i?86*) ninj i386 x86;; |
| 102 | ia64*) echo ia64;; |
103 | ia64*) echo ia64;; |
| 103 | m68*) echo m68k;; |
104 | m68*) echo m68k;; |
| 104 | mips*) echo mips;; |
105 | mips*) echo mips;; |
|
|
106 | nios2*) echo nios2;; |
|
|
107 | nios*) echo nios;; |
| 105 | powerpc*) |
108 | powerpc*) |
| 106 | # Starting with linux-2.6.15, the 'ppc' and 'ppc64' trees |
109 | # Starting with linux-2.6.15, the 'ppc' and 'ppc64' trees |
| 107 | # have been unified into simply 'powerpc' |
110 | # have been unified into simply 'powerpc' |
| 108 | if [[ $(KV_to_int ${KV}) -ge $(KV_to_int 2.6.15) ]] && [[ ${type} == "kern" ]] ; then |
111 | if [[ $(KV_to_int ${KV}) -ge $(KV_to_int 2.6.15) ]] && [[ ${type} == "kern" ]] ; then |
| 109 | echo powerpc |
112 | echo powerpc |