| 1 | # Copyright 1999-2004 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.16 2004/12/16 01:03:42 vapier Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/toolchain-funcs.eclass,v 1.34 2005/03/10 22:43:11 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...) |
| 9 | |
9 | |
| 10 | inherit eutils |
10 | inherit multilib |
| 11 | |
11 | |
| 12 | ECLASS=toolchain-funcs |
12 | ECLASS=toolchain-funcs |
| 13 | INHERITED="$INHERITED $ECLASS" |
13 | INHERITED="$INHERITED $ECLASS" |
| 14 | |
14 | |
| 15 | DESCRIPTION="Based on the ${ECLASS} eclass" |
15 | DESCRIPTION="Based on the ${ECLASS} eclass" |
| 16 | |
16 | |
| 17 | tc-getPROG() { |
17 | tc-getPROG() { |
| 18 | local var="$1" |
18 | local var=$1 |
| 19 | local prog="$2" |
19 | local prog=$2 |
| 20 | local search="" |
|
|
| 21 | |
20 | |
| 22 | if [ -n "${!var}" ] ; then |
21 | if [[ -n ${!var} ]] ; then |
| 23 | echo "${!var}" |
22 | echo "${!var}" |
| 24 | return 0 |
23 | return 0 |
| 25 | fi |
24 | fi |
| 26 | |
25 | |
| 27 | if [ -n "${CTARGET}" ] ; then |
26 | local chost=$3 |
| 28 | search="$(type -p "${CTARGET}-${prog}")" |
27 | [[ -z ${chost} ]] && chost=$(get_abi_CHOST) |
| 29 | elif [ -n "${CHOST}" ] ; then |
28 | [[ -z ${chost} ]] && chost=${CHOST} |
|
|
29 | |
|
|
30 | if [[ -n ${chost} ]] ; then |
| 30 | search="$(type -p "${CHOST}-${prog}")" |
31 | local search=$(type -p "${chost}-${prog}") |
|
|
32 | [[ -n ${search} ]] && prog=${search##*/} |
| 31 | fi |
33 | fi |
| 32 | |
34 | |
| 33 | if [ -n "${search}" ] ; then |
|
|
| 34 | prog="${search##*/}" |
|
|
| 35 | fi |
|
|
| 36 | export ${var}="${prog}" |
35 | export ${var}=${prog} |
| 37 | echo "${!var}" |
36 | echo "${!var}" |
| 38 | } |
37 | } |
| 39 | |
38 | |
| 40 | # Returns the name of the archiver |
39 | # Returns the name of the archiver |
| 41 | tc-getAR() { tc-getPROG AR ar; } |
40 | tc-getAR() { tc-getPROG AR ar "$@"; } |
| 42 | # Returns the name of the assembler |
41 | # Returns the name of the assembler |
| 43 | tc-getAS() { tc-getPROG AS as; } |
42 | tc-getAS() { tc-getPROG AS as "$@"; } |
| 44 | # Returns the name of the C compiler |
43 | # Returns the name of the C compiler |
| 45 | tc-getCC() { tc-getPROG CC gcc; } |
44 | tc-getCC() { tc-getPROG CC gcc "$@"; } |
| 46 | # Returns the name of the C++ compiler |
45 | # Returns the name of the C++ compiler |
| 47 | tc-getCXX() { tc-getPROG CXX g++; } |
46 | tc-getCXX() { tc-getPROG CXX g++ "$@"; } |
| 48 | # Returns the name of the linker |
47 | # Returns the name of the linker |
| 49 | tc-getLD() { tc-getPROG LD ld; } |
48 | tc-getLD() { tc-getPROG LD ld "$@"; } |
| 50 | # Returns the name of the symbol/object thingy |
49 | # Returns the name of the symbol/object thingy |
| 51 | tc-getNM() { tc-getPROG NM nm; } |
50 | tc-getNM() { tc-getPROG NM nm "$@"; } |
| 52 | # Returns the name of the archiver indexer |
51 | # Returns the name of the archiver indexer |
| 53 | tc-getRANLIB() { tc-getPROG RANLIB ranlib; } |
52 | tc-getRANLIB() { tc-getPROG RANLIB ranlib "$@"; } |
| 54 | # Returns the name of the fortran compiler |
53 | # Returns the name of the fortran compiler |
| 55 | tc-getF77() { tc-getPROG F77 f77; } |
54 | tc-getF77() { tc-getPROG F77 f77 "$@"; } |
| 56 | # Returns the name of the java compiler |
55 | # Returns the name of the java compiler |
| 57 | tc-getGCJ() { tc-getPROG GCJ gcj; } |
56 | tc-getGCJ() { tc-getPROG GCJ gcj "$@"; } |
| 58 | |
57 | |
| 59 | # Returns the name of the C compiler for build |
58 | # Returns the name of the C compiler for build |
| 60 | tc-getBUILD_CC() { |
59 | tc-getBUILD_CC() { |
| 61 | if [ -n "${CC_FOR_BUILD}" ] ; then |
60 | if [[ -n ${CC_FOR_BUILD} ]] ; then |
| 62 | export BUILD_CC="${CC_FOR_BUILD}" |
61 | export BUILD_CC=${CC_FOR_BUILD} |
| 63 | echo "${CC_FOR_BUILD}" |
62 | echo "${CC_FOR_BUILD}" |
| 64 | return 0 |
63 | return 0 |
| 65 | fi |
64 | fi |
| 66 | |
65 | |
| 67 | local search= |
66 | local search= |
| 68 | if [ -n "${CBUILD}" ] ; then |
67 | if [[ -n ${CBUILD} ]] ; then |
| 69 | search="$(type -p "${CBUILD}-gcc")" |
68 | search=$(type -p ${CBUILD}-gcc) |
|
|
69 | search=${search##*/} |
|
|
70 | else |
|
|
71 | search=gcc |
| 70 | fi |
72 | fi |
| 71 | |
73 | |
| 72 | if [ -n "${search}" ] ; then |
|
|
| 73 | search="${search##*/}" |
|
|
| 74 | else |
|
|
| 75 | search="gcc" |
|
|
| 76 | fi |
|
|
| 77 | |
|
|
| 78 | export BUILD_CC="${search}" |
74 | export BUILD_CC=${search} |
| 79 | echo "${search}" |
75 | echo "${search}" |
| 80 | } |
76 | } |
| 81 | |
77 | |
| 82 | # Quick way to export a bunch of vars at once |
78 | # Quick way to export a bunch of vars at once |
| 83 | tc-export() { |
79 | tc-export() { |
| … | |
… | |
| 94 | fi |
90 | fi |
| 95 | return 1 |
91 | return 1 |
| 96 | } |
92 | } |
| 97 | |
93 | |
| 98 | |
94 | |
|
|
95 | # Parse information from CBUILD/CHOST/CTARGET rather than |
|
|
96 | # use external variables from the profile. |
|
|
97 | tc-ninja_magic_to_arch() { |
|
|
98 | ninj() { [[ ${type} == "kern" ]] && echo $1 || echo $2 ; } |
|
|
99 | |
|
|
100 | local type=$1 |
|
|
101 | local host=$2 |
|
|
102 | [[ -z ${host} ]] && host=${CTARGET:-${CHOST}} |
|
|
103 | |
|
|
104 | case ${host} in |
|
|
105 | alpha*) echo alpha;; |
|
|
106 | x86_64*) ninj x86_64 amd64;; |
|
|
107 | arm*) echo arm;; |
|
|
108 | hppa*) ninj parisc hppa;; |
|
|
109 | ia64*) echo ia64;; |
|
|
110 | m68*) echo m68k;; |
|
|
111 | mips*) echo mips;; |
|
|
112 | powerpc64*) echo ppc64;; |
|
|
113 | powerpc*) echo ppc;; |
|
|
114 | sparc64*) ninj sparc64 sparc;; |
|
|
115 | sparc*) [[ ${PROFILE_ARCH} == "sparc64" ]] \ |
|
|
116 | && ninj sparc64 sparc \ |
|
|
117 | || echo sparc |
|
|
118 | ;; |
|
|
119 | s390*) echo s390;; |
|
|
120 | sh64*) ninj sh64 sh;; |
|
|
121 | sh*) echo sh;; |
|
|
122 | i?86*) ninj i386 x86;; |
|
|
123 | *) echo ${ARCH};; |
|
|
124 | esac |
|
|
125 | } |
|
|
126 | tc-arch-kernel() { |
|
|
127 | tc-ninja_magic_to_arch kern $@ |
|
|
128 | } |
|
|
129 | tc-arch() { |
|
|
130 | tc-ninja_magic_to_arch portage $@ |
|
|
131 | } |
|
|
132 | tc-endian() { |
|
|
133 | local host=$1 |
|
|
134 | [[ -z ${host} ]] && host=${CTARGET:-${CHOST}} |
|
|
135 | host=${host%%-*} |
|
|
136 | |
|
|
137 | case ${host} in |
|
|
138 | alpha*) echo big;; |
|
|
139 | x86_64*) echo little;; |
|
|
140 | arm*b*) echo big;; |
|
|
141 | arm*) echo little;; |
|
|
142 | hppa*) echo big;; |
|
|
143 | ia64*) echo little;; |
|
|
144 | m68*) echo big;; |
|
|
145 | mips*l*) echo little;; |
|
|
146 | mips*) echo big;; |
|
|
147 | powerpc*) echo big;; |
|
|
148 | sparc*) echo big;; |
|
|
149 | s390*) echo big;; |
|
|
150 | sh*b*) echo big;; |
|
|
151 | sh*) echo little;; |
|
|
152 | i?86*) echo little;; |
|
|
153 | *) echo wtf;; |
|
|
154 | esac |
|
|
155 | } |
|
|
156 | |
| 99 | # Returns the version as by `$CC -dumpversion` |
157 | # Returns the version as by `$CC -dumpversion` |
| 100 | gcc-fullversion() { |
158 | gcc-fullversion() { |
| 101 | echo "$($(tc-getCC) -dumpversion)" |
159 | echo "$($(tc-getCC) -dumpversion)" |
| 102 | } |
160 | } |
| 103 | # Returns the version, but only the <major>.<minor> |
161 | # Returns the version, but only the <major>.<minor> |
| … | |
… | |
| 112 | gcc-minor-version() { |
170 | gcc-minor-version() { |
| 113 | echo "$(gcc-version | cut -f2 -d.)" |
171 | echo "$(gcc-version | cut -f2 -d.)" |
| 114 | } |
172 | } |
| 115 | # Returns the Micro version |
173 | # Returns the Micro version |
| 116 | gcc-micro-version() { |
174 | gcc-micro-version() { |
| 117 | echo "$(gcc-fullversion | cut -f3 -d.)" |
175 | echo "$(gcc-fullversion | cut -f3 -d. | cut -f1 -d-)" |
| 118 | } |
176 | } |