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.27 2005/01/23 20:47:42 eradicator 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*) if [[ "${PROFILE_ARCH}" == "sparc64" ]]; then |
|
|
110 | ninj sparc64 sparc |
|
|
111 | else |
|
|
112 | echo sparc |
|
|
113 | fi;; |
110 | s390*) echo s390;; |
114 | s390*) echo s390;; |
111 | sh64*) ninj sh64 sh;; |
115 | sh64*) ninj sh64 sh;; |
112 | sh*) echo sh;; |
116 | sh*) echo sh;; |
113 | i?86*) ninj i386 x86;; |
117 | i?86*) ninj i386 x86;; |
114 | *) echo wtf;; |
118 | *) echo wtf;; |