| 1 | # Copyright 1999-2006 Gentoo Foundation |
1 | # Copyright 1999-2006 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.53 2006/01/15 20:31:52 vapier Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/toolchain-funcs.eclass,v 1.54 2006/01/24 20:12:53 josejx 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...) |
| … | |
… | |
| 105 | mips*) echo mips;; |
105 | mips*) echo mips;; |
| 106 | nios2*) echo nios2;; |
106 | nios2*) echo nios2;; |
| 107 | nios*) echo nios;; |
107 | nios*) echo nios;; |
| 108 | powerpc*) |
108 | powerpc*) |
| 109 | # Starting with linux-2.6.15, the 'ppc' and 'ppc64' trees |
109 | # Starting with linux-2.6.15, the 'ppc' and 'ppc64' trees |
| 110 | # have been unified into simply 'powerpc' |
110 | # have been unified into simply 'powerpc', but until 2.6.16, |
|
|
111 | # ppc32 is still using ARCH="ppc" as default |
| 111 | if [[ $(KV_to_int ${KV}) -ge $(KV_to_int 2.6.15) ]] && [[ ${type} == "kern" ]] ; then |
112 | if [[ $(KV_to_int ${KV}) -ge $(KV_to_int 2.6.16) ]] && [[ ${type} == "kern" ]] ; then |
| 112 | echo powerpc |
113 | echo powerpc |
|
|
114 | elif [[ $(KV_to_int ${KV}) -eq $(KV_to_int 2.6.15) ]] && [[ ${type} == "kern" ]] ; then |
|
|
115 | if [[ ${PROFILE_ARCH} == "ppc64" ]] ; then |
|
|
116 | echo powerpc |
|
|
117 | else |
|
|
118 | echo ppc |
|
|
119 | fi |
| 113 | elif [[ ${host} == powerpc64* ]] ; then |
120 | elif [[ ${host} == powerpc64* ]] ; then |
| 114 | echo ppc64 |
121 | echo ppc64 |
| 115 | elif [[ ${PROFILE_ARCH} == "ppc64" ]] ; then |
122 | elif [[ ${PROFILE_ARCH} == "ppc64" ]] ; then |
| 116 | ninj ppc64 ppc |
123 | ninj ppc64 ppc |
| 117 | else |
124 | else |