| 1 | # Copyright 1999-2005 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.26 2005/01/16 10:31:59 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...) |
| … | |
… | |
| 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 | } |