| 1 | # Copyright 1999-2006 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.64 2007/01/07 11:39:08 vapier Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/toolchain-funcs.eclass,v 1.95 2009/09/02 20:08:31 grobian Exp $ |
| 4 | # |
4 | |
|
|
5 | # @ECLASS: toolchain-funcs.eclass |
|
|
6 | # @MAINTAINER: |
| 5 | # Author: 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 | inherit multilib |
16 | ___ECLASS_RECUR_TOOLCHAIN_FUNCS="yes" |
|
|
17 | [[ -z ${___ECLASS_RECUR_MULTILIB} ]] && inherit multilib |
| 11 | |
18 | |
| 12 | DESCRIPTION="Based on the ${ECLASS} eclass" |
19 | DESCRIPTION="Based on the ${ECLASS} eclass" |
| 13 | |
20 | |
| 14 | tc-getPROG() { |
21 | tc-getPROG() { |
| 15 | local var=$1 |
22 | local var=$1 |
| … | |
… | |
| 27 | |
34 | |
| 28 | export ${var}=${prog} |
35 | export ${var}=${prog} |
| 29 | echo "${!var}" |
36 | echo "${!var}" |
| 30 | } |
37 | } |
| 31 | |
38 | |
| 32 | # Returns the name of the archiver |
39 | # @FUNCTION: tc-getAR |
|
|
40 | # @USAGE: [toolchain prefix] |
|
|
41 | # @RETURN: name of the archiver |
| 33 | tc-getAR() { tc-getPROG AR ar "$@"; } |
42 | tc-getAR() { tc-getPROG AR ar "$@"; } |
| 34 | # Returns the name of the assembler |
43 | # @FUNCTION: tc-getAS |
|
|
44 | # @USAGE: [toolchain prefix] |
|
|
45 | # @RETURN: name of the assembler |
| 35 | tc-getAS() { tc-getPROG AS as "$@"; } |
46 | tc-getAS() { tc-getPROG AS as "$@"; } |
|
|
47 | # @FUNCTION: tc-getCC |
|
|
48 | # @USAGE: [toolchain prefix] |
| 36 | # Returns the name of the C compiler |
49 | # @RETURN: name of the C compiler |
| 37 | tc-getCC() { tc-getPROG CC gcc "$@"; } |
50 | tc-getCC() { tc-getPROG CC gcc "$@"; } |
|
|
51 | # @FUNCTION: tc-getCPP |
|
|
52 | # @USAGE: [toolchain prefix] |
| 38 | # Returns the name of the C preprocessor |
53 | # @RETURN: name of the C preprocessor |
| 39 | tc-getCPP() { tc-getPROG CPP cpp "$@"; } |
54 | tc-getCPP() { tc-getPROG CPP cpp "$@"; } |
|
|
55 | # @FUNCTION: tc-getCXX |
|
|
56 | # @USAGE: [toolchain prefix] |
| 40 | # Returns the name of the C++ compiler |
57 | # @RETURN: name of the C++ compiler |
| 41 | tc-getCXX() { tc-getPROG CXX g++ "$@"; } |
58 | tc-getCXX() { tc-getPROG CXX g++ "$@"; } |
| 42 | # Returns the name of the linker |
59 | # @FUNCTION: tc-getLD |
|
|
60 | # @USAGE: [toolchain prefix] |
|
|
61 | # @RETURN: name of the linker |
| 43 | tc-getLD() { tc-getPROG LD ld "$@"; } |
62 | tc-getLD() { tc-getPROG LD ld "$@"; } |
| 44 | # Returns the name of the strip prog |
63 | # @FUNCTION: tc-getSTRIP |
|
|
64 | # @USAGE: [toolchain prefix] |
|
|
65 | # @RETURN: name of the strip program |
| 45 | tc-getSTRIP() { tc-getPROG STRIP strip "$@"; } |
66 | tc-getSTRIP() { tc-getPROG STRIP strip "$@"; } |
|
|
67 | # @FUNCTION: tc-getNM |
|
|
68 | # @USAGE: [toolchain prefix] |
| 46 | # Returns the name of the symbol/object thingy |
69 | # @RETURN: name of the symbol/object thingy |
| 47 | tc-getNM() { tc-getPROG NM nm "$@"; } |
70 | tc-getNM() { tc-getPROG NM nm "$@"; } |
|
|
71 | # @FUNCTION: tc-getRANLIB |
|
|
72 | # @USAGE: [toolchain prefix] |
| 48 | # Returns the name of the archiver indexer |
73 | # @RETURN: name of the archiver indexer |
| 49 | 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] |
| 50 | # Returns the name of the fortran 77 compiler |
81 | # @RETURN: name of the Fortran 77 compiler |
| 51 | tc-getF77() { tc-getPROG F77 f77 "$@"; } |
82 | tc-getF77() { tc-getPROG F77 f77 "$@"; } |
|
|
83 | # @FUNCTION: tc-getFC |
|
|
84 | # @USAGE: [toolchain prefix] |
| 52 | # Returns the name of the fortran 90 compiler |
85 | # @RETURN: name of the Fortran 90 compiler |
| 53 | tc-getF90() { tc-getPROG F90 gfortran "$@"; } |
86 | tc-getFC() { tc-getPROG FC gfortran "$@"; } |
| 54 | # Returns the name of the fortran compiler |
87 | # @FUNCTION: tc-getGCJ |
| 55 | tc-getFORTRAN() { tc-getPROG FORTRAN gfortran "$@"; } |
88 | # @USAGE: [toolchain prefix] |
| 56 | # Returns the name of the java compiler |
89 | # @RETURN: name of the java compiler |
| 57 | tc-getGCJ() { tc-getPROG GCJ gcj "$@"; } |
90 | tc-getGCJ() { tc-getPROG GCJ gcj "$@"; } |
| 58 | |
91 | |
| 59 | # Returns the name of the C compiler for build |
92 | # @FUNCTION: tc-getBUILD_CC |
|
|
93 | # @USAGE: [toolchain prefix] |
|
|
94 | # @RETURN: name of the C compiler for building binaries to run on the build machine |
| 60 | tc-getBUILD_CC() { |
95 | tc-getBUILD_CC() { |
| 61 | local v |
96 | local v |
| 62 | for v in CC_FOR_BUILD BUILD_CC HOSTCC ; do |
97 | for v in CC_FOR_BUILD BUILD_CC HOSTCC ; do |
| 63 | if [[ -n ${!v} ]] ; then |
98 | if [[ -n ${!v} ]] ; then |
| 64 | export BUILD_CC=${!v} |
99 | export BUILD_CC=${!v} |
| … | |
… | |
| 76 | |
111 | |
| 77 | export BUILD_CC=${search} |
112 | export BUILD_CC=${search} |
| 78 | echo "${search}" |
113 | echo "${search}" |
| 79 | } |
114 | } |
| 80 | |
115 | |
|
|
116 | # @FUNCTION: tc-export |
|
|
117 | # @USAGE: <list of toolchain variables> |
|
|
118 | # @DESCRIPTION: |
| 81 | # Quick way to export a bunch of vars at once |
119 | # Quick way to export a bunch of compiler vars at once. |
| 82 | tc-export() { |
120 | tc-export() { |
| 83 | local var |
121 | local var |
| 84 | for var in "$@" ; do |
122 | for var in "$@" ; do |
|
|
123 | [[ $(type -t tc-get${var}) != "function" ]] && die "tc-export: invalid export variable '${var}'" |
| 85 | eval tc-get${var} > /dev/null |
124 | eval tc-get${var} > /dev/null |
| 86 | done |
125 | done |
| 87 | } |
126 | } |
| 88 | |
127 | |
| 89 | # A simple way to see if we're using a cross-compiler ... |
128 | # @FUNCTION: tc-is-cross-compiler |
|
|
129 | # @RETURN: Shell true if we are using a cross-compiler, shell false otherwise |
| 90 | tc-is-cross-compiler() { |
130 | tc-is-cross-compiler() { |
| 91 | return $([[ ${CBUILD:-${CHOST}} != ${CHOST} ]]) |
131 | return $([[ ${CBUILD:-${CHOST}} != ${CHOST} ]]) |
|
|
132 | } |
|
|
133 | |
|
|
134 | # @FUNCTION: tc-is-softfloat |
|
|
135 | # @DESCRIPTION: |
|
|
136 | # See if this toolchain is a softfloat based one. |
|
|
137 | # @CODE |
|
|
138 | # The possible return values: |
|
|
139 | # - only: the target is always softfloat (never had fpu) |
|
|
140 | # - yes: the target should support softfloat |
|
|
141 | # - no: the target should support hardfloat |
|
|
142 | # @CODE |
|
|
143 | # This allows us to react differently where packages accept |
|
|
144 | # softfloat flags in the case where support is optional, but |
|
|
145 | # rejects softfloat flags where the target always lacks an fpu. |
|
|
146 | tc-is-softfloat() { |
|
|
147 | case ${CTARGET} in |
|
|
148 | bfin*|h8300*) |
|
|
149 | echo "only" ;; |
|
|
150 | *) |
|
|
151 | [[ ${CTARGET//_/-} == *-softfloat-* ]] \ |
|
|
152 | && echo "yes" \ |
|
|
153 | || echo "no" |
|
|
154 | ;; |
|
|
155 | esac |
|
|
156 | } |
|
|
157 | |
|
|
158 | # @FUNCTION: tc-is-static-only |
|
|
159 | # @DESCRIPTION: |
|
|
160 | # Return shell true if the target does not support shared libs, shell false |
|
|
161 | # otherwise. |
|
|
162 | tc-is-static-only() { |
|
|
163 | local host=${CTARGET:-${CHOST}} |
|
|
164 | |
|
|
165 | # *MiNT doesn't have shared libraries, only platform so far |
|
|
166 | return $([[ ${host} == *-mint* ]]) |
| 92 | } |
167 | } |
| 93 | |
168 | |
| 94 | |
169 | |
| 95 | # Parse information from CBUILD/CHOST/CTARGET rather than |
170 | # Parse information from CBUILD/CHOST/CTARGET rather than |
| 96 | # use external variables from the profile. |
171 | # use external variables from the profile. |
| … | |
… | |
| 102 | [[ -z ${host} ]] && host=${CTARGET:-${CHOST}} |
177 | [[ -z ${host} ]] && host=${CTARGET:-${CHOST}} |
| 103 | |
178 | |
| 104 | case ${host} in |
179 | case ${host} in |
| 105 | alpha*) echo alpha;; |
180 | alpha*) echo alpha;; |
| 106 | arm*) echo arm;; |
181 | arm*) echo arm;; |
|
|
182 | avr*) ninj avr32 avr;; |
| 107 | bfin*) ninj blackfin bfin;; |
183 | bfin*) ninj blackfin bfin;; |
| 108 | cris*) echo cris;; |
184 | cris*) echo cris;; |
| 109 | hppa*) ninj parisc hppa;; |
185 | hppa*) ninj parisc hppa;; |
| 110 | i?86*) ninj i386 x86;; |
186 | i?86*) |
|
|
187 | # Starting with linux-2.6.24, the 'x86_64' and 'i386' |
|
|
188 | # trees have been unified into 'x86'. |
|
|
189 | # FreeBSD still uses i386 |
|
|
190 | if [[ ${type} == "kern" ]] && [[ $(KV_to_int ${KV}) -lt $(KV_to_int 2.6.24) || ${host} == *freebsd* ]] ; then |
|
|
191 | echo i386 |
|
|
192 | else |
|
|
193 | echo x86 |
|
|
194 | fi |
|
|
195 | ;; |
| 111 | ia64*) echo ia64;; |
196 | ia64*) echo ia64;; |
| 112 | m68*) echo m68k;; |
197 | m68*) echo m68k;; |
| 113 | mips*) echo mips;; |
198 | mips*) echo mips;; |
| 114 | nios2*) echo nios2;; |
199 | nios2*) echo nios2;; |
| 115 | nios*) echo nios;; |
200 | nios*) echo nios;; |
| … | |
… | |
| 140 | sparc*) [[ ${PROFILE_ARCH} == "sparc64" ]] \ |
225 | sparc*) [[ ${PROFILE_ARCH} == "sparc64" ]] \ |
| 141 | && ninj sparc64 sparc \ |
226 | && ninj sparc64 sparc \ |
| 142 | || echo sparc |
227 | || echo sparc |
| 143 | ;; |
228 | ;; |
| 144 | vax*) echo vax;; |
229 | vax*) echo vax;; |
| 145 | x86_64*) ninj x86_64 amd64;; |
230 | x86_64*) |
| 146 | *) echo ${ARCH};; |
231 | # Starting with linux-2.6.24, the 'x86_64' and 'i386' |
|
|
232 | # trees have been unified into 'x86'. |
|
|
233 | if [[ ${type} == "kern" ]] && [[ $(KV_to_int ${KV}) -ge $(KV_to_int 2.6.24) ]] ; then |
|
|
234 | echo x86 |
|
|
235 | else |
|
|
236 | ninj x86_64 amd64 |
|
|
237 | fi |
|
|
238 | ;; |
|
|
239 | |
|
|
240 | # since our usage of tc-arch is largely concerned with |
|
|
241 | # normalizing inputs for testing ${CTARGET}, let's filter |
|
|
242 | # other cross targets (mingw and such) into the unknown. |
|
|
243 | *) echo unknown;; |
| 147 | esac |
244 | esac |
| 148 | } |
245 | } |
|
|
246 | # @FUNCTION: tc-arch-kernel |
|
|
247 | # @USAGE: [toolchain prefix] |
|
|
248 | # @RETURN: name of the kernel arch according to the compiler target |
| 149 | tc-arch-kernel() { |
249 | tc-arch-kernel() { |
| 150 | tc-ninja_magic_to_arch kern $@ |
250 | tc-ninja_magic_to_arch kern "$@" |
| 151 | } |
251 | } |
|
|
252 | # @FUNCTION: tc-arch |
|
|
253 | # @USAGE: [toolchain prefix] |
|
|
254 | # @RETURN: name of the portage arch according to the compiler target |
| 152 | tc-arch() { |
255 | tc-arch() { |
| 153 | tc-ninja_magic_to_arch portage $@ |
256 | tc-ninja_magic_to_arch portage "$@" |
| 154 | } |
257 | } |
| 155 | |
258 | |
| 156 | # Returns the version as by `$CC -dumpversion` |
259 | tc-endian() { |
|
|
260 | local host=$1 |
|
|
261 | [[ -z ${host} ]] && host=${CTARGET:-${CHOST}} |
|
|
262 | host=${host%%-*} |
|
|
263 | |
|
|
264 | case ${host} in |
|
|
265 | alpha*) echo big;; |
|
|
266 | arm*b*) echo big;; |
|
|
267 | arm*) echo little;; |
|
|
268 | cris*) echo little;; |
|
|
269 | hppa*) echo big;; |
|
|
270 | i?86*) echo little;; |
|
|
271 | ia64*) echo little;; |
|
|
272 | m68*) echo big;; |
|
|
273 | mips*l*) echo little;; |
|
|
274 | mips*) echo big;; |
|
|
275 | powerpc*) echo big;; |
|
|
276 | s390*) echo big;; |
|
|
277 | sh*b*) echo big;; |
|
|
278 | sh*) echo little;; |
|
|
279 | sparc*) echo big;; |
|
|
280 | x86_64*) echo little;; |
|
|
281 | *) echo wtf;; |
|
|
282 | esac |
|
|
283 | } |
|
|
284 | |
|
|
285 | # @FUNCTION: gcc-fullversion |
|
|
286 | # @RETURN: compiler version (major.minor.micro: [3.4.6]) |
| 157 | gcc-fullversion() { |
287 | gcc-fullversion() { |
| 158 | $(tc-getCC "$@") -dumpversion |
288 | $(tc-getCC "$@") -dumpversion |
| 159 | } |
289 | } |
| 160 | # Returns the version, but only the <major>.<minor> |
290 | # @FUNCTION: gcc-version |
|
|
291 | # @RETURN: compiler version (major.minor: [3.4].6) |
| 161 | gcc-version() { |
292 | gcc-version() { |
| 162 | gcc-fullversion "$@" | cut -f1,2 -d. |
293 | gcc-fullversion "$@" | cut -f1,2 -d. |
| 163 | } |
294 | } |
| 164 | # Returns the Major version |
295 | # @FUNCTION: gcc-major-version |
|
|
296 | # @RETURN: major compiler version (major: [3].4.6) |
| 165 | gcc-major-version() { |
297 | gcc-major-version() { |
| 166 | gcc-version "$@" | cut -f1 -d. |
298 | gcc-version "$@" | cut -f1 -d. |
| 167 | } |
299 | } |
| 168 | # Returns the Minor version |
300 | # @FUNCTION: gcc-minor-version |
|
|
301 | # @RETURN: minor compiler version (minor: 3.[4].6) |
| 169 | gcc-minor-version() { |
302 | gcc-minor-version() { |
| 170 | gcc-version "$@" | cut -f2 -d. |
303 | gcc-version "$@" | cut -f2 -d. |
| 171 | } |
304 | } |
| 172 | # Returns the Micro version |
305 | # @FUNCTION: gcc-micro-version |
|
|
306 | # @RETURN: micro compiler version (micro: 3.4.[6]) |
| 173 | gcc-micro-version() { |
307 | gcc-micro-version() { |
| 174 | gcc-fullversion "$@" | cut -f3 -d. | cut -f1 -d- |
308 | gcc-fullversion "$@" | cut -f3 -d. | cut -f1 -d- |
| 175 | } |
309 | } |
| 176 | |
310 | |
|
|
311 | # Returns the installation directory - internal toolchain |
|
|
312 | # function for use by _gcc-specs-exists (for flag-o-matic). |
|
|
313 | _gcc-install-dir() { |
|
|
314 | echo "$(LC_ALL=C $(tc-getCC) -print-search-dirs 2> /dev/null |\ |
|
|
315 | awk '$1=="install:" {print $2}')" |
|
|
316 | } |
|
|
317 | # Returns true if the indicated specs file exists - internal toolchain |
|
|
318 | # function for use by flag-o-matic. |
|
|
319 | _gcc-specs-exists() { |
|
|
320 | [[ -f $(_gcc-install-dir)/$1 ]] |
|
|
321 | } |
|
|
322 | |
| 177 | # Returns requested gcc specs directive |
323 | # Returns requested gcc specs directive unprocessed - for used by |
|
|
324 | # gcc-specs-directive() |
| 178 | # Note; later specs normally overwrite earlier ones; however if a later |
325 | # Note; later specs normally overwrite earlier ones; however if a later |
| 179 | # spec starts with '+' then it appends. |
326 | # spec starts with '+' then it appends. |
| 180 | # gcc -dumpspecs is parsed first, followed by files listed by "gcc -v" |
327 | # gcc -dumpspecs is parsed first, followed by files listed by "gcc -v" |
| 181 | # as "Reading <file>", in order. |
328 | # as "Reading <file>", in order. Strictly speaking, if there's a |
|
|
329 | # $(gcc_install_dir)/specs, the built-in specs aren't read, however by |
|
|
330 | # the same token anything from 'gcc -dumpspecs' is overridden by |
|
|
331 | # the contents of $(gcc_install_dir)/specs so the result is the |
|
|
332 | # same either way. |
| 182 | gcc-specs-directive() { |
333 | _gcc-specs-directive_raw() { |
| 183 | local cc=$(tc-getCC) |
334 | local cc=$(tc-getCC) |
| 184 | local specfiles=$(LC_ALL=C ${cc} -v 2>&1 | awk '$1=="Reading" {print $NF}') |
335 | local specfiles=$(LC_ALL=C ${cc} -v 2>&1 | awk '$1=="Reading" {print $NF}') |
| 185 | ${cc} -dumpspecs 2> /dev/null | cat - ${specfiles} | awk -v directive=$1 \ |
336 | ${cc} -dumpspecs 2> /dev/null | cat - ${specfiles} | awk -v directive=$1 \ |
| 186 | 'BEGIN { pspec=""; spec=""; outside=1 } |
337 | 'BEGIN { pspec=""; spec=""; outside=1 } |
| 187 | $1=="*"directive":" { pspec=spec; spec=""; outside=0; next } |
338 | $1=="*"directive":" { pspec=spec; spec=""; outside=0; next } |
| … | |
… | |
| 190 | { spec=spec $0 } |
341 | { spec=spec $0 } |
| 191 | END { print spec }' |
342 | END { print spec }' |
| 192 | return 0 |
343 | return 0 |
| 193 | } |
344 | } |
| 194 | |
345 | |
|
|
346 | # Return the requested gcc specs directive, with all included |
|
|
347 | # specs expanded. |
|
|
348 | # Note, it does not check for inclusion loops, which cause it |
|
|
349 | # to never finish - but such loops are invalid for gcc and we're |
|
|
350 | # assuming gcc is operational. |
|
|
351 | gcc-specs-directive() { |
|
|
352 | local directive subdname subdirective |
|
|
353 | directive="$(_gcc-specs-directive_raw $1)" |
|
|
354 | while [[ ${directive} == *%\(*\)* ]]; do |
|
|
355 | subdname=${directive/*%\(} |
|
|
356 | subdname=${subdname/\)*} |
|
|
357 | subdirective="$(_gcc-specs-directive_raw ${subdname})" |
|
|
358 | directive="${directive//\%(${subdname})/${subdirective}}" |
|
|
359 | done |
|
|
360 | echo "${directive}" |
|
|
361 | return 0 |
|
|
362 | } |
|
|
363 | |
| 195 | # Returns true if gcc sets relro |
364 | # Returns true if gcc sets relro |
| 196 | gcc-specs-relro() { |
365 | gcc-specs-relro() { |
| 197 | local directive |
366 | local directive |
| 198 | directive=$(gcc-specs-directive link_command) |
367 | directive=$(gcc-specs-directive link_command) |
| 199 | return $([[ ${directive/\{!norelro:} != ${directive} ]]) |
368 | return $([[ "${directive/\{!norelro:}" != "${directive}" ]]) |
| 200 | } |
369 | } |
| 201 | # Returns true if gcc sets now |
370 | # Returns true if gcc sets now |
| 202 | gcc-specs-now() { |
371 | gcc-specs-now() { |
| 203 | local directive |
372 | local directive |
| 204 | directive=$(gcc-specs-directive link_command) |
373 | directive=$(gcc-specs-directive link_command) |
| 205 | return $([[ ${directive/\{!nonow:} != ${directive} ]]) |
374 | return $([[ "${directive/\{!nonow:}" != "${directive}" ]]) |
| 206 | } |
375 | } |
| 207 | # Returns true if gcc builds PIEs |
376 | # Returns true if gcc builds PIEs |
| 208 | gcc-specs-pie() { |
377 | gcc-specs-pie() { |
| 209 | local directive |
378 | local directive |
| 210 | directive=$(gcc-specs-directive cc1) |
379 | directive=$(gcc-specs-directive cc1) |
| 211 | return $([[ ${directive/\{!nopie:} != ${directive} ]]) |
380 | return $([[ "${directive/\{!nopie:}" != "${directive}" ]]) |
| 212 | } |
381 | } |
| 213 | # Returns true if gcc builds with the stack protector |
382 | # Returns true if gcc builds with the stack protector |
| 214 | gcc-specs-ssp() { |
383 | gcc-specs-ssp() { |
| 215 | local directive |
384 | local directive |
| 216 | directive=$(gcc-specs-directive cc1) |
385 | directive=$(gcc-specs-directive cc1) |
| 217 | return $([[ ${directive/\{!fno-stack-protector:} != ${directive} ]]) |
386 | return $([[ "${directive/\{!fno-stack-protector:}" != "${directive}" ]]) |
| 218 | } |
387 | } |
| 219 | # Returns true if gcc upgrades fstack-protector to fstack-protector-all |
388 | # Returns true if gcc upgrades fstack-protector to fstack-protector-all |
| 220 | gcc-specs-ssp-to-all() { |
389 | gcc-specs-ssp-to-all() { |
| 221 | local directive |
390 | local directive |
| 222 | directive=$(gcc-specs-directive cc1) |
391 | directive=$(gcc-specs-directive cc1) |
| 223 | return $([[ ${directive/\{!fno-stack-protector-all:} != ${directive} ]]) |
392 | return $([[ "${directive/\{!fno-stack-protector-all:}" != "${directive}" ]]) |
| 224 | } |
393 | } |
|
|
394 | # Returns true if gcc builds with fno-strict-overflow |
|
|
395 | gcc-specs-nostrict() { |
|
|
396 | local directive |
|
|
397 | directive=$(gcc-specs-directive cc1) |
|
|
398 | return $([[ "${directive/\{!fstrict-overflow:}" != "${directive}" ]]) |
|
|
399 | } |
| 225 | |
400 | |
| 226 | |
401 | |
|
|
402 | # @FUNCTION: gen_usr_ldscript |
|
|
403 | # @USAGE: [-a] <list of libs to create linker scripts for> |
|
|
404 | # @DESCRIPTION: |
| 227 | # This function generate linker scripts in /usr/lib for dynamic |
405 | # This function generate linker scripts in /usr/lib for dynamic |
| 228 | # libs in /lib. This is to fix linking problems when you have |
406 | # libs in /lib. This is to fix linking problems when you have |
| 229 | # the .so in /lib, and the .a in /usr/lib. What happens is that |
407 | # the .so in /lib, and the .a in /usr/lib. What happens is that |
| 230 | # in some cases when linking dynamic, the .a in /usr/lib is used |
408 | # in some cases when linking dynamic, the .a in /usr/lib is used |
| 231 | # instead of the .so in /lib due to gcc/libtool tweaking ld's |
409 | # instead of the .so in /lib due to gcc/libtool tweaking ld's |
| 232 | # library search path. This cause many builds to fail. |
410 | # library search path. This causes many builds to fail. |
| 233 | # See bug #4411 for more info. |
411 | # See bug #4411 for more info. |
| 234 | # |
412 | # |
| 235 | # To use, simply call: |
|
|
| 236 | # |
|
|
| 237 | # gen_usr_ldscript libfoo.so |
|
|
| 238 | # |
|
|
| 239 | # Note that you should in general use the unversioned name of |
413 | # Note that you should in general use the unversioned name of |
| 240 | # the library, as ldconfig should usually update it correctly |
414 | # the library (libfoo.so), as ldconfig should usually update it |
| 241 | # to point to the latest version of the library present. |
415 | # correctly to point to the latest version of the library present. |
| 242 | _tc_gen_usr_ldscript() { |
416 | gen_usr_ldscript() { |
| 243 | local lib libdir=$(get_libdir) output_format="" |
417 | local lib libdir=$(get_libdir) output_format="" auto=false suffix=$(get_libname) |
|
|
418 | [[ -z ${ED+set} ]] && local ED=${D%/}${EPREFIX}/ |
|
|
419 | |
|
|
420 | tc-is-static-only && return |
|
|
421 | |
| 244 | # Just make sure it exists |
422 | # Just make sure it exists |
| 245 | dodir /usr/${libdir} |
423 | dodir /usr/${libdir} |
|
|
424 | |
|
|
425 | if [[ $1 == "-a" ]] ; then |
|
|
426 | auto=true |
|
|
427 | shift |
|
|
428 | dodir /${libdir} |
|
|
429 | fi |
| 246 | |
430 | |
| 247 | # OUTPUT_FORMAT gives hints to the linker as to what binary format |
431 | # OUTPUT_FORMAT gives hints to the linker as to what binary format |
| 248 | # is referenced ... makes multilib saner |
432 | # is referenced ... makes multilib saner |
| 249 | output_format=$($(tc-getCC) ${CFLAGS} ${LDFLAGS} -Wl,--verbose 2>&1 | sed -n 's/^OUTPUT_FORMAT("\([^"]*\)",.*/\1/p') |
433 | output_format=$($(tc-getCC) ${CFLAGS} ${LDFLAGS} -Wl,--verbose 2>&1 | sed -n 's/^OUTPUT_FORMAT("\([^"]*\)",.*/\1/p') |
| 250 | [[ -n ${output_format} ]] && output_format="OUTPUT_FORMAT ( ${output_format} )" |
434 | [[ -n ${output_format} ]] && output_format="OUTPUT_FORMAT ( ${output_format} )" |
| 251 | |
435 | |
| 252 | for lib in "$@" ; do |
436 | for lib in "$@" ; do |
| 253 | if [[ ${USERLAND} == "Darwin" ]] ; then |
437 | local tlib |
| 254 | ewarn "Not creating fake dynamic library for $lib on Darwin;" |
438 | if ${auto} ; then |
| 255 | ewarn "making a symlink instead." |
439 | lib="lib${lib}${suffix}" |
| 256 | dosym "/${libdir}/${lib}" "/usr/${libdir}/${lib}" |
|
|
| 257 | else |
440 | else |
|
|
441 | # Ensure /lib/${lib} exists to avoid dangling scripts/symlinks. |
|
|
442 | # This especially is for AIX where $(get_libname) can return ".a", |
|
|
443 | # so /lib/${lib} might be moved to /usr/lib/${lib} (by accident). |
|
|
444 | [[ -r ${ED}/${libdir}/${lib} ]] || continue |
|
|
445 | #TODO: better die here? |
|
|
446 | fi |
|
|
447 | |
|
|
448 | case ${CTARGET:-${CHOST}} in |
|
|
449 | *-darwin*) |
|
|
450 | if ${auto} ; then |
|
|
451 | tlib=$(scanmacho -qF'%S#F' "${ED}"/usr/${libdir}/${lib}) |
|
|
452 | else |
|
|
453 | tlib=$(scanmacho -qF'%S#F' "${ED}"/${libdir}/${lib}) |
|
|
454 | fi |
|
|
455 | [[ -z ${tlib} ]] && die "unable to read install_name from ${lib}" |
|
|
456 | tlib=${tlib##*/} |
|
|
457 | |
|
|
458 | if ${auto} ; then |
|
|
459 | mv "${ED}"/usr/${libdir}/${lib%${suffix}}.*${suffix#.} "${ED}"/${libdir}/ || die |
|
|
460 | # some install_names are funky: they encode a version |
|
|
461 | if [[ ${tlib} != ${lib%${suffix}}.*${suffix#.} ]] ; then |
|
|
462 | mv "${ED}"/usr/${libdir}/${tlib%${suffix}}.*${suffix#.} "${ED}"/${libdir}/ || die |
|
|
463 | fi |
|
|
464 | rm -f "${ED}"/${libdir}/${lib} |
|
|
465 | fi |
|
|
466 | |
|
|
467 | # Mach-O files have an id, which is like a soname, it tells how |
|
|
468 | # another object linking against this lib should reference it. |
|
|
469 | # Since we moved the lib from usr/lib into lib this reference is |
|
|
470 | # wrong. Hence, we update it here. We don't configure with |
|
|
471 | # libdir=/lib because that messes up libtool files. |
|
|
472 | # Make sure we don't lose the specific version, so just modify the |
|
|
473 | # existing install_name |
|
|
474 | if [[ ! -w "${ED}/${libdir}/${tlib}" ]] ; then |
|
|
475 | chmod u+w "${ED}${libdir}/${tlib}" # needed to write to it |
|
|
476 | local nowrite=yes |
|
|
477 | fi |
|
|
478 | install_name_tool \ |
|
|
479 | -id "${EPREFIX}"/${libdir}/${tlib} \ |
|
|
480 | "${ED}"/${libdir}/${tlib} || die "install_name_tool failed" |
|
|
481 | [[ -n ${nowrite} ]] && chmod u-w "${ED}${libdir}/${tlib}" |
|
|
482 | # Now as we don't use GNU binutils and our linker doesn't |
|
|
483 | # understand linker scripts, just create a symlink. |
|
|
484 | pushd "${ED}/usr/${libdir}" > /dev/null |
|
|
485 | ln -snf "../../${libdir}/${tlib}" "${lib}" |
|
|
486 | popd > /dev/null |
|
|
487 | ;; |
|
|
488 | *-aix*|*-irix*|*64*-hpux*|*-interix*|*-winnt*) |
|
|
489 | if ${auto} ; then |
|
|
490 | mv "${ED}"/usr/${libdir}/${lib}* "${ED}"/${libdir}/ || die |
|
|
491 | # no way to retrieve soname on these platforms (?) |
|
|
492 | tlib=$(readlink "${ED}"/${libdir}/${lib}) |
|
|
493 | tlib=${tlib##*/} |
|
|
494 | if [[ -z ${tlib} ]] ; then |
|
|
495 | # ok, apparently was not a symlink, don't remove it and |
|
|
496 | # just link to it |
|
|
497 | tlib=${lib} |
|
|
498 | else |
|
|
499 | rm -f "${ED}"/${libdir}/${lib} |
|
|
500 | fi |
|
|
501 | else |
|
|
502 | tlib=${lib} |
|
|
503 | fi |
|
|
504 | |
|
|
505 | # we don't have GNU binutils on these platforms, so we symlink |
|
|
506 | # instead, which seems to work fine. Keep it relative, otherwise |
|
|
507 | # we break some QA checks in Portage |
|
|
508 | # on interix, the linker scripts would work fine in _most_ |
|
|
509 | # situations. if a library links to such a linker script the |
|
|
510 | # absolute path to the correct library is inserted into the binary, |
|
|
511 | # which is wrong, since anybody linking _without_ libtool will miss |
|
|
512 | # some dependencies, since the stupid linker cannot find libraries |
|
|
513 | # hardcoded with absolute paths (as opposed to the loader, which |
|
|
514 | # seems to be able to do this). |
|
|
515 | # this has been seen while building shared-mime-info which needs |
|
|
516 | # libxml2, but links without libtool (and does not add libz to the |
|
|
517 | # command line by itself). |
|
|
518 | pushd "${ED}/usr/${libdir}" > /dev/null |
|
|
519 | ln -snf "../../${libdir}/${tlib}" "${lib}" |
|
|
520 | popd > /dev/null |
|
|
521 | ;; |
|
|
522 | hppa*-hpux*) # PA-RISC 32bit (SOM) only, others (ELF) match *64*-hpux* above. |
|
|
523 | if ${auto} ; then |
|
|
524 | tlib=$(chatr "${ED}"/usr/${libdir}/${lib} | sed -n '/internal name:/{n;s/^ *//;p;q}') |
|
|
525 | [[ -z ${tlib} ]] && tlib=${lib} |
|
|
526 | tlib=${tlib##*/} # 'internal name' can have a path component |
|
|
527 | mv "${ED}"/usr/${libdir}/${lib}* "${ED}"/${libdir}/ || die |
|
|
528 | # some SONAMEs are funky: they encode a version before the .so |
|
|
529 | if [[ ${tlib} != ${lib}* ]] ; then |
|
|
530 | mv "${ED}"/usr/${libdir}/${tlib}* "${ED}"/${libdir}/ || die |
|
|
531 | fi |
|
|
532 | [[ ${tlib} != ${lib} ]] && |
|
|
533 | rm -f "${ED}"/${libdir}/${lib} |
|
|
534 | else |
|
|
535 | tlib=$(chatr "${ED}"/${libdir}/${lib} | sed -n '/internal name:/{n;s/^ *//;p;q}') |
|
|
536 | [[ -z ${tlib} ]] && tlib=${lib} |
|
|
537 | tlib=${tlib##*/} # 'internal name' can have a path component |
|
|
538 | fi |
|
|
539 | pushd "${ED}"/usr/${libdir} >/dev/null |
|
|
540 | ln -snf "../../${libdir}/${tlib}" "${lib}" |
|
|
541 | # need the internal name in usr/lib too, to be available at runtime |
|
|
542 | # when linked with /path/to/lib.sl (hardcode_direct_absolute=yes) |
|
|
543 | [[ ${tlib} != ${lib} ]] && |
|
|
544 | ln -snf "../../${libdir}/${tlib}" "${tlib}" |
|
|
545 | popd >/dev/null |
|
|
546 | ;; |
|
|
547 | *) |
|
|
548 | if ${auto} ; then |
|
|
549 | tlib=$(scanelf -qF'%S#F' "${ED}"/usr/${libdir}/${lib}) |
|
|
550 | [[ -z ${tlib} ]] && die "unable to read SONAME from ${lib}" |
|
|
551 | mv "${ED}"/usr/${libdir}/${lib}* "${ED}"/${libdir}/ || die |
|
|
552 | # some SONAMEs are funky: they encode a version before the .so |
|
|
553 | if [[ ${tlib} != ${lib}* ]] ; then |
|
|
554 | mv "${ED}"/usr/${libdir}/${tlib}* "${ED}"/${libdir}/ || die |
|
|
555 | fi |
|
|
556 | rm -f "${ED}"/${libdir}/${lib} |
|
|
557 | else |
|
|
558 | tlib=${lib} |
|
|
559 | fi |
| 258 | cat > "${D}/usr/${libdir}/${lib}" <<-END_LDSCRIPT |
560 | cat > "${ED}/usr/${libdir}/${lib}" <<-END_LDSCRIPT |
| 259 | /* GNU ld script |
561 | /* GNU ld script |
| 260 | Since Gentoo has critical dynamic libraries |
562 | Since Gentoo has critical dynamic libraries in /lib, and the static versions |
| 261 | in /lib, and the static versions in /usr/lib, |
563 | in /usr/lib, we need to have a "fake" dynamic lib in /usr/lib, otherwise we |
| 262 | we need to have a "fake" dynamic lib in /usr/lib, |
564 | run into linking problems. This "fake" dynamic lib is a linker script that |
| 263 | otherwise we run into linking problems. |
565 | redirects the linker to the real lib. And yes, this works in the cross- |
|
|
566 | compiling scenario as the sysroot-ed linker will prepend the real path. |
| 264 | |
567 | |
| 265 | See bug http://bugs.gentoo.org/4411 for more info. |
568 | See bug http://bugs.gentoo.org/4411 for more info. |
| 266 | */ |
569 | */ |
| 267 | ${output_format} |
570 | ${output_format} |
| 268 | GROUP ( /${libdir}/${lib} ) |
571 | GROUP ( ${EPREFIX}/${libdir}/${tlib} ) |
| 269 | END_LDSCRIPT |
572 | END_LDSCRIPT |
| 270 | fi |
573 | ;; |
|
|
574 | esac |
| 271 | fperms a+x "/usr/${libdir}/${lib}" || die "could not change perms on ${lib}" |
575 | fperms a+x "/usr/${libdir}/${lib}" || die "could not change perms on ${lib}" |
| 272 | done |
576 | done |
| 273 | } |
577 | } |
| 274 | gen_usr_ldscript() { _tc_gen_usr_ldscript "$@" ; } |
|
|