| 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.55 2006/01/24 22:35:10 dostrow Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/toolchain-funcs.eclass,v 1.90 2009/04/05 07:50:08 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] |
|
|
53 | # @RETURN: name of the C preprocessor |
|
|
54 | tc-getCPP() { tc-getPROG CPP cpp "$@"; } |
|
|
55 | # @FUNCTION: tc-getCXX |
|
|
56 | # @USAGE: [toolchain prefix] |
| 38 | # Returns the name of the C++ compiler |
57 | # @RETURN: name of the C++ compiler |
| 39 | tc-getCXX() { tc-getPROG CXX g++ "$@"; } |
58 | tc-getCXX() { tc-getPROG CXX g++ "$@"; } |
| 40 | # Returns the name of the linker |
59 | # @FUNCTION: tc-getLD |
|
|
60 | # @USAGE: [toolchain prefix] |
|
|
61 | # @RETURN: name of the linker |
| 41 | tc-getLD() { tc-getPROG LD ld "$@"; } |
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] |
| 42 | # Returns the name of the symbol/object thingy |
69 | # @RETURN: name of the symbol/object thingy |
| 43 | tc-getNM() { tc-getPROG NM nm "$@"; } |
70 | tc-getNM() { tc-getPROG NM nm "$@"; } |
|
|
71 | # @FUNCTION: tc-getRANLIB |
|
|
72 | # @USAGE: [toolchain prefix] |
| 44 | # Returns the name of the archiver indexer |
73 | # @RETURN: name of the archiver indexer |
| 45 | tc-getRANLIB() { tc-getPROG RANLIB ranlib "$@"; } |
74 | tc-getRANLIB() { tc-getPROG RANLIB ranlib "$@"; } |
| 46 | # Returns the name of the fortran compiler |
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 |
| 47 | tc-getF77() { tc-getPROG F77 f77 "$@"; } |
82 | tc-getF77() { tc-getPROG F77 f77 "$@"; } |
|
|
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] |
| 48 | # Returns the name of the java compiler |
89 | # @RETURN: name of the java compiler |
| 49 | tc-getGCJ() { tc-getPROG GCJ gcj "$@"; } |
90 | tc-getGCJ() { tc-getPROG GCJ gcj "$@"; } |
| 50 | |
91 | |
| 51 | # 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 |
| 52 | tc-getBUILD_CC() { |
95 | tc-getBUILD_CC() { |
| 53 | local v |
96 | local v |
| 54 | for v in CC_FOR_BUILD BUILD_CC HOSTCC ; do |
97 | for v in CC_FOR_BUILD BUILD_CC HOSTCC ; do |
| 55 | if [[ -n ${!v} ]] ; then |
98 | if [[ -n ${!v} ]] ; then |
| 56 | export BUILD_CC=${!v} |
99 | export BUILD_CC=${!v} |
| … | |
… | |
| 68 | |
111 | |
| 69 | export BUILD_CC=${search} |
112 | export BUILD_CC=${search} |
| 70 | echo "${search}" |
113 | echo "${search}" |
| 71 | } |
114 | } |
| 72 | |
115 | |
|
|
116 | # @FUNCTION: tc-export |
|
|
117 | # @USAGE: <list of toolchain variables> |
|
|
118 | # @DESCRIPTION: |
| 73 | # Quick way to export a bunch of vars at once |
119 | # Quick way to export a bunch of compiler vars at once. |
| 74 | tc-export() { |
120 | tc-export() { |
| 75 | local var |
121 | local var |
| 76 | for var in "$@" ; do |
122 | for var in "$@" ; do |
|
|
123 | [[ $(type -t tc-get${var}) != "function" ]] && die "tc-export: invalid export variable '${var}'" |
| 77 | eval tc-get${var} > /dev/null |
124 | eval tc-get${var} > /dev/null |
| 78 | done |
125 | done |
| 79 | } |
126 | } |
| 80 | |
127 | |
| 81 | # 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 |
| 82 | tc-is-cross-compiler() { |
130 | tc-is-cross-compiler() { |
| 83 | return $([[ ${CBUILD:-${CHOST}} != ${CHOST} ]]) |
131 | return $([[ ${CBUILD:-${CHOST}} != ${CHOST} ]]) |
| 84 | } |
132 | } |
| 85 | |
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 | } |
| 86 | |
157 | |
| 87 | # Parse information from CBUILD/CHOST/CTARGET rather than |
158 | # Parse information from CBUILD/CHOST/CTARGET rather than |
| 88 | # use external variables from the profile. |
159 | # use external variables from the profile. |
| 89 | tc-ninja_magic_to_arch() { |
160 | tc-ninja_magic_to_arch() { |
| 90 | ninj() { [[ ${type} == "kern" ]] && echo $1 || echo $2 ; } |
161 | ninj() { [[ ${type} == "kern" ]] && echo $1 || echo $2 ; } |
| … | |
… | |
| 94 | [[ -z ${host} ]] && host=${CTARGET:-${CHOST}} |
165 | [[ -z ${host} ]] && host=${CTARGET:-${CHOST}} |
| 95 | |
166 | |
| 96 | case ${host} in |
167 | case ${host} in |
| 97 | alpha*) echo alpha;; |
168 | alpha*) echo alpha;; |
| 98 | arm*) echo arm;; |
169 | arm*) echo arm;; |
|
|
170 | avr*) ninj avr32 avr;; |
| 99 | bfin*) ninj blackfin bfin;; |
171 | bfin*) ninj blackfin bfin;; |
| 100 | cris*) echo cris;; |
172 | cris*) echo cris;; |
| 101 | hppa*) ninj parisc hppa;; |
173 | hppa*) ninj parisc hppa;; |
| 102 | i?86*) ninj i386 x86;; |
174 | i?86*) |
|
|
175 | # Starting with linux-2.6.24, the 'x86_64' and 'i386' |
|
|
176 | # trees have been unified into 'x86'. |
|
|
177 | # FreeBSD still uses i386 |
|
|
178 | if [[ ${type} == "kern" ]] && [[ $(KV_to_int ${KV}) -lt $(KV_to_int 2.6.24) || ${host} == *freebsd* ]] ; then |
|
|
179 | echo i386 |
|
|
180 | else |
|
|
181 | echo x86 |
|
|
182 | fi |
|
|
183 | ;; |
| 103 | ia64*) echo ia64;; |
184 | ia64*) echo ia64;; |
| 104 | m68*) echo m68k;; |
185 | m68*) echo m68k;; |
| 105 | mips*) echo mips;; |
186 | mips*) echo mips;; |
| 106 | nios2*) echo nios2;; |
187 | nios2*) echo nios2;; |
| 107 | nios*) echo nios;; |
188 | nios*) echo nios;; |
| … | |
… | |
| 114 | elif [[ $(KV_to_int ${KV}) -eq $(KV_to_int 2.6.15) ]] && [[ ${type} == "kern" ]] ; then |
195 | elif [[ $(KV_to_int ${KV}) -eq $(KV_to_int 2.6.15) ]] && [[ ${type} == "kern" ]] ; then |
| 115 | if [[ ${host} == powerpc64* ]] || [[ ${PROFILE_ARCH} == "ppc64" ]] ; then |
196 | if [[ ${host} == powerpc64* ]] || [[ ${PROFILE_ARCH} == "ppc64" ]] ; then |
| 116 | echo powerpc |
197 | echo powerpc |
| 117 | else |
198 | else |
| 118 | echo ppc |
199 | echo ppc |
| 119 | fi |
200 | fi |
| 120 | elif [[ ${host} == powerpc64* ]] ; then |
201 | elif [[ ${host} == powerpc64* ]] ; then |
| 121 | echo ppc64 |
202 | echo ppc64 |
| 122 | elif [[ ${PROFILE_ARCH} == "ppc64" ]] ; then |
203 | elif [[ ${PROFILE_ARCH} == "ppc64" ]] ; then |
| 123 | ninj ppc64 ppc |
204 | ninj ppc64 ppc |
| 124 | else |
205 | else |
| … | |
… | |
| 132 | sparc*) [[ ${PROFILE_ARCH} == "sparc64" ]] \ |
213 | sparc*) [[ ${PROFILE_ARCH} == "sparc64" ]] \ |
| 133 | && ninj sparc64 sparc \ |
214 | && ninj sparc64 sparc \ |
| 134 | || echo sparc |
215 | || echo sparc |
| 135 | ;; |
216 | ;; |
| 136 | vax*) echo vax;; |
217 | vax*) echo vax;; |
| 137 | x86_64*) ninj x86_64 amd64;; |
218 | x86_64*) |
| 138 | *) echo ${ARCH};; |
219 | # Starting with linux-2.6.24, the 'x86_64' and 'i386' |
|
|
220 | # trees have been unified into 'x86'. |
|
|
221 | if [[ ${type} == "kern" ]] && [[ $(KV_to_int ${KV}) -ge $(KV_to_int 2.6.24) ]] ; then |
|
|
222 | echo x86 |
|
|
223 | else |
|
|
224 | ninj x86_64 amd64 |
|
|
225 | fi |
|
|
226 | ;; |
|
|
227 | |
|
|
228 | # since our usage of tc-arch is largely concerned with |
|
|
229 | # normalizing inputs for testing ${CTARGET}, let's filter |
|
|
230 | # other cross targets (mingw and such) into the unknown. |
|
|
231 | *) echo unknown;; |
| 139 | esac |
232 | esac |
| 140 | } |
233 | } |
|
|
234 | # @FUNCTION: tc-arch-kernel |
|
|
235 | # @USAGE: [toolchain prefix] |
|
|
236 | # @RETURN: name of the kernel arch according to the compiler target |
| 141 | tc-arch-kernel() { |
237 | tc-arch-kernel() { |
| 142 | tc-ninja_magic_to_arch kern $@ |
238 | tc-ninja_magic_to_arch kern "$@" |
| 143 | } |
239 | } |
|
|
240 | # @FUNCTION: tc-arch |
|
|
241 | # @USAGE: [toolchain prefix] |
|
|
242 | # @RETURN: name of the portage arch according to the compiler target |
| 144 | tc-arch() { |
243 | tc-arch() { |
| 145 | tc-ninja_magic_to_arch portage $@ |
244 | tc-ninja_magic_to_arch portage "$@" |
| 146 | } |
245 | } |
|
|
246 | |
| 147 | tc-endian() { |
247 | tc-endian() { |
| 148 | local host=$1 |
248 | local host=$1 |
| 149 | [[ -z ${host} ]] && host=${CTARGET:-${CHOST}} |
249 | [[ -z ${host} ]] && host=${CTARGET:-${CHOST}} |
| 150 | host=${host%%-*} |
250 | host=${host%%-*} |
| 151 | |
251 | |
| … | |
… | |
| 168 | x86_64*) echo little;; |
268 | x86_64*) echo little;; |
| 169 | *) echo wtf;; |
269 | *) echo wtf;; |
| 170 | esac |
270 | esac |
| 171 | } |
271 | } |
| 172 | |
272 | |
| 173 | # Returns the version as by `$CC -dumpversion` |
273 | # @FUNCTION: gcc-fullversion |
|
|
274 | # @RETURN: compiler version (major.minor.micro: [3.4.6]) |
| 174 | gcc-fullversion() { |
275 | gcc-fullversion() { |
| 175 | echo "$($(tc-getCC) -dumpversion)" |
276 | $(tc-getCC "$@") -dumpversion |
| 176 | } |
277 | } |
| 177 | # Returns the version, but only the <major>.<minor> |
278 | # @FUNCTION: gcc-version |
|
|
279 | # @RETURN: compiler version (major.minor: [3.4].6) |
| 178 | gcc-version() { |
280 | gcc-version() { |
| 179 | echo "$(gcc-fullversion | cut -f1,2 -d.)" |
281 | gcc-fullversion "$@" | cut -f1,2 -d. |
| 180 | } |
282 | } |
| 181 | # Returns the Major version |
283 | # @FUNCTION: gcc-major-version |
|
|
284 | # @RETURN: major compiler version (major: [3].4.6) |
| 182 | gcc-major-version() { |
285 | gcc-major-version() { |
| 183 | echo "$(gcc-version | cut -f1 -d.)" |
286 | gcc-version "$@" | cut -f1 -d. |
| 184 | } |
287 | } |
| 185 | # Returns the Minor version |
288 | # @FUNCTION: gcc-minor-version |
|
|
289 | # @RETURN: minor compiler version (minor: 3.[4].6) |
| 186 | gcc-minor-version() { |
290 | gcc-minor-version() { |
| 187 | echo "$(gcc-version | cut -f2 -d.)" |
291 | gcc-version "$@" | cut -f2 -d. |
| 188 | } |
292 | } |
| 189 | # Returns the Micro version |
293 | # @FUNCTION: gcc-micro-version |
|
|
294 | # @RETURN: micro compiler version (micro: 3.4.[6]) |
| 190 | gcc-micro-version() { |
295 | gcc-micro-version() { |
| 191 | echo "$(gcc-fullversion | cut -f3 -d. | cut -f1 -d-)" |
296 | gcc-fullversion "$@" | cut -f3 -d. | cut -f1 -d- |
| 192 | } |
297 | } |
| 193 | |
298 | |
|
|
299 | # Returns the installation directory - internal toolchain |
|
|
300 | # function for use by _gcc-specs-exists (for flag-o-matic). |
|
|
301 | _gcc-install-dir() { |
|
|
302 | echo "$(LC_ALL=C $(tc-getCC) -print-search-dirs 2> /dev/null |\ |
|
|
303 | awk '$1=="install:" {print $2}')" |
|
|
304 | } |
|
|
305 | # Returns true if the indicated specs file exists - internal toolchain |
|
|
306 | # function for use by flag-o-matic. |
|
|
307 | _gcc-specs-exists() { |
|
|
308 | [[ -f $(_gcc-install-dir)/$1 ]] |
|
|
309 | } |
|
|
310 | |
| 194 | # Returns requested gcc specs directive |
311 | # Returns requested gcc specs directive unprocessed - for used by |
|
|
312 | # gcc-specs-directive() |
| 195 | # Note; later specs normally overwrite earlier ones; however if a later |
313 | # Note; later specs normally overwrite earlier ones; however if a later |
| 196 | # spec starts with '+' then it appends. |
314 | # spec starts with '+' then it appends. |
| 197 | # gcc -dumpspecs is parsed first, followed by files listed by "gcc -v" |
315 | # gcc -dumpspecs is parsed first, followed by files listed by "gcc -v" |
| 198 | # as "Reading <file>", in order. |
316 | # as "Reading <file>", in order. Strictly speaking, if there's a |
|
|
317 | # $(gcc_install_dir)/specs, the built-in specs aren't read, however by |
|
|
318 | # the same token anything from 'gcc -dumpspecs' is overridden by |
|
|
319 | # the contents of $(gcc_install_dir)/specs so the result is the |
|
|
320 | # same either way. |
| 199 | gcc-specs-directive() { |
321 | _gcc-specs-directive_raw() { |
|
|
322 | local cc=$(tc-getCC) |
| 200 | local specfiles=$($(tc-getCC) -v 2>&1 | awk '$1=="Reading" {print $NF}') |
323 | local specfiles=$(LC_ALL=C ${cc} -v 2>&1 | awk '$1=="Reading" {print $NF}') |
| 201 | $(tc-getCC) -dumpspecs 2> /dev/null | cat - ${specfiles} | awk -v directive=$1 \ |
324 | ${cc} -dumpspecs 2> /dev/null | cat - ${specfiles} | awk -v directive=$1 \ |
| 202 | 'BEGIN { pspec=""; spec=""; outside=1 } |
325 | 'BEGIN { pspec=""; spec=""; outside=1 } |
| 203 | $1=="*"directive":" { pspec=spec; spec=""; outside=0; next } |
326 | $1=="*"directive":" { pspec=spec; spec=""; outside=0; next } |
| 204 | outside || NF==0 || ( substr($1,1,1)=="*" && substr($1,length($1),1)==":" ) { outside=1; next } |
327 | outside || NF==0 || ( substr($1,1,1)=="*" && substr($1,length($1),1)==":" ) { outside=1; next } |
| 205 | spec=="" && substr($0,1,1)=="+" { spec=pspec " " substr($0,2); next } |
328 | spec=="" && substr($0,1,1)=="+" { spec=pspec " " substr($0,2); next } |
| 206 | { spec=spec $0 } |
329 | { spec=spec $0 } |
| 207 | END { print spec }' |
330 | END { print spec }' |
| 208 | return 0 |
331 | return 0 |
| 209 | } |
332 | } |
| 210 | |
333 | |
|
|
334 | # Return the requested gcc specs directive, with all included |
|
|
335 | # specs expanded. |
|
|
336 | # Note, it does not check for inclusion loops, which cause it |
|
|
337 | # to never finish - but such loops are invalid for gcc and we're |
|
|
338 | # assuming gcc is operational. |
|
|
339 | gcc-specs-directive() { |
|
|
340 | local directive subdname subdirective |
|
|
341 | directive="$(_gcc-specs-directive_raw $1)" |
|
|
342 | while [[ ${directive} == *%\(*\)* ]]; do |
|
|
343 | subdname=${directive/*%\(} |
|
|
344 | subdname=${subdname/\)*} |
|
|
345 | subdirective="$(_gcc-specs-directive_raw ${subdname})" |
|
|
346 | directive="${directive//\%(${subdname})/${subdirective}}" |
|
|
347 | done |
|
|
348 | echo "${directive}" |
|
|
349 | return 0 |
|
|
350 | } |
|
|
351 | |
| 211 | # Returns true if gcc sets relro |
352 | # Returns true if gcc sets relro |
| 212 | gcc-specs-relro() { |
353 | gcc-specs-relro() { |
| 213 | local directive |
354 | local directive |
| 214 | directive=$(gcc-specs-directive link_command) |
355 | directive=$(gcc-specs-directive link_command) |
| 215 | return $([[ ${directive/\{!norelro:} != ${directive} ]]) |
356 | return $([[ "${directive/\{!norelro:}" != "${directive}" ]]) |
| 216 | } |
357 | } |
| 217 | # Returns true if gcc sets now |
358 | # Returns true if gcc sets now |
| 218 | gcc-specs-now() { |
359 | gcc-specs-now() { |
| 219 | local directive |
360 | local directive |
| 220 | directive=$(gcc-specs-directive link_command) |
361 | directive=$(gcc-specs-directive link_command) |
| 221 | return $([[ ${directive/\{!nonow:} != ${directive} ]]) |
362 | return $([[ "${directive/\{!nonow:}" != "${directive}" ]]) |
| 222 | } |
363 | } |
| 223 | # Returns true if gcc builds PIEs |
364 | # Returns true if gcc builds PIEs |
| 224 | gcc-specs-pie() { |
365 | gcc-specs-pie() { |
| 225 | local directive |
366 | local directive |
| 226 | directive=$(gcc-specs-directive cc1) |
367 | directive=$(gcc-specs-directive cc1) |
| 227 | return $([[ ${directive/\{!nopie:} != ${directive} ]]) |
368 | return $([[ "${directive/\{!nopie:}" != "${directive}" ]]) |
| 228 | } |
369 | } |
| 229 | # Returns true if gcc builds with the stack protector |
370 | # Returns true if gcc builds with the stack protector |
| 230 | gcc-specs-ssp() { |
371 | gcc-specs-ssp() { |
| 231 | local directive |
372 | local directive |
| 232 | directive=$(gcc-specs-directive cc1) |
373 | directive=$(gcc-specs-directive cc1) |
| 233 | return $([[ ${directive/\{!fno-stack-protector:} != ${directive} ]]) |
374 | return $([[ "${directive/\{!fno-stack-protector:}" != "${directive}" ]]) |
| 234 | } |
375 | } |
| 235 | # Returns true if gcc upgrades fstack-protector to fstack-protector-all |
376 | # Returns true if gcc upgrades fstack-protector to fstack-protector-all |
| 236 | gcc-specs-ssp-to-all() { |
377 | gcc-specs-ssp-to-all() { |
| 237 | local directive |
378 | local directive |
| 238 | directive=$(gcc-specs-directive cc1) |
379 | directive=$(gcc-specs-directive cc1) |
| 239 | return $([[ ${directive/\{!fno-stack-protector-all:} != ${directive} ]]) |
380 | return $([[ "${directive/\{!fno-stack-protector-all:}" != "${directive}" ]]) |
| 240 | } |
381 | } |
|
|
382 | # Returns true if gcc builds with fno-strict-overflow |
|
|
383 | gcc-specs-nostrict() { |
|
|
384 | local directive |
|
|
385 | directive=$(gcc-specs-directive cc1) |
|
|
386 | return $([[ "${directive/\{!fstrict-overflow:}" != "${directive}" ]]) |
|
|
387 | } |
|
|
388 | |
|
|
389 | |
|
|
390 | # @FUNCTION: gen_usr_ldscript |
|
|
391 | # @USAGE: [-a] <list of libs to create linker scripts for> |
|
|
392 | # @DESCRIPTION: |
|
|
393 | # This function generate linker scripts in /usr/lib for dynamic |
|
|
394 | # libs in /lib. This is to fix linking problems when you have |
|
|
395 | # the .so in /lib, and the .a in /usr/lib. What happens is that |
|
|
396 | # in some cases when linking dynamic, the .a in /usr/lib is used |
|
|
397 | # instead of the .so in /lib due to gcc/libtool tweaking ld's |
|
|
398 | # library search path. This causes many builds to fail. |
|
|
399 | # See bug #4411 for more info. |
|
|
400 | # |
|
|
401 | # Note that you should in general use the unversioned name of |
|
|
402 | # the library (libfoo.so), as ldconfig should usually update it |
|
|
403 | # correctly to point to the latest version of the library present. |
|
|
404 | gen_usr_ldscript() { |
|
|
405 | local lib libdir=$(get_libdir) output_format="" auto=false suffix=$(get_libname) |
|
|
406 | # Just make sure it exists |
|
|
407 | dodir /usr/${libdir} |
|
|
408 | |
|
|
409 | if [[ $1 == "-a" ]] ; then |
|
|
410 | auto=true |
|
|
411 | shift |
|
|
412 | dodir /${libdir} |
|
|
413 | fi |
|
|
414 | |
|
|
415 | # OUTPUT_FORMAT gives hints to the linker as to what binary format |
|
|
416 | # is referenced ... makes multilib saner |
|
|
417 | output_format=$($(tc-getCC) ${CFLAGS} ${LDFLAGS} -Wl,--verbose 2>&1 | sed -n 's/^OUTPUT_FORMAT("\([^"]*\)",.*/\1/p') |
|
|
418 | [[ -n ${output_format} ]] && output_format="OUTPUT_FORMAT ( ${output_format} )" |
|
|
419 | |
|
|
420 | for lib in "$@" ; do |
|
|
421 | if [[ ${USERLAND} == "Darwin" ]] ; then |
|
|
422 | ewarn "Not creating fake dynamic library for $lib on Darwin;" |
|
|
423 | ewarn "making a symlink instead." |
|
|
424 | dosym "/${libdir}/${lib}" "/usr/${libdir}/${lib}" |
|
|
425 | else |
|
|
426 | local tlib |
|
|
427 | if ${auto} ; then |
|
|
428 | lib="lib${lib}${suffix}" |
|
|
429 | tlib=$(scanelf -qF'%S#F' "${D}"/usr/${libdir}/${lib}) |
|
|
430 | mv "${D}"/usr/${libdir}/${lib}* "${D}"/${libdir}/ || die |
|
|
431 | # some SONAMEs are funky: they encode a version before the .so |
|
|
432 | if [[ ${tlib} != ${lib}* ]] ; then |
|
|
433 | mv "${D}"/usr/${libdir}/${tlib}* "${D}"/${libdir}/ || die |
|
|
434 | fi |
|
|
435 | [[ -z ${tlib} ]] && die "unable to read SONAME from ${lib}" |
|
|
436 | rm -f "${D}"/${libdir}/${lib} |
|
|
437 | else |
|
|
438 | tlib=${lib} |
|
|
439 | fi |
|
|
440 | cat > "${D}/usr/${libdir}/${lib}" <<-END_LDSCRIPT |
|
|
441 | /* GNU ld script |
|
|
442 | Since Gentoo has critical dynamic libraries in /lib, and the static versions |
|
|
443 | in /usr/lib, we need to have a "fake" dynamic lib in /usr/lib, otherwise we |
|
|
444 | run into linking problems. This "fake" dynamic lib is a linker script that |
|
|
445 | redirects the linker to the real lib. And yes, this works in the cross- |
|
|
446 | compiling scenario as the sysroot-ed linker will prepend the real path. |
|
|
447 | |
|
|
448 | See bug http://bugs.gentoo.org/4411 for more info. |
|
|
449 | */ |
|
|
450 | ${output_format} |
|
|
451 | GROUP ( /${libdir}/${tlib} ) |
|
|
452 | END_LDSCRIPT |
|
|
453 | fperms a+x "/usr/${libdir}/${lib}" || die "could not change perms on ${lib}" |
|
|
454 | fi |
|
|
455 | done |
|
|
456 | } |