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.28 2005/01/24 04:32:55 vapier Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/toolchain-funcs.eclass,v 1.29 2005/02/01 23:50:15 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...) |
… | |
… | |
123 | tc-arch() { |
123 | tc-arch() { |
124 | tc-ninja_magic_to_arch portage $@ |
124 | tc-ninja_magic_to_arch portage $@ |
125 | } |
125 | } |
126 | tc-endian() { |
126 | tc-endian() { |
127 | local host=$1 |
127 | local host=$1 |
128 | [[ -z ${host} ]] && host=${CHOST} |
128 | [[ -z ${host} ]] && host=${CTARGET:-${CHOST}} |
129 | |
129 | |
130 | case ${host} in |
130 | case ${host} in |
131 | alpha*) echo big;; |
131 | alpha*) echo big;; |
132 | x86_64*) echo little;; |
132 | x86_64*) echo little;; |
133 | arm*eb-*) echo big;; |
133 | arm*eb-*) echo big;; |