| 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.48 2005/11/03 10:10:48 eradicator Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/toolchain-funcs.eclass,v 1.49 2006/01/04 04:59:54 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...) |
| … | |
… | |
| 101 | i?86*) ninj i386 x86;; |
101 | i?86*) ninj i386 x86;; |
| 102 | ia64*) echo ia64;; |
102 | ia64*) echo ia64;; |
| 103 | m68*) echo m68k;; |
103 | m68*) echo m68k;; |
| 104 | mips*) echo mips;; |
104 | mips*) echo mips;; |
| 105 | powerpc64*) echo ppc64;; |
105 | powerpc64*) echo ppc64;; |
| 106 | powerpc*) [[ ${PROFILE_ARCH} == "ppc64" ]] \ |
106 | powerpc*) |
| 107 | && ninj ppc64 ppc \ |
107 | # Starting with linux-2.6.15, the 'ppc' and 'ppc64' trees |
|
|
108 | # have been unified into simply 'powerpc' |
|
|
109 | if [[ $(KV_to_int ${KV}) -ge $(KV_to_int 2.6.15) ]] ; then |
|
|
110 | echo powerpc |
|
|
111 | elif [[ ${host} == powerpc64* ]] ; then |
|
|
112 | echo ppc64 |
|
|
113 | else |
| 108 | || echo ppc |
114 | echo ppc |
|
|
115 | fi |
| 109 | ;; |
116 | ;; |
| 110 | s390*) echo s390;; |
117 | s390*) echo s390;; |
| 111 | sh64*) ninj sh64 sh;; |
118 | sh64*) ninj sh64 sh;; |
| 112 | sh*) echo sh;; |
119 | sh*) echo sh;; |
| 113 | sparc64*) ninj sparc64 sparc;; |
120 | sparc64*) ninj sparc64 sparc;; |