| 1 | # Copyright 1999-2004 Gentoo Foundation |
1 | # Copyright 1999-2004 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.23 2005/01/15 01:19:28 vapier Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/toolchain-funcs.eclass,v 1.24 2005/01/15 09:05:56 vapier Exp $ |
| 4 | # |
4 | # |
| 5 | # Author: Toolchain Ninjas <ninjas@gentoo.org> |
5 | # Author: Toolchain Ninjas <ninjas@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...) |
| … | |
… | |
| 91 | tc-ninja_magic_to_arch() { |
91 | tc-ninja_magic_to_arch() { |
| 92 | ninj() { [[ ${type} == "kern" ]] && echo $1 || echo $2 ; } |
92 | ninj() { [[ ${type} == "kern" ]] && echo $1 || echo $2 ; } |
| 93 | |
93 | |
| 94 | local type=$1 |
94 | local type=$1 |
| 95 | local host=$2 |
95 | local host=$2 |
| 96 | [[ -z ${host} ]] && arg=${CHOST} |
96 | [[ -z ${host} ]] && arg=${CTARGET:-${CHOST}} |
| 97 | |
97 | |
| 98 | case ${host} in |
98 | case ${host} in |
| 99 | alpha*) echo alpha;; |
99 | alpha*) echo alpha;; |
| 100 | x86_64*) ninj x86_64 amd64;; |
100 | x86_64*) ninj x86_64 amd64;; |
| 101 | arm*) echo arm;; |
101 | arm*) echo arm;; |