| 1 | # Copyright 1999-2004 Gentoo Foundation |
1 | # Copyright 1999-2005 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.28 2005/01/24 04:32:55 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} ]] && host=${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;; |
| … | |
… | |
| 104 | m68*) echo m68k;; |
104 | m68*) echo m68k;; |
| 105 | mips*) echo mips;; |
105 | mips*) echo mips;; |
| 106 | powerpc64*) echo ppc64;; |
106 | powerpc64*) echo ppc64;; |
| 107 | powerpc*) echo ppc;; |
107 | powerpc*) echo ppc;; |
| 108 | sparc64*) ninj sparc64 sparc;; |
108 | sparc64*) ninj sparc64 sparc;; |
| 109 | sparc*) echo sparc;; |
109 | sparc*) [[ ${PROFILE_ARCH} == "sparc64" ]] \ |
|
|
110 | && ninj sparc64 sparc \ |
|
|
111 | || echo sparc |
|
|
112 | ;; |
| 110 | s390*) echo s390;; |
113 | s390*) echo s390;; |
| 111 | sh64*) ninj sh64 sh;; |
114 | sh64*) ninj sh64 sh;; |
| 112 | sh*) echo sh;; |
115 | sh*) echo sh;; |
| 113 | i?86*) ninj i386 x86;; |
116 | i?86*) ninj i386 x86;; |
| 114 | *) echo wtf;; |
117 | *) echo ${ARCH};; |
| 115 | esac |
118 | esac |
| 116 | } |
119 | } |
| 117 | tc-arch-kernel() { |
120 | tc-arch-kernel() { |
| 118 | tc-ninja_magic_to_arch kern $@ |
121 | tc-ninja_magic_to_arch kern $@ |
| 119 | } |
122 | } |