| 1 | # Copyright 1999-2007 Gentoo Foundation |
1 | # Copyright 1999-2007 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.71 2007/07/11 04:06:29 robbat2 Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/toolchain-funcs.eclass,v 1.73 2007/07/22 19:59:48 vapier Exp $ |
| 4 | # |
4 | # |
| 5 | # Maintainer: Toolchain Ninjas <toolchain@gentoo.org> |
5 | # Maintainer: 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...) |
| … | |
… | |
| 122 | [[ -z ${host} ]] && host=${CTARGET:-${CHOST}} |
122 | [[ -z ${host} ]] && host=${CTARGET:-${CHOST}} |
| 123 | |
123 | |
| 124 | case ${host} in |
124 | case ${host} in |
| 125 | alpha*) echo alpha;; |
125 | alpha*) echo alpha;; |
| 126 | arm*) echo arm;; |
126 | arm*) echo arm;; |
|
|
127 | avr*) ninj avr32 avr;; |
| 127 | bfin*) ninj blackfin bfin;; |
128 | bfin*) ninj blackfin bfin;; |
| 128 | cris*) echo cris;; |
129 | cris*) echo cris;; |
| 129 | hppa*) ninj parisc hppa;; |
130 | hppa*) ninj parisc hppa;; |
| 130 | i?86*) ninj i386 x86;; |
131 | i?86*) ninj i386 x86;; |
| 131 | ia64*) echo ia64;; |
132 | ia64*) echo ia64;; |
| … | |
… | |
| 161 | && ninj sparc64 sparc \ |
162 | && ninj sparc64 sparc \ |
| 162 | || echo sparc |
163 | || echo sparc |
| 163 | ;; |
164 | ;; |
| 164 | vax*) echo vax;; |
165 | vax*) echo vax;; |
| 165 | x86_64*) ninj x86_64 amd64;; |
166 | x86_64*) ninj x86_64 amd64;; |
| 166 | *) echo ${ARCH};; |
167 | |
|
|
168 | # since our usage of tc-arch is largely concerned with |
|
|
169 | # normalizing inputs for testing ${CTARGET}, let's filter |
|
|
170 | # other cross targets (mingw and such) into the unknown. |
|
|
171 | *) echo unknown;; |
| 167 | esac |
172 | esac |
| 168 | } |
173 | } |
| 169 | tc-arch-kernel() { |
174 | tc-arch-kernel() { |
| 170 | tc-ninja_magic_to_arch kern $@ |
175 | tc-ninja_magic_to_arch kern $@ |
| 171 | } |
176 | } |