| 1 | # Copyright 1999-2007 Gentoo Foundation |
1 | # Copyright 1999-2007 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.71 2007/07/11 04:06:29 robbat2 Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/toolchain-funcs.eclass,v 1.104 2011/07/12 14:29:41 aballier Exp $ |
| 4 | # |
4 | |
|
|
5 | # @ECLASS: toolchain-funcs.eclass |
|
|
6 | # @MAINTAINER: |
| 5 | # Maintainer: Toolchain Ninjas <toolchain@gentoo.org> |
7 | # Toolchain Ninjas <toolchain@gentoo.org> |
| 6 | # |
8 | # @BLURB: functions to query common info about the toolchain |
| 7 | # This eclass contains (or should) functions to get common info |
9 | # @DESCRIPTION: |
| 8 | # about the toolchain (libc/compiler/binutils/etc...) |
10 | # The toolchain-funcs aims to provide a complete suite of functions |
|
|
11 | # for gleaning useful information about the toolchain and to simplify |
|
|
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 |
|
|
14 | # something sane. |
| 9 | |
15 | |
| 10 | ___ECLASS_RECUR_TOOLCHAIN_FUNCS="yes" |
16 | ___ECLASS_RECUR_TOOLCHAIN_FUNCS="yes" |
| 11 | [[ -z ${___ECLASS_RECUR_MULTILIB} ]] && inherit multilib |
17 | [[ -z ${___ECLASS_RECUR_MULTILIB} ]] && inherit multilib |
| 12 | |
18 | |
| 13 | DESCRIPTION="Based on the ${ECLASS} eclass" |
19 | DESCRIPTION="Based on the ${ECLASS} eclass" |
| … | |
… | |
| 28 | |
34 | |
| 29 | export ${var}=${prog} |
35 | export ${var}=${prog} |
| 30 | echo "${!var}" |
36 | echo "${!var}" |
| 31 | } |
37 | } |
| 32 | |
38 | |
| 33 | # Returns the name of the archiver |
39 | # @FUNCTION: tc-getAR |
|
|
40 | # @USAGE: [toolchain prefix] |
|
|
41 | # @RETURN: name of the archiver |
| 34 | tc-getAR() { tc-getPROG AR ar "$@"; } |
42 | tc-getAR() { tc-getPROG AR ar "$@"; } |
| 35 | # Returns the name of the assembler |
43 | # @FUNCTION: tc-getAS |
|
|
44 | # @USAGE: [toolchain prefix] |
|
|
45 | # @RETURN: name of the assembler |
| 36 | tc-getAS() { tc-getPROG AS as "$@"; } |
46 | tc-getAS() { tc-getPROG AS as "$@"; } |
|
|
47 | # @FUNCTION: tc-getCC |
|
|
48 | # @USAGE: [toolchain prefix] |
| 37 | # Returns the name of the C compiler |
49 | # @RETURN: name of the C compiler |
| 38 | tc-getCC() { tc-getPROG CC gcc "$@"; } |
50 | tc-getCC() { tc-getPROG CC gcc "$@"; } |
|
|
51 | # @FUNCTION: tc-getCPP |
|
|
52 | # @USAGE: [toolchain prefix] |
| 39 | # Returns the name of the C preprocessor |
53 | # @RETURN: name of the C preprocessor |
| 40 | tc-getCPP() { tc-getPROG CPP cpp "$@"; } |
54 | tc-getCPP() { tc-getPROG CPP cpp "$@"; } |
|
|
55 | # @FUNCTION: tc-getCXX |
|
|
56 | # @USAGE: [toolchain prefix] |
| 41 | # Returns the name of the C++ compiler |
57 | # @RETURN: name of the C++ compiler |
| 42 | tc-getCXX() { tc-getPROG CXX g++ "$@"; } |
58 | tc-getCXX() { tc-getPROG CXX g++ "$@"; } |
| 43 | # Returns the name of the linker |
59 | # @FUNCTION: tc-getLD |
|
|
60 | # @USAGE: [toolchain prefix] |
|
|
61 | # @RETURN: name of the linker |
| 44 | tc-getLD() { tc-getPROG LD ld "$@"; } |
62 | tc-getLD() { tc-getPROG LD ld "$@"; } |
| 45 | # Returns the name of the strip prog |
63 | # @FUNCTION: tc-getSTRIP |
|
|
64 | # @USAGE: [toolchain prefix] |
|
|
65 | # @RETURN: name of the strip program |
| 46 | tc-getSTRIP() { tc-getPROG STRIP strip "$@"; } |
66 | tc-getSTRIP() { tc-getPROG STRIP strip "$@"; } |
|
|
67 | # @FUNCTION: tc-getNM |
|
|
68 | # @USAGE: [toolchain prefix] |
| 47 | # Returns the name of the symbol/object thingy |
69 | # @RETURN: name of the symbol/object thingy |
| 48 | tc-getNM() { tc-getPROG NM nm "$@"; } |
70 | tc-getNM() { tc-getPROG NM nm "$@"; } |
|
|
71 | # @FUNCTION: tc-getRANLIB |
|
|
72 | # @USAGE: [toolchain prefix] |
| 49 | # Returns the name of the archiver indexer |
73 | # @RETURN: name of the archiver indexer |
| 50 | tc-getRANLIB() { tc-getPROG RANLIB ranlib "$@"; } |
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] |
| 51 | # Returns the name of the fortran 77 compiler |
81 | # @RETURN: name of the Fortran 77 compiler |
| 52 | tc-getF77() { tc-getPROG F77 f77 "$@"; } |
82 | tc-getF77() { tc-getPROG F77 gfortran "$@"; } |
|
|
83 | # @FUNCTION: tc-getFC |
|
|
84 | # @USAGE: [toolchain prefix] |
| 53 | # Returns the name of the fortran 90 compiler |
85 | # @RETURN: name of the Fortran 90 compiler |
| 54 | tc-getF90() { tc-getPROG F90 gfortran "$@"; } |
86 | tc-getFC() { tc-getPROG FC gfortran "$@"; } |
| 55 | # Returns the name of the fortran compiler |
87 | # @FUNCTION: tc-getGCJ |
| 56 | tc-getFORTRAN() { tc-getPROG FORTRAN gfortran "$@"; } |
88 | # @USAGE: [toolchain prefix] |
| 57 | # Returns the name of the java compiler |
89 | # @RETURN: name of the java compiler |
| 58 | tc-getGCJ() { tc-getPROG GCJ gcj "$@"; } |
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 "$@"; } |
| 59 | |
103 | |
| 60 | # Returns the name of the C compiler for build |
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 |
| 61 | tc-getBUILD_CC() { |
107 | tc-getBUILD_CC() { |
| 62 | local v |
108 | local v |
| 63 | for v in CC_FOR_BUILD BUILD_CC HOSTCC ; do |
109 | for v in CC_FOR_BUILD BUILD_CC HOSTCC ; do |
| 64 | if [[ -n ${!v} ]] ; then |
110 | if [[ -n ${!v} ]] ; then |
| 65 | export BUILD_CC=${!v} |
111 | export BUILD_CC=${!v} |
| … | |
… | |
| 77 | |
123 | |
| 78 | export BUILD_CC=${search} |
124 | export BUILD_CC=${search} |
| 79 | echo "${search}" |
125 | echo "${search}" |
| 80 | } |
126 | } |
| 81 | |
127 | |
|
|
128 | # @FUNCTION: tc-export |
|
|
129 | # @USAGE: <list of toolchain variables> |
|
|
130 | # @DESCRIPTION: |
| 82 | # Quick way to export a bunch of vars at once |
131 | # Quick way to export a bunch of compiler vars at once. |
| 83 | tc-export() { |
132 | tc-export() { |
| 84 | local var |
133 | local var |
| 85 | for var in "$@" ; do |
134 | for var in "$@" ; do |
|
|
135 | [[ $(type -t tc-get${var}) != "function" ]] && die "tc-export: invalid export variable '${var}'" |
| 86 | eval tc-get${var} > /dev/null |
136 | eval tc-get${var} > /dev/null |
| 87 | done |
137 | done |
| 88 | } |
138 | } |
| 89 | |
139 | |
| 90 | # A simple way to see if we're using a cross-compiler ... |
140 | # @FUNCTION: tc-is-cross-compiler |
|
|
141 | # @RETURN: Shell true if we are using a cross-compiler, shell false otherwise |
| 91 | tc-is-cross-compiler() { |
142 | tc-is-cross-compiler() { |
| 92 | return $([[ ${CBUILD:-${CHOST}} != ${CHOST} ]]) |
143 | return $([[ ${CBUILD:-${CHOST}} != ${CHOST} ]]) |
| 93 | } |
144 | } |
| 94 | |
145 | |
|
|
146 | # @FUNCTION: tc-is-softfloat |
|
|
147 | # @DESCRIPTION: |
| 95 | # See if this toolchain is a softfloat based one. |
148 | # See if this toolchain is a softfloat based one. |
|
|
149 | # @CODE |
| 96 | # The possible return values: |
150 | # The possible return values: |
| 97 | # - only: the target is always softfloat (never had fpu) |
151 | # - only: the target is always softfloat (never had fpu) |
| 98 | # - yes: the target should support softfloat |
152 | # - yes: the target should support softfloat |
| 99 | # - no: the target should support hardfloat |
153 | # - no: the target doesn't support softfloat |
|
|
154 | # @CODE |
| 100 | # This allows us to react differently where packages accept |
155 | # This allows us to react differently where packages accept |
| 101 | # softfloat flags in the case where support is optional, but |
156 | # softfloat flags in the case where support is optional, but |
| 102 | # rejects softfloat flags where the target always lacks an fpu. |
157 | # rejects softfloat flags where the target always lacks an fpu. |
| 103 | tc-is-softfloat() { |
158 | tc-is-softfloat() { |
| 104 | case ${CTARGET} in |
159 | case ${CTARGET} in |
| … | |
… | |
| 110 | || echo "no" |
165 | || echo "no" |
| 111 | ;; |
166 | ;; |
| 112 | esac |
167 | esac |
| 113 | } |
168 | } |
| 114 | |
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 | } |
|
|
182 | |
|
|
183 | # @FUNCTION: tc-is-static-only |
|
|
184 | # @DESCRIPTION: |
|
|
185 | # Return shell true if the target does not support shared libs, shell false |
|
|
186 | # otherwise. |
|
|
187 | tc-is-static-only() { |
|
|
188 | local host=${CTARGET:-${CHOST}} |
|
|
189 | |
|
|
190 | # *MiNT doesn't have shared libraries, only platform so far |
|
|
191 | return $([[ ${host} == *-mint* ]]) |
|
|
192 | } |
|
|
193 | |
|
|
194 | # @FUNCTION: tc-has-openmp |
|
|
195 | # @USAGE: [toolchain prefix] |
|
|
196 | # @DESCRIPTION: |
|
|
197 | # See if the toolchain supports OpenMP. |
|
|
198 | tc-has-openmp() { |
|
|
199 | local base="${T}/test-tc-openmp" |
|
|
200 | cat <<-EOF > "${base}.c" |
|
|
201 | #include <omp.h> |
|
|
202 | int main() { |
|
|
203 | int nthreads, tid, ret = 0; |
|
|
204 | #pragma omp parallel private(nthreads, tid) |
|
|
205 | { |
|
|
206 | tid = omp_get_thread_num(); |
|
|
207 | nthreads = omp_get_num_threads(); ret += tid + nthreads; |
|
|
208 | } |
|
|
209 | return ret; |
|
|
210 | } |
|
|
211 | EOF |
|
|
212 | $(tc-getCC "$@") -fopenmp "${base}.c" -o "${base}" >&/dev/null |
|
|
213 | local ret=$? |
|
|
214 | rm -f "${base}"* |
|
|
215 | return ${ret} |
|
|
216 | } |
|
|
217 | |
|
|
218 | # @FUNCTION: tc-has-tls |
|
|
219 | # @USAGE: [-s|-c|-l] [toolchain prefix] |
|
|
220 | # @DESCRIPTION: |
|
|
221 | # See if the toolchain supports thread local storage (TLS). Use -s to test the |
|
|
222 | # compiler, -c to also test the assembler, and -l to also test the C library |
|
|
223 | # (the default). |
|
|
224 | tc-has-tls() { |
|
|
225 | local base="${T}/test-tc-tls" |
|
|
226 | cat <<-EOF > "${base}.c" |
|
|
227 | int foo(int *i) { |
|
|
228 | static __thread int j = 0; |
|
|
229 | return *i ? j : *i; |
|
|
230 | } |
|
|
231 | EOF |
|
|
232 | local flags |
|
|
233 | case $1 in |
|
|
234 | -s) flags="-S";; |
|
|
235 | -c) flags="-c";; |
|
|
236 | -l) ;; |
|
|
237 | -*) die "Usage: tc-has-tls [-c|-l] [toolchain prefix]";; |
|
|
238 | esac |
|
|
239 | : ${flags:=-fPIC -shared -Wl,-z,defs} |
|
|
240 | [[ $1 == -* ]] && shift |
|
|
241 | $(tc-getCC "$@") ${flags} "${base}.c" -o "${base}" >&/dev/null |
|
|
242 | local ret=$? |
|
|
243 | rm -f "${base}"* |
|
|
244 | return ${ret} |
|
|
245 | } |
|
|
246 | |
|
|
247 | |
| 115 | # Parse information from CBUILD/CHOST/CTARGET rather than |
248 | # Parse information from CBUILD/CHOST/CTARGET rather than |
| 116 | # use external variables from the profile. |
249 | # use external variables from the profile. |
| 117 | tc-ninja_magic_to_arch() { |
250 | tc-ninja_magic_to_arch() { |
| 118 | ninj() { [[ ${type} == "kern" ]] && echo $1 || echo $2 ; } |
251 | ninj() { [[ ${type} == "kern" ]] && echo $1 || echo $2 ; } |
| 119 | |
252 | |
| … | |
… | |
| 122 | [[ -z ${host} ]] && host=${CTARGET:-${CHOST}} |
255 | [[ -z ${host} ]] && host=${CTARGET:-${CHOST}} |
| 123 | |
256 | |
| 124 | case ${host} in |
257 | case ${host} in |
| 125 | alpha*) echo alpha;; |
258 | alpha*) echo alpha;; |
| 126 | arm*) echo arm;; |
259 | arm*) echo arm;; |
|
|
260 | avr*) ninj avr32 avr;; |
| 127 | bfin*) ninj blackfin bfin;; |
261 | bfin*) ninj blackfin bfin;; |
| 128 | cris*) echo cris;; |
262 | cris*) echo cris;; |
| 129 | hppa*) ninj parisc hppa;; |
263 | hppa*) ninj parisc hppa;; |
| 130 | i?86*) ninj i386 x86;; |
264 | i?86*) |
|
|
265 | # Starting with linux-2.6.24, the 'x86_64' and 'i386' |
|
|
266 | # trees have been unified into 'x86'. |
|
|
267 | # FreeBSD still uses i386 |
|
|
268 | if [[ ${type} == "kern" ]] && [[ $(KV_to_int ${KV}) -lt $(KV_to_int 2.6.24) || ${host} == *freebsd* ]] ; then |
|
|
269 | echo i386 |
|
|
270 | else |
|
|
271 | echo x86 |
|
|
272 | fi |
|
|
273 | ;; |
| 131 | ia64*) echo ia64;; |
274 | ia64*) echo ia64;; |
| 132 | m68*) echo m68k;; |
275 | m68*) echo m68k;; |
| 133 | mips*) echo mips;; |
276 | mips*) echo mips;; |
| 134 | nios2*) echo nios2;; |
277 | nios2*) echo nios2;; |
| 135 | nios*) echo nios;; |
278 | nios*) echo nios;; |
| 136 | powerpc*) |
279 | powerpc*) |
| 137 | # Starting with linux-2.6.15, the 'ppc' and 'ppc64' trees |
280 | # Starting with linux-2.6.15, the 'ppc' and 'ppc64' trees |
| 138 | # have been unified into simply 'powerpc', but until 2.6.16, |
281 | # have been unified into simply 'powerpc', but until 2.6.16, |
| 139 | # ppc32 is still using ARCH="ppc" as default |
282 | # ppc32 is still using ARCH="ppc" as default |
| 140 | if [[ $(KV_to_int ${KV}) -ge $(KV_to_int 2.6.16) ]] && [[ ${type} == "kern" ]] ; then |
283 | if [[ ${type} == "kern" ]] && [[ $(KV_to_int ${KV}) -ge $(KV_to_int 2.6.16) ]] ; then |
| 141 | echo powerpc |
284 | echo powerpc |
| 142 | elif [[ $(KV_to_int ${KV}) -eq $(KV_to_int 2.6.15) ]] && [[ ${type} == "kern" ]] ; then |
285 | elif [[ ${type} == "kern" ]] && [[ $(KV_to_int ${KV}) -eq $(KV_to_int 2.6.15) ]] ; then |
| 143 | if [[ ${host} == powerpc64* ]] || [[ ${PROFILE_ARCH} == "ppc64" ]] ; then |
286 | if [[ ${host} == powerpc64* ]] || [[ ${PROFILE_ARCH} == "ppc64" ]] ; then |
| 144 | echo powerpc |
287 | echo powerpc |
| 145 | else |
288 | else |
| 146 | echo ppc |
289 | echo ppc |
| 147 | fi |
290 | fi |
| 148 | elif [[ ${host} == powerpc64* ]] ; then |
291 | elif [[ ${host} == powerpc64* ]] ; then |
| 149 | echo ppc64 |
292 | echo ppc64 |
| 150 | elif [[ ${PROFILE_ARCH} == "ppc64" ]] ; then |
293 | elif [[ ${PROFILE_ARCH} == "ppc64" ]] ; then |
| 151 | ninj ppc64 ppc |
294 | ninj ppc64 ppc |
| 152 | else |
295 | else |
| 153 | echo ppc |
296 | echo ppc |
| 154 | fi |
297 | fi |
| 155 | ;; |
298 | ;; |
| 156 | s390*) echo s390;; |
299 | s390*) echo s390;; |
| 157 | sh64*) ninj sh64 sh;; |
300 | sh64*) ninj sh64 sh;; |
| 158 | sh*) echo sh;; |
301 | sh*) echo sh;; |
| 159 | sparc64*) ninj sparc64 sparc;; |
302 | sparc64*) ninj sparc64 sparc;; |
| 160 | sparc*) [[ ${PROFILE_ARCH} == "sparc64" ]] \ |
303 | sparc*) [[ ${PROFILE_ARCH} == "sparc64" ]] \ |
| 161 | && ninj sparc64 sparc \ |
304 | && ninj sparc64 sparc \ |
| 162 | || echo sparc |
305 | || echo sparc |
| 163 | ;; |
306 | ;; |
| 164 | vax*) echo vax;; |
307 | vax*) echo vax;; |
| 165 | x86_64*) ninj x86_64 amd64;; |
308 | x86_64*freebsd*) echo amd64;; |
| 166 | *) echo ${ARCH};; |
309 | x86_64*) |
|
|
310 | # Starting with linux-2.6.24, the 'x86_64' and 'i386' |
|
|
311 | # trees have been unified into 'x86'. |
|
|
312 | if [[ ${type} == "kern" ]] && [[ $(KV_to_int ${KV}) -ge $(KV_to_int 2.6.24) ]] ; then |
|
|
313 | echo x86 |
|
|
314 | else |
|
|
315 | ninj x86_64 amd64 |
|
|
316 | fi |
|
|
317 | ;; |
|
|
318 | |
|
|
319 | # since our usage of tc-arch is largely concerned with |
|
|
320 | # normalizing inputs for testing ${CTARGET}, let's filter |
|
|
321 | # other cross targets (mingw and such) into the unknown. |
|
|
322 | *) echo unknown;; |
| 167 | esac |
323 | esac |
| 168 | } |
324 | } |
|
|
325 | # @FUNCTION: tc-arch-kernel |
|
|
326 | # @USAGE: [toolchain prefix] |
|
|
327 | # @RETURN: name of the kernel arch according to the compiler target |
| 169 | tc-arch-kernel() { |
328 | tc-arch-kernel() { |
| 170 | tc-ninja_magic_to_arch kern $@ |
329 | tc-ninja_magic_to_arch kern "$@" |
| 171 | } |
330 | } |
|
|
331 | # @FUNCTION: tc-arch |
|
|
332 | # @USAGE: [toolchain prefix] |
|
|
333 | # @RETURN: name of the portage arch according to the compiler target |
| 172 | tc-arch() { |
334 | tc-arch() { |
| 173 | tc-ninja_magic_to_arch portage $@ |
335 | tc-ninja_magic_to_arch portage "$@" |
| 174 | } |
336 | } |
|
|
337 | |
| 175 | tc-endian() { |
338 | tc-endian() { |
| 176 | local host=$1 |
339 | local host=$1 |
| 177 | [[ -z ${host} ]] && host=${CTARGET:-${CHOST}} |
340 | [[ -z ${host} ]] && host=${CTARGET:-${CHOST}} |
| 178 | host=${host%%-*} |
341 | host=${host%%-*} |
| 179 | |
342 | |
| … | |
… | |
| 196 | x86_64*) echo little;; |
359 | x86_64*) echo little;; |
| 197 | *) echo wtf;; |
360 | *) echo wtf;; |
| 198 | esac |
361 | esac |
| 199 | } |
362 | } |
| 200 | |
363 | |
| 201 | # Returns the version as by `$CC -dumpversion` |
364 | # Internal func. The first argument is the version info to expand. |
|
|
365 | # Query the preprocessor to improve compatibility across different |
|
|
366 | # compilers rather than maintaining a --version flag matrix. #335943 |
|
|
367 | _gcc_fullversion() { |
|
|
368 | local ver="$1"; shift |
|
|
369 | set -- `$(tc-getCPP "$@") -E -P - <<<"__GNUC__ __GNUC_MINOR__ __GNUC_PATCHLEVEL__"` |
|
|
370 | eval echo "$ver" |
|
|
371 | } |
|
|
372 | |
|
|
373 | # @FUNCTION: gcc-fullversion |
|
|
374 | # @RETURN: compiler version (major.minor.micro: [3.4.6]) |
| 202 | gcc-fullversion() { |
375 | gcc-fullversion() { |
| 203 | $(tc-getCC "$@") -dumpversion |
376 | _gcc_fullversion '$1.$2.$3' "$@" |
| 204 | } |
377 | } |
| 205 | # Returns the version, but only the <major>.<minor> |
378 | # @FUNCTION: gcc-version |
|
|
379 | # @RETURN: compiler version (major.minor: [3.4].6) |
| 206 | gcc-version() { |
380 | gcc-version() { |
| 207 | gcc-fullversion "$@" | cut -f1,2 -d. |
381 | _gcc_fullversion '$1.$2' "$@" |
| 208 | } |
382 | } |
| 209 | # Returns the Major version |
383 | # @FUNCTION: gcc-major-version |
|
|
384 | # @RETURN: major compiler version (major: [3].4.6) |
| 210 | gcc-major-version() { |
385 | gcc-major-version() { |
| 211 | gcc-version "$@" | cut -f1 -d. |
386 | _gcc_fullversion '$1' "$@" |
| 212 | } |
387 | } |
| 213 | # Returns the Minor version |
388 | # @FUNCTION: gcc-minor-version |
|
|
389 | # @RETURN: minor compiler version (minor: 3.[4].6) |
| 214 | gcc-minor-version() { |
390 | gcc-minor-version() { |
| 215 | gcc-version "$@" | cut -f2 -d. |
391 | _gcc_fullversion '$2' "$@" |
| 216 | } |
392 | } |
| 217 | # Returns the Micro version |
393 | # @FUNCTION: gcc-micro-version |
|
|
394 | # @RETURN: micro compiler version (micro: 3.4.[6]) |
| 218 | gcc-micro-version() { |
395 | gcc-micro-version() { |
| 219 | gcc-fullversion "$@" | cut -f3 -d. | cut -f1 -d- |
396 | _gcc_fullversion '$3' "$@" |
| 220 | } |
397 | } |
|
|
398 | |
| 221 | # Returns the installation directory - internal toolchain |
399 | # Returns the installation directory - internal toolchain |
| 222 | # function for use by _gcc-specs-exists (for flag-o-matic). |
400 | # function for use by _gcc-specs-exists (for flag-o-matic). |
| 223 | _gcc-install-dir() { |
401 | _gcc-install-dir() { |
| 224 | echo "$($(tc-getCC) -print-search-dirs 2> /dev/null |\ |
402 | echo "$(LC_ALL=C $(tc-getCC) -print-search-dirs 2> /dev/null |\ |
| 225 | awk '$1=="install:" {print $2}')" |
403 | awk '$1=="install:" {print $2}')" |
| 226 | } |
404 | } |
| 227 | # Returns true if the indicated specs file exists - internal toolchain |
405 | # Returns true if the indicated specs file exists - internal toolchain |
| 228 | # function for use by flag-o-matic. |
406 | # function for use by flag-o-matic. |
| 229 | _gcc-specs-exists() { |
407 | _gcc-specs-exists() { |
| … | |
… | |
| 273 | |
451 | |
| 274 | # Returns true if gcc sets relro |
452 | # Returns true if gcc sets relro |
| 275 | gcc-specs-relro() { |
453 | gcc-specs-relro() { |
| 276 | local directive |
454 | local directive |
| 277 | directive=$(gcc-specs-directive link_command) |
455 | directive=$(gcc-specs-directive link_command) |
| 278 | return $([[ ${directive/\{!norelro:} != ${directive} ]]) |
456 | return $([[ "${directive/\{!norelro:}" != "${directive}" ]]) |
| 279 | } |
457 | } |
| 280 | # Returns true if gcc sets now |
458 | # Returns true if gcc sets now |
| 281 | gcc-specs-now() { |
459 | gcc-specs-now() { |
| 282 | local directive |
460 | local directive |
| 283 | directive=$(gcc-specs-directive link_command) |
461 | directive=$(gcc-specs-directive link_command) |
| 284 | return $([[ ${directive/\{!nonow:} != ${directive} ]]) |
462 | return $([[ "${directive/\{!nonow:}" != "${directive}" ]]) |
| 285 | } |
463 | } |
| 286 | # Returns true if gcc builds PIEs |
464 | # Returns true if gcc builds PIEs |
| 287 | gcc-specs-pie() { |
465 | gcc-specs-pie() { |
| 288 | local directive |
466 | local directive |
| 289 | directive=$(gcc-specs-directive cc1) |
467 | directive=$(gcc-specs-directive cc1) |
| 290 | return $([[ ${directive/\{!nopie:} != ${directive} ]]) |
468 | return $([[ "${directive/\{!nopie:}" != "${directive}" ]]) |
| 291 | } |
469 | } |
| 292 | # Returns true if gcc builds with the stack protector |
470 | # Returns true if gcc builds with the stack protector |
| 293 | gcc-specs-ssp() { |
471 | gcc-specs-ssp() { |
| 294 | local directive |
472 | local directive |
| 295 | directive=$(gcc-specs-directive cc1) |
473 | directive=$(gcc-specs-directive cc1) |
| 296 | return $([[ ${directive/\{!fno-stack-protector:} != ${directive} ]]) |
474 | return $([[ "${directive/\{!fno-stack-protector:}" != "${directive}" ]]) |
| 297 | } |
475 | } |
| 298 | # Returns true if gcc upgrades fstack-protector to fstack-protector-all |
476 | # Returns true if gcc upgrades fstack-protector to fstack-protector-all |
| 299 | gcc-specs-ssp-to-all() { |
477 | gcc-specs-ssp-to-all() { |
| 300 | local directive |
478 | local directive |
| 301 | directive=$(gcc-specs-directive cc1) |
479 | directive=$(gcc-specs-directive cc1) |
| 302 | return $([[ ${directive/\{!fno-stack-protector-all:} != ${directive} ]]) |
480 | return $([[ "${directive/\{!fno-stack-protector-all:}" != "${directive}" ]]) |
| 303 | } |
481 | } |
|
|
482 | # Returns true if gcc builds with fno-strict-overflow |
|
|
483 | gcc-specs-nostrict() { |
|
|
484 | local directive |
|
|
485 | directive=$(gcc-specs-directive cc1) |
|
|
486 | return $([[ "${directive/\{!fstrict-overflow:}" != "${directive}" ]]) |
|
|
487 | } |
| 304 | |
488 | |
| 305 | |
489 | |
|
|
490 | # @FUNCTION: gen_usr_ldscript |
|
|
491 | # @USAGE: [-a] <list of libs to create linker scripts for> |
|
|
492 | # @DESCRIPTION: |
| 306 | # This function generate linker scripts in /usr/lib for dynamic |
493 | # This function generate linker scripts in /usr/lib for dynamic |
| 307 | # libs in /lib. This is to fix linking problems when you have |
494 | # libs in /lib. This is to fix linking problems when you have |
| 308 | # the .so in /lib, and the .a in /usr/lib. What happens is that |
495 | # the .so in /lib, and the .a in /usr/lib. What happens is that |
| 309 | # in some cases when linking dynamic, the .a in /usr/lib is used |
496 | # in some cases when linking dynamic, the .a in /usr/lib is used |
| 310 | # instead of the .so in /lib due to gcc/libtool tweaking ld's |
497 | # instead of the .so in /lib due to gcc/libtool tweaking ld's |
| 311 | # library search path. This cause many builds to fail. |
498 | # library search path. This causes many builds to fail. |
| 312 | # See bug #4411 for more info. |
499 | # See bug #4411 for more info. |
| 313 | # |
500 | # |
| 314 | # To use, simply call: |
|
|
| 315 | # |
|
|
| 316 | # gen_usr_ldscript libfoo.so |
|
|
| 317 | # |
|
|
| 318 | # Note that you should in general use the unversioned name of |
501 | # Note that you should in general use the unversioned name of |
| 319 | # the library, as ldconfig should usually update it correctly |
502 | # the library (libfoo.so), as ldconfig should usually update it |
| 320 | # to point to the latest version of the library present. |
503 | # correctly to point to the latest version of the library present. |
| 321 | gen_usr_ldscript() { |
504 | gen_usr_ldscript() { |
| 322 | local lib libdir=$(get_libdir) output_format="" |
505 | local lib libdir=$(get_libdir) output_format="" auto=false suffix=$(get_libname) |
|
|
506 | [[ -z ${ED+set} ]] && local ED=${D%/}${EPREFIX}/ |
|
|
507 | |
|
|
508 | tc-is-static-only && return |
|
|
509 | |
| 323 | # Just make sure it exists |
510 | # Just make sure it exists |
| 324 | dodir /usr/${libdir} |
511 | dodir /usr/${libdir} |
|
|
512 | |
|
|
513 | if [[ $1 == "-a" ]] ; then |
|
|
514 | auto=true |
|
|
515 | shift |
|
|
516 | dodir /${libdir} |
|
|
517 | fi |
| 325 | |
518 | |
| 326 | # OUTPUT_FORMAT gives hints to the linker as to what binary format |
519 | # OUTPUT_FORMAT gives hints to the linker as to what binary format |
| 327 | # is referenced ... makes multilib saner |
520 | # is referenced ... makes multilib saner |
| 328 | output_format=$($(tc-getCC) ${CFLAGS} ${LDFLAGS} -Wl,--verbose 2>&1 | sed -n 's/^OUTPUT_FORMAT("\([^"]*\)",.*/\1/p') |
521 | output_format=$($(tc-getCC) ${CFLAGS} ${LDFLAGS} -Wl,--verbose 2>&1 | sed -n 's/^OUTPUT_FORMAT("\([^"]*\)",.*/\1/p') |
| 329 | [[ -n ${output_format} ]] && output_format="OUTPUT_FORMAT ( ${output_format} )" |
522 | [[ -n ${output_format} ]] && output_format="OUTPUT_FORMAT ( ${output_format} )" |
| 330 | |
523 | |
| 331 | for lib in "$@" ; do |
524 | for lib in "$@" ; do |
| 332 | if [[ ${USERLAND} == "Darwin" ]] ; then |
525 | local tlib |
| 333 | ewarn "Not creating fake dynamic library for $lib on Darwin;" |
526 | if ${auto} ; then |
| 334 | ewarn "making a symlink instead." |
527 | lib="lib${lib}${suffix}" |
| 335 | dosym "/${libdir}/${lib}" "/usr/${libdir}/${lib}" |
|
|
| 336 | else |
528 | else |
|
|
529 | # Ensure /lib/${lib} exists to avoid dangling scripts/symlinks. |
|
|
530 | # This especially is for AIX where $(get_libname) can return ".a", |
|
|
531 | # so /lib/${lib} might be moved to /usr/lib/${lib} (by accident). |
|
|
532 | [[ -r ${ED}/${libdir}/${lib} ]] || continue |
|
|
533 | #TODO: better die here? |
|
|
534 | fi |
|
|
535 | |
|
|
536 | case ${CTARGET:-${CHOST}} in |
|
|
537 | *-darwin*) |
|
|
538 | if ${auto} ; then |
|
|
539 | tlib=$(scanmacho -qF'%S#F' "${ED}"/usr/${libdir}/${lib}) |
|
|
540 | else |
|
|
541 | tlib=$(scanmacho -qF'%S#F' "${ED}"/${libdir}/${lib}) |
|
|
542 | fi |
|
|
543 | [[ -z ${tlib} ]] && die "unable to read install_name from ${lib}" |
|
|
544 | tlib=${tlib##*/} |
|
|
545 | |
|
|
546 | if ${auto} ; then |
|
|
547 | mv "${ED}"/usr/${libdir}/${lib%${suffix}}.*${suffix#.} "${ED}"/${libdir}/ || die |
|
|
548 | # some install_names are funky: they encode a version |
|
|
549 | if [[ ${tlib} != ${lib%${suffix}}.*${suffix#.} ]] ; then |
|
|
550 | mv "${ED}"/usr/${libdir}/${tlib%${suffix}}.*${suffix#.} "${ED}"/${libdir}/ || die |
|
|
551 | fi |
|
|
552 | rm -f "${ED}"/${libdir}/${lib} |
|
|
553 | fi |
|
|
554 | |
|
|
555 | # Mach-O files have an id, which is like a soname, it tells how |
|
|
556 | # another object linking against this lib should reference it. |
|
|
557 | # Since we moved the lib from usr/lib into lib this reference is |
|
|
558 | # wrong. Hence, we update it here. We don't configure with |
|
|
559 | # libdir=/lib because that messes up libtool files. |
|
|
560 | # Make sure we don't lose the specific version, so just modify the |
|
|
561 | # existing install_name |
|
|
562 | if [[ ! -w "${ED}/${libdir}/${tlib}" ]] ; then |
|
|
563 | chmod u+w "${ED}${libdir}/${tlib}" # needed to write to it |
|
|
564 | local nowrite=yes |
|
|
565 | fi |
|
|
566 | install_name_tool \ |
|
|
567 | -id "${EPREFIX}"/${libdir}/${tlib} \ |
|
|
568 | "${ED}"/${libdir}/${tlib} || die "install_name_tool failed" |
|
|
569 | [[ -n ${nowrite} ]] && chmod u-w "${ED}${libdir}/${tlib}" |
|
|
570 | # Now as we don't use GNU binutils and our linker doesn't |
|
|
571 | # understand linker scripts, just create a symlink. |
|
|
572 | pushd "${ED}/usr/${libdir}" > /dev/null |
|
|
573 | ln -snf "../../${libdir}/${tlib}" "${lib}" |
|
|
574 | popd > /dev/null |
|
|
575 | ;; |
|
|
576 | *-aix*|*-irix*|*64*-hpux*|*-interix*|*-winnt*) |
|
|
577 | if ${auto} ; then |
|
|
578 | mv "${ED}"/usr/${libdir}/${lib}* "${ED}"/${libdir}/ || die |
|
|
579 | # no way to retrieve soname on these platforms (?) |
|
|
580 | tlib=$(readlink "${ED}"/${libdir}/${lib}) |
|
|
581 | tlib=${tlib##*/} |
|
|
582 | if [[ -z ${tlib} ]] ; then |
|
|
583 | # ok, apparently was not a symlink, don't remove it and |
|
|
584 | # just link to it |
|
|
585 | tlib=${lib} |
|
|
586 | else |
|
|
587 | rm -f "${ED}"/${libdir}/${lib} |
|
|
588 | fi |
|
|
589 | else |
|
|
590 | tlib=${lib} |
|
|
591 | fi |
|
|
592 | |
|
|
593 | # we don't have GNU binutils on these platforms, so we symlink |
|
|
594 | # instead, which seems to work fine. Keep it relative, otherwise |
|
|
595 | # we break some QA checks in Portage |
|
|
596 | # on interix, the linker scripts would work fine in _most_ |
|
|
597 | # situations. if a library links to such a linker script the |
|
|
598 | # absolute path to the correct library is inserted into the binary, |
|
|
599 | # which is wrong, since anybody linking _without_ libtool will miss |
|
|
600 | # some dependencies, since the stupid linker cannot find libraries |
|
|
601 | # hardcoded with absolute paths (as opposed to the loader, which |
|
|
602 | # seems to be able to do this). |
|
|
603 | # this has been seen while building shared-mime-info which needs |
|
|
604 | # libxml2, but links without libtool (and does not add libz to the |
|
|
605 | # command line by itself). |
|
|
606 | pushd "${ED}/usr/${libdir}" > /dev/null |
|
|
607 | ln -snf "../../${libdir}/${tlib}" "${lib}" |
|
|
608 | popd > /dev/null |
|
|
609 | ;; |
|
|
610 | hppa*-hpux*) # PA-RISC 32bit (SOM) only, others (ELF) match *64*-hpux* above. |
|
|
611 | if ${auto} ; then |
|
|
612 | tlib=$(chatr "${ED}"/usr/${libdir}/${lib} | sed -n '/internal name:/{n;s/^ *//;p;q}') |
|
|
613 | [[ -z ${tlib} ]] && tlib=${lib} |
|
|
614 | tlib=${tlib##*/} # 'internal name' can have a path component |
|
|
615 | mv "${ED}"/usr/${libdir}/${lib}* "${ED}"/${libdir}/ || die |
|
|
616 | # some SONAMEs are funky: they encode a version before the .so |
|
|
617 | if [[ ${tlib} != ${lib}* ]] ; then |
|
|
618 | mv "${ED}"/usr/${libdir}/${tlib}* "${ED}"/${libdir}/ || die |
|
|
619 | fi |
|
|
620 | [[ ${tlib} != ${lib} ]] && |
|
|
621 | rm -f "${ED}"/${libdir}/${lib} |
|
|
622 | else |
|
|
623 | tlib=$(chatr "${ED}"/${libdir}/${lib} | sed -n '/internal name:/{n;s/^ *//;p;q}') |
|
|
624 | [[ -z ${tlib} ]] && tlib=${lib} |
|
|
625 | tlib=${tlib##*/} # 'internal name' can have a path component |
|
|
626 | fi |
|
|
627 | pushd "${ED}"/usr/${libdir} >/dev/null |
|
|
628 | ln -snf "../../${libdir}/${tlib}" "${lib}" |
|
|
629 | # need the internal name in usr/lib too, to be available at runtime |
|
|
630 | # when linked with /path/to/lib.sl (hardcode_direct_absolute=yes) |
|
|
631 | [[ ${tlib} != ${lib} ]] && |
|
|
632 | ln -snf "../../${libdir}/${tlib}" "${tlib}" |
|
|
633 | popd >/dev/null |
|
|
634 | ;; |
|
|
635 | *) |
|
|
636 | if ${auto} ; then |
|
|
637 | tlib=$(scanelf -qF'%S#F' "${ED}"/usr/${libdir}/${lib}) |
|
|
638 | [[ -z ${tlib} ]] && die "unable to read SONAME from ${lib}" |
|
|
639 | mv "${ED}"/usr/${libdir}/${lib}* "${ED}"/${libdir}/ || die |
|
|
640 | # some SONAMEs are funky: they encode a version before the .so |
|
|
641 | if [[ ${tlib} != ${lib}* ]] ; then |
|
|
642 | mv "${ED}"/usr/${libdir}/${tlib}* "${ED}"/${libdir}/ || die |
|
|
643 | fi |
|
|
644 | rm -f "${ED}"/${libdir}/${lib} |
|
|
645 | else |
|
|
646 | tlib=${lib} |
|
|
647 | fi |
| 337 | cat > "${D}/usr/${libdir}/${lib}" <<-END_LDSCRIPT |
648 | cat > "${ED}/usr/${libdir}/${lib}" <<-END_LDSCRIPT |
| 338 | /* GNU ld script |
649 | /* GNU ld script |
| 339 | Since Gentoo has critical dynamic libraries |
650 | Since Gentoo has critical dynamic libraries in /lib, and the static versions |
| 340 | in /lib, and the static versions in /usr/lib, |
651 | in /usr/lib, we need to have a "fake" dynamic lib in /usr/lib, otherwise we |
| 341 | we need to have a "fake" dynamic lib in /usr/lib, |
652 | run into linking problems. This "fake" dynamic lib is a linker script that |
| 342 | otherwise we run into linking problems. |
653 | redirects the linker to the real lib. And yes, this works in the cross- |
|
|
654 | compiling scenario as the sysroot-ed linker will prepend the real path. |
| 343 | |
655 | |
| 344 | See bug http://bugs.gentoo.org/4411 for more info. |
656 | See bug http://bugs.gentoo.org/4411 for more info. |
| 345 | */ |
657 | */ |
| 346 | ${output_format} |
658 | ${output_format} |
| 347 | GROUP ( /${libdir}/${lib} ) |
659 | GROUP ( ${EPREFIX}/${libdir}/${tlib} ) |
| 348 | END_LDSCRIPT |
660 | END_LDSCRIPT |
| 349 | fi |
661 | ;; |
|
|
662 | esac |
| 350 | fperms a+x "/usr/${libdir}/${lib}" || die "could not change perms on ${lib}" |
663 | fperms a+x "/usr/${libdir}/${lib}" || die "could not change perms on ${lib}" |
| 351 | done |
664 | done |
| 352 | } |
665 | } |