| 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.36 2005/05/02 22:42:59 vapier Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/toolchain-funcs.eclass,v 1.40 2005/07/11 15:08:06 swegener 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...) |
| 9 | |
9 | |
| 10 | inherit multilib |
10 | inherit multilib |
| 11 | |
11 | |
| 12 | ECLASS=toolchain-funcs |
|
|
| 13 | INHERITED="$INHERITED $ECLASS" |
|
|
| 14 | |
12 | |
| 15 | DESCRIPTION="Based on the ${ECLASS} eclass" |
13 | DESCRIPTION="Based on the ${ECLASS} eclass" |
| 16 | |
14 | |
| 17 | tc-getPROG() { |
15 | tc-getPROG() { |
| 18 | local var=$1 |
16 | local var=$1 |
| … | |
… | |
| 87 | fi |
85 | fi |
| 88 | return 1 |
86 | return 1 |
| 89 | } |
87 | } |
| 90 | |
88 | |
| 91 | |
89 | |
| 92 | # Parse information from CBUILD/CHOST/CTARGET rather than |
90 | # Parse information from CBUILD/CHOST/CTARGET rather than |
| 93 | # use external variables from the profile. |
91 | # use external variables from the profile. |
| 94 | tc-ninja_magic_to_arch() { |
92 | tc-ninja_magic_to_arch() { |
| 95 | ninj() { [[ ${type} == "kern" ]] && echo $1 || echo $2 ; } |
93 | ninj() { [[ ${type} == "kern" ]] && echo $1 || echo $2 ; } |
| 96 | |
94 | |
| 97 | local type=$1 |
95 | local type=$1 |
| … | |
… | |
| 105 | hppa*) ninj parisc hppa;; |
103 | hppa*) ninj parisc hppa;; |
| 106 | ia64*) echo ia64;; |
104 | ia64*) echo ia64;; |
| 107 | m68*) echo m68k;; |
105 | m68*) echo m68k;; |
| 108 | mips*) echo mips;; |
106 | mips*) echo mips;; |
| 109 | powerpc64*) echo ppc64;; |
107 | powerpc64*) echo ppc64;; |
| 110 | powerpc*) echo ppc;; |
108 | powerpc*) [[ ${PROFILE_ARCH} == "ppc64" ]] \ |
|
|
109 | && ninj ppc64 ppc \ |
|
|
110 | || echo ppc |
|
|
111 | ;; |
| 111 | sparc64*) ninj sparc64 sparc;; |
112 | sparc64*) ninj sparc64 sparc;; |
| 112 | sparc*) [[ ${PROFILE_ARCH} == "sparc64" ]] \ |
113 | sparc*) [[ ${PROFILE_ARCH} == "sparc64" ]] \ |
| 113 | && ninj sparc64 sparc \ |
114 | && ninj sparc64 sparc \ |
| 114 | || echo sparc |
115 | || echo sparc |
| 115 | ;; |
116 | ;; |