| 1 | # Copyright 1999-2007 Gentoo Foundation |
1 | # Copyright 1999-2011 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.102 2010/09/11 17:12:20 vapier Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/toolchain-funcs.eclass,v 1.112 2012/06/14 03:38:51 vapier Exp $ |
| 4 | |
4 | |
| 5 | # @ECLASS: toolchain-funcs.eclass |
5 | # @ECLASS: toolchain-funcs.eclass |
| 6 | # @MAINTAINER: |
6 | # @MAINTAINER: |
| 7 | # Toolchain Ninjas <toolchain@gentoo.org> |
7 | # Toolchain Ninjas <toolchain@gentoo.org> |
| 8 | # @BLURB: functions to query common info about the toolchain |
8 | # @BLURB: functions to query common info about the toolchain |
| … | |
… | |
| 11 | # for gleaning useful information about the toolchain and to simplify |
11 | # for gleaning useful information about the toolchain and to simplify |
| 12 | # ugly things like cross-compiling and multilib. All of this is done |
12 | # ugly things like cross-compiling and multilib. All of this is done |
| 13 | # in such a way that you can rely on the function always returning |
13 | # in such a way that you can rely on the function always returning |
| 14 | # something sane. |
14 | # something sane. |
| 15 | |
15 | |
| 16 | ___ECLASS_RECUR_TOOLCHAIN_FUNCS="yes" |
16 | if [[ ${___ECLASS_ONCE_TOOLCHAIN_FUNCS} != "recur -_+^+_- spank" ]] ; then |
| 17 | [[ -z ${___ECLASS_RECUR_MULTILIB} ]] && inherit multilib |
17 | ___ECLASS_ONCE_TOOLCHAIN_FUNCS="recur -_+^+_- spank" |
|
|
18 | |
|
|
19 | inherit multilib |
| 18 | |
20 | |
| 19 | DESCRIPTION="Based on the ${ECLASS} eclass" |
21 | DESCRIPTION="Based on the ${ECLASS} eclass" |
| 20 | |
22 | |
|
|
23 | # tc-getPROG <VAR [search vars]> <default> [tuple] |
| 21 | tc-getPROG() { |
24 | _tc-getPROG() { |
| 22 | local var=$1 |
25 | local tuple=$1 |
|
|
26 | local v var vars=$2 |
| 23 | local prog=$2 |
27 | local prog=$3 |
| 24 | |
28 | |
| 25 | if [[ -n ${!var} ]] ; then |
29 | var=${vars%% *} |
| 26 | echo "${!var}" |
30 | for v in ${vars} ; do |
| 27 | return 0 |
|
|
| 28 | fi |
|
|
| 29 | |
|
|
| 30 | local search= |
|
|
| 31 | [[ -n $3 ]] && search=$(type -p "$3-${prog}") |
|
|
| 32 | [[ -z ${search} && -n ${CHOST} ]] && search=$(type -p "${CHOST}-${prog}") |
|
|
| 33 | [[ -n ${search} ]] && prog=${search##*/} |
|
|
| 34 | |
|
|
| 35 | export ${var}=${prog} |
|
|
| 36 | echo "${!var}" |
|
|
| 37 | } |
|
|
| 38 | |
|
|
| 39 | # @FUNCTION: tc-getAR |
|
|
| 40 | # @USAGE: [toolchain prefix] |
|
|
| 41 | # @RETURN: name of the archiver |
|
|
| 42 | tc-getAR() { tc-getPROG AR ar "$@"; } |
|
|
| 43 | # @FUNCTION: tc-getAS |
|
|
| 44 | # @USAGE: [toolchain prefix] |
|
|
| 45 | # @RETURN: name of the assembler |
|
|
| 46 | tc-getAS() { tc-getPROG AS as "$@"; } |
|
|
| 47 | # @FUNCTION: tc-getCC |
|
|
| 48 | # @USAGE: [toolchain prefix] |
|
|
| 49 | # @RETURN: name of the C compiler |
|
|
| 50 | tc-getCC() { tc-getPROG CC gcc "$@"; } |
|
|
| 51 | # @FUNCTION: tc-getCPP |
|
|
| 52 | # @USAGE: [toolchain prefix] |
|
|
| 53 | # @RETURN: name of the C preprocessor |
|
|
| 54 | tc-getCPP() { tc-getPROG CPP cpp "$@"; } |
|
|
| 55 | # @FUNCTION: tc-getCXX |
|
|
| 56 | # @USAGE: [toolchain prefix] |
|
|
| 57 | # @RETURN: name of the C++ compiler |
|
|
| 58 | tc-getCXX() { tc-getPROG CXX g++ "$@"; } |
|
|
| 59 | # @FUNCTION: tc-getLD |
|
|
| 60 | # @USAGE: [toolchain prefix] |
|
|
| 61 | # @RETURN: name of the linker |
|
|
| 62 | tc-getLD() { tc-getPROG LD ld "$@"; } |
|
|
| 63 | # @FUNCTION: tc-getSTRIP |
|
|
| 64 | # @USAGE: [toolchain prefix] |
|
|
| 65 | # @RETURN: name of the strip program |
|
|
| 66 | tc-getSTRIP() { tc-getPROG STRIP strip "$@"; } |
|
|
| 67 | # @FUNCTION: tc-getNM |
|
|
| 68 | # @USAGE: [toolchain prefix] |
|
|
| 69 | # @RETURN: name of the symbol/object thingy |
|
|
| 70 | tc-getNM() { tc-getPROG NM nm "$@"; } |
|
|
| 71 | # @FUNCTION: tc-getRANLIB |
|
|
| 72 | # @USAGE: [toolchain prefix] |
|
|
| 73 | # @RETURN: name of the archiver indexer |
|
|
| 74 | tc-getRANLIB() { tc-getPROG RANLIB ranlib "$@"; } |
|
|
| 75 | # @FUNCTION: tc-getOBJCOPY |
|
|
| 76 | # @USAGE: [toolchain prefix] |
|
|
| 77 | # @RETURN: name of the object copier |
|
|
| 78 | tc-getOBJCOPY() { tc-getPROG OBJCOPY objcopy "$@"; } |
|
|
| 79 | # @FUNCTION: tc-getF77 |
|
|
| 80 | # @USAGE: [toolchain prefix] |
|
|
| 81 | # @RETURN: name of the Fortran 77 compiler |
|
|
| 82 | tc-getF77() { tc-getPROG F77 gfortran "$@"; } |
|
|
| 83 | # @FUNCTION: tc-getFC |
|
|
| 84 | # @USAGE: [toolchain prefix] |
|
|
| 85 | # @RETURN: name of the Fortran 90 compiler |
|
|
| 86 | tc-getFC() { tc-getPROG FC gfortran "$@"; } |
|
|
| 87 | # @FUNCTION: tc-getGCJ |
|
|
| 88 | # @USAGE: [toolchain prefix] |
|
|
| 89 | # @RETURN: name of the java compiler |
|
|
| 90 | tc-getGCJ() { tc-getPROG GCJ gcj "$@"; } |
|
|
| 91 | # @FUNCTION: tc-getPKG_CONFIG |
|
|
| 92 | # @USAGE: [toolchain prefix] |
|
|
| 93 | # @RETURN: name of the pkg-config tool |
|
|
| 94 | tc-getPKG_CONFIG() { tc-getPROG PKG_CONFIG pkg-config "$@"; } |
|
|
| 95 | # @FUNCTION: tc-getRC |
|
|
| 96 | # @USAGE: [toolchain prefix] |
|
|
| 97 | # @RETURN: name of the Windows resource compiler |
|
|
| 98 | tc-getRC() { tc-getPROG RC windres "$@"; } |
|
|
| 99 | # @FUNCTION: tc-getDLLWRAP |
|
|
| 100 | # @USAGE: [toolchain prefix] |
|
|
| 101 | # @RETURN: name of the Windows dllwrap utility |
|
|
| 102 | tc-getDLLWRAP() { tc-getPROG DLLWRAP dllwrap "$@"; } |
|
|
| 103 | |
|
|
| 104 | # @FUNCTION: tc-getBUILD_CC |
|
|
| 105 | # @USAGE: [toolchain prefix] |
|
|
| 106 | # @RETURN: name of the C compiler for building binaries to run on the build machine |
|
|
| 107 | tc-getBUILD_CC() { |
|
|
| 108 | local v |
|
|
| 109 | for v in CC_FOR_BUILD BUILD_CC HOSTCC ; do |
|
|
| 110 | if [[ -n ${!v} ]] ; then |
31 | if [[ -n ${!v} ]] ; then |
| 111 | export BUILD_CC=${!v} |
32 | export ${var}="${!v}" |
| 112 | echo "${!v}" |
33 | echo "${!v}" |
| 113 | return 0 |
34 | return 0 |
| 114 | fi |
35 | fi |
| 115 | done |
36 | done |
| 116 | |
37 | |
| 117 | local search= |
38 | local search= |
| 118 | if [[ -n ${CBUILD} ]] ; then |
39 | [[ -n $4 ]] && search=$(type -p "$4-${prog}") |
| 119 | search=$(type -p ${CBUILD}-gcc) |
40 | [[ -z ${search} && -n ${!tuple} ]] && search=$(type -p "${!tuple}-${prog}") |
| 120 | search=${search##*/} |
41 | [[ -n ${search} ]] && prog=${search##*/} |
| 121 | fi |
|
|
| 122 | search=${search:-gcc} |
|
|
| 123 | |
42 | |
| 124 | export BUILD_CC=${search} |
43 | export ${var}=${prog} |
| 125 | echo "${search}" |
44 | echo "${!var}" |
| 126 | } |
45 | } |
|
|
46 | tc-getBUILD_PROG() { _tc-getPROG CBUILD "BUILD_$1 $1_FOR_BUILD HOST$1" "${@:2}"; } |
|
|
47 | tc-getPROG() { _tc-getPROG CHOST "$@"; } |
|
|
48 | |
|
|
49 | # @FUNCTION: tc-getAR |
|
|
50 | # @USAGE: [toolchain prefix] |
|
|
51 | # @RETURN: name of the archiver |
|
|
52 | tc-getAR() { tc-getPROG AR ar "$@"; } |
|
|
53 | # @FUNCTION: tc-getAS |
|
|
54 | # @USAGE: [toolchain prefix] |
|
|
55 | # @RETURN: name of the assembler |
|
|
56 | tc-getAS() { tc-getPROG AS as "$@"; } |
|
|
57 | # @FUNCTION: tc-getCC |
|
|
58 | # @USAGE: [toolchain prefix] |
|
|
59 | # @RETURN: name of the C compiler |
|
|
60 | tc-getCC() { tc-getPROG CC gcc "$@"; } |
|
|
61 | # @FUNCTION: tc-getCPP |
|
|
62 | # @USAGE: [toolchain prefix] |
|
|
63 | # @RETURN: name of the C preprocessor |
|
|
64 | tc-getCPP() { tc-getPROG CPP cpp "$@"; } |
|
|
65 | # @FUNCTION: tc-getCXX |
|
|
66 | # @USAGE: [toolchain prefix] |
|
|
67 | # @RETURN: name of the C++ compiler |
|
|
68 | tc-getCXX() { tc-getPROG CXX g++ "$@"; } |
|
|
69 | # @FUNCTION: tc-getLD |
|
|
70 | # @USAGE: [toolchain prefix] |
|
|
71 | # @RETURN: name of the linker |
|
|
72 | tc-getLD() { tc-getPROG LD ld "$@"; } |
|
|
73 | # @FUNCTION: tc-getSTRIP |
|
|
74 | # @USAGE: [toolchain prefix] |
|
|
75 | # @RETURN: name of the strip program |
|
|
76 | tc-getSTRIP() { tc-getPROG STRIP strip "$@"; } |
|
|
77 | # @FUNCTION: tc-getNM |
|
|
78 | # @USAGE: [toolchain prefix] |
|
|
79 | # @RETURN: name of the symbol/object thingy |
|
|
80 | tc-getNM() { tc-getPROG NM nm "$@"; } |
|
|
81 | # @FUNCTION: tc-getRANLIB |
|
|
82 | # @USAGE: [toolchain prefix] |
|
|
83 | # @RETURN: name of the archiver indexer |
|
|
84 | tc-getRANLIB() { tc-getPROG RANLIB ranlib "$@"; } |
|
|
85 | # @FUNCTION: tc-getOBJCOPY |
|
|
86 | # @USAGE: [toolchain prefix] |
|
|
87 | # @RETURN: name of the object copier |
|
|
88 | tc-getOBJCOPY() { tc-getPROG OBJCOPY objcopy "$@"; } |
|
|
89 | # @FUNCTION: tc-getF77 |
|
|
90 | # @USAGE: [toolchain prefix] |
|
|
91 | # @RETURN: name of the Fortran 77 compiler |
|
|
92 | tc-getF77() { tc-getPROG F77 gfortran "$@"; } |
|
|
93 | # @FUNCTION: tc-getFC |
|
|
94 | # @USAGE: [toolchain prefix] |
|
|
95 | # @RETURN: name of the Fortran 90 compiler |
|
|
96 | tc-getFC() { tc-getPROG FC gfortran "$@"; } |
|
|
97 | # @FUNCTION: tc-getGCJ |
|
|
98 | # @USAGE: [toolchain prefix] |
|
|
99 | # @RETURN: name of the java compiler |
|
|
100 | tc-getGCJ() { tc-getPROG GCJ gcj "$@"; } |
|
|
101 | # @FUNCTION: tc-getPKG_CONFIG |
|
|
102 | # @USAGE: [toolchain prefix] |
|
|
103 | # @RETURN: name of the pkg-config tool |
|
|
104 | tc-getPKG_CONFIG() { tc-getPROG PKG_CONFIG pkg-config "$@"; } |
|
|
105 | # @FUNCTION: tc-getRC |
|
|
106 | # @USAGE: [toolchain prefix] |
|
|
107 | # @RETURN: name of the Windows resource compiler |
|
|
108 | tc-getRC() { tc-getPROG RC windres "$@"; } |
|
|
109 | # @FUNCTION: tc-getDLLWRAP |
|
|
110 | # @USAGE: [toolchain prefix] |
|
|
111 | # @RETURN: name of the Windows dllwrap utility |
|
|
112 | tc-getDLLWRAP() { tc-getPROG DLLWRAP dllwrap "$@"; } |
|
|
113 | |
|
|
114 | # @FUNCTION: tc-getBUILD_AR |
|
|
115 | # @USAGE: [toolchain prefix] |
|
|
116 | # @RETURN: name of the archiver for building binaries to run on the build machine |
|
|
117 | tc-getBUILD_AR() { tc-getBUILD_PROG AR ar "$@"; } |
|
|
118 | # @FUNCTION: tc-getBUILD_AS |
|
|
119 | # @USAGE: [toolchain prefix] |
|
|
120 | # @RETURN: name of the assembler for building binaries to run on the build machine |
|
|
121 | tc-getBUILD_AS() { tc-getBUILD_PROG AS as "$@"; } |
|
|
122 | # @FUNCTION: tc-getBUILD_CC |
|
|
123 | # @USAGE: [toolchain prefix] |
|
|
124 | # @RETURN: name of the C compiler for building binaries to run on the build machine |
|
|
125 | tc-getBUILD_CC() { tc-getBUILD_PROG CC gcc "$@"; } |
|
|
126 | # @FUNCTION: tc-getBUILD_CPP |
|
|
127 | # @USAGE: [toolchain prefix] |
|
|
128 | # @RETURN: name of the C preprocessor for building binaries to run on the build machine |
|
|
129 | tc-getBUILD_CPP() { tc-getBUILD_PROG CPP cpp "$@"; } |
|
|
130 | # @FUNCTION: tc-getBUILD_CXX |
|
|
131 | # @USAGE: [toolchain prefix] |
|
|
132 | # @RETURN: name of the C++ compiler for building binaries to run on the build machine |
|
|
133 | tc-getBUILD_CXX() { tc-getBUILD_PROG CXX g++ "$@"; } |
|
|
134 | # @FUNCTION: tc-getBUILD_LD |
|
|
135 | # @USAGE: [toolchain prefix] |
|
|
136 | # @RETURN: name of the linker for building binaries to run on the build machine |
|
|
137 | tc-getBUILD_LD() { tc-getBUILD_PROG LD ld "$@"; } |
|
|
138 | # @FUNCTION: tc-getBUILD_STRIP |
|
|
139 | # @USAGE: [toolchain prefix] |
|
|
140 | # @RETURN: name of the strip program for building binaries to run on the build machine |
|
|
141 | tc-getBUILD_STRIP() { tc-getBUILD_PROG STRIP strip "$@"; } |
|
|
142 | # @FUNCTION: tc-getBUILD_NM |
|
|
143 | # @USAGE: [toolchain prefix] |
|
|
144 | # @RETURN: name of the symbol/object thingy for building binaries to run on the build machine |
|
|
145 | tc-getBUILD_NM() { tc-getBUILD_PROG NM nm "$@"; } |
|
|
146 | # @FUNCTION: tc-getBUILD_RANLIB |
|
|
147 | # @USAGE: [toolchain prefix] |
|
|
148 | # @RETURN: name of the archiver indexer for building binaries to run on the build machine |
|
|
149 | tc-getBUILD_RANLIB() { tc-getBUILD_PROG RANLIB ranlib "$@"; } |
|
|
150 | # @FUNCTION: tc-getBUILD_OBJCOPY |
|
|
151 | # @USAGE: [toolchain prefix] |
|
|
152 | # @RETURN: name of the object copier for building binaries to run on the build machine |
|
|
153 | tc-getBUILD_OBJCOPY() { tc-getBUILD_PROG OBJCOPY objcopy "$@"; } |
|
|
154 | # @FUNCTION: tc-getBUILD_PKG_CONFIG |
|
|
155 | # @USAGE: [toolchain prefix] |
|
|
156 | # @RETURN: name of the pkg-config tool for building binaries to run on the build machine |
|
|
157 | tc-getBUILD_PKG_CONFIG() { tc-getBUILD_PROG PKG_CONFIG pkg-config "$@"; } |
| 127 | |
158 | |
| 128 | # @FUNCTION: tc-export |
159 | # @FUNCTION: tc-export |
| 129 | # @USAGE: <list of toolchain variables> |
160 | # @USAGE: <list of toolchain variables> |
| 130 | # @DESCRIPTION: |
161 | # @DESCRIPTION: |
| 131 | # Quick way to export a bunch of compiler vars at once. |
162 | # Quick way to export a bunch of compiler vars at once. |
| … | |
… | |
| 146 | # @FUNCTION: tc-is-softfloat |
177 | # @FUNCTION: tc-is-softfloat |
| 147 | # @DESCRIPTION: |
178 | # @DESCRIPTION: |
| 148 | # See if this toolchain is a softfloat based one. |
179 | # See if this toolchain is a softfloat based one. |
| 149 | # @CODE |
180 | # @CODE |
| 150 | # The possible return values: |
181 | # The possible return values: |
| 151 | # - only: the target is always softfloat (never had fpu) |
182 | # - only: the target is always softfloat (never had fpu) |
| 152 | # - yes: the target should support softfloat |
183 | # - yes: the target should support softfloat |
|
|
184 | # - softfp: (arm specific) the target should use hardfloat insns, but softfloat calling convention |
| 153 | # - no: the target doesn't support softfloat |
185 | # - no: the target doesn't support softfloat |
| 154 | # @CODE |
186 | # @CODE |
| 155 | # This allows us to react differently where packages accept |
187 | # This allows us to react differently where packages accept |
| 156 | # softfloat flags in the case where support is optional, but |
188 | # softfloat flags in the case where support is optional, but |
| 157 | # rejects softfloat flags where the target always lacks an fpu. |
189 | # rejects softfloat flags where the target always lacks an fpu. |
| 158 | tc-is-softfloat() { |
190 | tc-is-softfloat() { |
|
|
191 | local CTARGET=${CTARGET:-${CHOST}} |
| 159 | case ${CTARGET} in |
192 | case ${CTARGET} in |
| 160 | bfin*|h8300*) |
193 | bfin*|h8300*) |
| 161 | echo "only" ;; |
194 | echo "only" ;; |
| 162 | *) |
195 | *) |
| 163 | [[ ${CTARGET//_/-} == *-softfloat-* ]] \ |
196 | if [[ ${CTARGET//_/-} == *-softfloat-* ]] ; then |
| 164 | && echo "yes" \ |
197 | echo "yes" |
|
|
198 | elif [[ ${CTARGET//_/-} == *-softfp-* ]] ; then |
|
|
199 | echo "softfp" |
|
|
200 | else |
| 165 | || echo "no" |
201 | echo "no" |
|
|
202 | fi |
| 166 | ;; |
203 | ;; |
| 167 | esac |
204 | esac |
| 168 | } |
|
|
| 169 | |
|
|
| 170 | # @FUNCTION: tc-is-hardfloat |
|
|
| 171 | # @DESCRIPTION: |
|
|
| 172 | # See if this toolchain is a hardfloat based one. |
|
|
| 173 | # @CODE |
|
|
| 174 | # The possible return values: |
|
|
| 175 | # - yes: the target should support hardfloat |
|
|
| 176 | # - no: the target doesn't support hardfloat |
|
|
| 177 | tc-is-hardfloat() { |
|
|
| 178 | [[ ${CTARGET//_/-} == *-hardfloat-* ]] \ |
|
|
| 179 | && echo "yes" \ |
|
|
| 180 | || echo "no" |
|
|
| 181 | } |
205 | } |
| 182 | |
206 | |
| 183 | # @FUNCTION: tc-is-static-only |
207 | # @FUNCTION: tc-is-static-only |
| 184 | # @DESCRIPTION: |
208 | # @DESCRIPTION: |
| 185 | # Return shell true if the target does not support shared libs, shell false |
209 | # Return shell true if the target does not support shared libs, shell false |
| … | |
… | |
| 187 | tc-is-static-only() { |
211 | tc-is-static-only() { |
| 188 | local host=${CTARGET:-${CHOST}} |
212 | local host=${CTARGET:-${CHOST}} |
| 189 | |
213 | |
| 190 | # *MiNT doesn't have shared libraries, only platform so far |
214 | # *MiNT doesn't have shared libraries, only platform so far |
| 191 | return $([[ ${host} == *-mint* ]]) |
215 | return $([[ ${host} == *-mint* ]]) |
|
|
216 | } |
|
|
217 | |
|
|
218 | # @FUNCTION: tc-export_build_env |
|
|
219 | # @USAGE: [compiler variables] |
|
|
220 | # @DESCRIPTION: |
|
|
221 | # Export common build related compiler settings. |
|
|
222 | tc-export_build_env() { |
|
|
223 | tc-export "$@" |
|
|
224 | : ${BUILD_CFLAGS:=-O1 -pipe} |
|
|
225 | : ${BUILD_CXXFLAGS:=-O1 -pipe} |
|
|
226 | : ${BUILD_CPPFLAGS:=} |
|
|
227 | : ${BUILD_LDFLAGS:=} |
|
|
228 | export BUILD_{C,CXX,CPP,LD}FLAGS |
|
|
229 | } |
|
|
230 | |
|
|
231 | # @FUNCTION: tc-env_build |
|
|
232 | # @USAGE: <command> [command args] |
|
|
233 | # @INTERNAL |
|
|
234 | # @DESCRIPTION: |
|
|
235 | # Setup the compile environment to the build tools and then execute the |
|
|
236 | # specified command. We use tc-getBUILD_XX here so that we work with |
|
|
237 | # all of the semi-[non-]standard env vars like $BUILD_CC which often |
|
|
238 | # the target build system does not check. |
|
|
239 | tc-env_build() { |
|
|
240 | tc-export_build_env |
|
|
241 | CFLAGS=${BUILD_CFLAGS} \ |
|
|
242 | CXXFLAGS=${BUILD_CXXFLAGS} \ |
|
|
243 | CPPFLAGS=${BUILD_CPPFLAGS} \ |
|
|
244 | LDFLAGS=${BUILD_LDFLAGS} \ |
|
|
245 | AR=$(tc-getBUILD_AR) \ |
|
|
246 | AS=$(tc-getBUILD_AS) \ |
|
|
247 | CC=$(tc-getBUILD_CC) \ |
|
|
248 | CPP=$(tc-getBUILD_CPP) \ |
|
|
249 | CXX=$(tc-getBUILD_CXX) \ |
|
|
250 | LD=$(tc-getBUILD_LD) \ |
|
|
251 | NM=$(tc-getBUILD_NM) \ |
|
|
252 | PKG_CONFIG=$(tc-getBUILD_PKG_CONFIG) \ |
|
|
253 | RANLIB=$(tc-getBUILD_RANLIB) \ |
|
|
254 | "$@" |
|
|
255 | } |
|
|
256 | |
|
|
257 | # @FUNCTION: econf_build |
|
|
258 | # @USAGE: [econf flags] |
|
|
259 | # @DESCRIPTION: |
|
|
260 | # Sometimes we need to locally build up some tools to run on CBUILD because |
|
|
261 | # the package has helper utils which are compiled+executed when compiling. |
|
|
262 | # This won't work when cross-compiling as the CHOST is set to a target which |
|
|
263 | # we cannot natively execute. |
|
|
264 | # |
|
|
265 | # For example, the python package will build up a local python binary using |
|
|
266 | # a portable build system (configure+make), but then use that binary to run |
|
|
267 | # local python scripts to build up other components of the overall python. |
|
|
268 | # We cannot rely on the python binary in $PATH as that often times will be |
|
|
269 | # a different version, or not even installed in the first place. Instead, |
|
|
270 | # we compile the code in a different directory to run on CBUILD, and then |
|
|
271 | # use that binary when compiling the main package to run on CHOST. |
|
|
272 | # |
|
|
273 | # For example, with newer EAPIs, you'd do something like: |
|
|
274 | # @CODE |
|
|
275 | # src_configure() { |
|
|
276 | # ECONF_SOURCE=${S} |
|
|
277 | # if tc-is-cross-compiler ; then |
|
|
278 | # mkdir "${WORKDIR}"/${CBUILD} |
|
|
279 | # pushd "${WORKDIR}"/${CBUILD} >/dev/null |
|
|
280 | # econf_build --disable-some-unused-stuff |
|
|
281 | # popd >/dev/null |
|
|
282 | # fi |
|
|
283 | # ... normal build paths ... |
|
|
284 | # } |
|
|
285 | # src_compile() { |
|
|
286 | # if tc-is-cross-compiler ; then |
|
|
287 | # pushd "${WORKDIR}"/${CBUILD} >/dev/null |
|
|
288 | # emake one-or-two-build-tools |
|
|
289 | # ln/mv build-tools to normal build paths in ${S}/ |
|
|
290 | # popd >/dev/null |
|
|
291 | # fi |
|
|
292 | # ... normal build paths ... |
|
|
293 | # } |
|
|
294 | # @CODE |
|
|
295 | econf_build() { |
|
|
296 | tc-env_build econf --build=${CBUILD:-${CHOST}} "$@" |
| 192 | } |
297 | } |
| 193 | |
298 | |
| 194 | # @FUNCTION: tc-has-openmp |
299 | # @FUNCTION: tc-has-openmp |
| 195 | # @USAGE: [toolchain prefix] |
300 | # @USAGE: [toolchain prefix] |
| 196 | # @DESCRIPTION: |
301 | # @DESCRIPTION: |
| … | |
… | |
| 275 | m68*) echo m68k;; |
380 | m68*) echo m68k;; |
| 276 | mips*) echo mips;; |
381 | mips*) echo mips;; |
| 277 | nios2*) echo nios2;; |
382 | nios2*) echo nios2;; |
| 278 | nios*) echo nios;; |
383 | nios*) echo nios;; |
| 279 | powerpc*) |
384 | powerpc*) |
| 280 | # Starting with linux-2.6.15, the 'ppc' and 'ppc64' trees |
385 | # Starting with linux-2.6.15, the 'ppc' and 'ppc64' trees |
| 281 | # have been unified into simply 'powerpc', but until 2.6.16, |
386 | # have been unified into simply 'powerpc', but until 2.6.16, |
| 282 | # ppc32 is still using ARCH="ppc" as default |
387 | # ppc32 is still using ARCH="ppc" as default |
| 283 | if [[ $(KV_to_int ${KV}) -ge $(KV_to_int 2.6.16) ]] && [[ ${type} == "kern" ]] ; then |
388 | if [[ ${type} == "kern" ]] && [[ $(KV_to_int ${KV}) -ge $(KV_to_int 2.6.16) ]] ; then |
| 284 | echo powerpc |
389 | echo powerpc |
| 285 | elif [[ $(KV_to_int ${KV}) -eq $(KV_to_int 2.6.15) ]] && [[ ${type} == "kern" ]] ; then |
390 | elif [[ ${type} == "kern" ]] && [[ $(KV_to_int ${KV}) -eq $(KV_to_int 2.6.15) ]] ; then |
| 286 | if [[ ${host} == powerpc64* ]] || [[ ${PROFILE_ARCH} == "ppc64" ]] ; then |
391 | if [[ ${host} == powerpc64* ]] || [[ ${PROFILE_ARCH} == "ppc64" ]] ; then |
| 287 | echo powerpc |
392 | echo powerpc |
| 288 | else |
393 | else |
| 289 | echo ppc |
394 | echo ppc |
| 290 | fi |
395 | fi |
| 291 | elif [[ ${host} == powerpc64* ]] ; then |
396 | elif [[ ${host} == powerpc64* ]] ; then |
| 292 | echo ppc64 |
397 | echo ppc64 |
| 293 | elif [[ ${PROFILE_ARCH} == "ppc64" ]] ; then |
398 | elif [[ ${PROFILE_ARCH} == "ppc64" ]] ; then |
| 294 | ninj ppc64 ppc |
399 | ninj ppc64 ppc |
| 295 | else |
400 | else |
| 296 | echo ppc |
401 | echo ppc |
| 297 | fi |
402 | fi |
| 298 | ;; |
403 | ;; |
| 299 | s390*) echo s390;; |
404 | s390*) echo s390;; |
| 300 | sh64*) ninj sh64 sh;; |
405 | sh64*) ninj sh64 sh;; |
| 301 | sh*) echo sh;; |
406 | sh*) echo sh;; |
| 302 | sparc64*) ninj sparc64 sparc;; |
407 | sparc64*) ninj sparc64 sparc;; |
| 303 | sparc*) [[ ${PROFILE_ARCH} == "sparc64" ]] \ |
408 | sparc*) [[ ${PROFILE_ARCH} == "sparc64" ]] \ |
| 304 | && ninj sparc64 sparc \ |
409 | && ninj sparc64 sparc \ |
| 305 | || echo sparc |
410 | || echo sparc |
| 306 | ;; |
411 | ;; |
| 307 | vax*) echo vax;; |
412 | vax*) echo vax;; |
|
|
413 | x86_64*freebsd*) echo amd64;; |
| 308 | x86_64*) |
414 | x86_64*) |
| 309 | # Starting with linux-2.6.24, the 'x86_64' and 'i386' |
415 | # Starting with linux-2.6.24, the 'x86_64' and 'i386' |
| 310 | # trees have been unified into 'x86'. |
416 | # trees have been unified into 'x86'. |
| 311 | if [[ ${type} == "kern" ]] && [[ $(KV_to_int ${KV}) -ge $(KV_to_int 2.6.24) ]] ; then |
417 | if [[ ${type} == "kern" ]] && [[ $(KV_to_int ${KV}) -ge $(KV_to_int 2.6.24) ]] ; then |
| 312 | echo x86 |
418 | echo x86 |
| … | |
… | |
| 660 | ;; |
766 | ;; |
| 661 | esac |
767 | esac |
| 662 | fperms a+x "/usr/${libdir}/${lib}" || die "could not change perms on ${lib}" |
768 | fperms a+x "/usr/${libdir}/${lib}" || die "could not change perms on ${lib}" |
| 663 | done |
769 | done |
| 664 | } |
770 | } |
|
|
771 | |
|
|
772 | fi |