| 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.89 2009/04/04 17:17:56 grobian Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/toolchain-funcs.eclass,v 1.99 2010/04/22 18:28:11 armin76 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 |
| … | |
… | |
| 86 | tc-getFC() { tc-getPROG FC gfortran "$@"; } |
86 | tc-getFC() { tc-getPROG FC gfortran "$@"; } |
| 87 | # @FUNCTION: tc-getGCJ |
87 | # @FUNCTION: tc-getGCJ |
| 88 | # @USAGE: [toolchain prefix] |
88 | # @USAGE: [toolchain prefix] |
| 89 | # @RETURN: name of the java compiler |
89 | # @RETURN: name of the java compiler |
| 90 | 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 "$@"; } |
| 91 | |
103 | |
| 92 | # @FUNCTION: tc-getBUILD_CC |
104 | # @FUNCTION: tc-getBUILD_CC |
| 93 | # @USAGE: [toolchain prefix] |
105 | # @USAGE: [toolchain prefix] |
| 94 | # @RETURN: name of the C compiler for building binaries to run on the build machine |
106 | # @RETURN: name of the C compiler for building binaries to run on the build machine |
| 95 | tc-getBUILD_CC() { |
107 | tc-getBUILD_CC() { |
| … | |
… | |
| 136 | # See if this toolchain is a softfloat based one. |
148 | # See if this toolchain is a softfloat based one. |
| 137 | # @CODE |
149 | # @CODE |
| 138 | # The possible return values: |
150 | # The possible return values: |
| 139 | # - only: the target is always softfloat (never had fpu) |
151 | # - only: the target is always softfloat (never had fpu) |
| 140 | # - yes: the target should support softfloat |
152 | # - yes: the target should support softfloat |
| 141 | # - no: the target should support hardfloat |
153 | # - no: the target doesn't support softfloat |
| 142 | # @CODE |
154 | # @CODE |
| 143 | # This allows us to react differently where packages accept |
155 | # This allows us to react differently where packages accept |
| 144 | # softfloat flags in the case where support is optional, but |
156 | # softfloat flags in the case where support is optional, but |
| 145 | # rejects softfloat flags where the target always lacks an fpu. |
157 | # rejects softfloat flags where the target always lacks an fpu. |
| 146 | tc-is-softfloat() { |
158 | tc-is-softfloat() { |
| … | |
… | |
| 153 | || echo "no" |
165 | || echo "no" |
| 154 | ;; |
166 | ;; |
| 155 | esac |
167 | esac |
| 156 | } |
168 | } |
| 157 | |
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-tls |
|
|
195 | # @USAGE: [-s|-c|-l] [toolchain prefix] |
|
|
196 | # @DESCRIPTION: |
|
|
197 | # See if the toolchain supports thread local storage (TLS). Use -s to test the |
|
|
198 | # compiler, -c to also test the assembler, and -l to also test the C library |
|
|
199 | # (the default). |
|
|
200 | tc-has-tls() { |
|
|
201 | local base="${T}/test-tc-tls" |
|
|
202 | cat <<-EOF > "${base}.c" |
|
|
203 | int foo(int *i) { |
|
|
204 | static __thread int j = 0; |
|
|
205 | return *i ? j : *i; |
|
|
206 | } |
|
|
207 | EOF |
|
|
208 | local flags |
|
|
209 | case $1 in |
|
|
210 | -s) flags="-S";; |
|
|
211 | -c) flags="-c";; |
|
|
212 | -l) ;; |
|
|
213 | -*) die "Usage: tc-has-tls [-c|-l] [toolchain prefix]";; |
|
|
214 | esac |
|
|
215 | : ${flags:=-fPIC -shared -Wl,-z,defs} |
|
|
216 | [[ $1 == -* ]] && shift |
|
|
217 | $(tc-getCC "$@") ${flags} "${base}.c" -o "${base}" >&/dev/null |
|
|
218 | local ret=$? |
|
|
219 | rm -f "${base}"* |
|
|
220 | return ${ret} |
|
|
221 | } |
|
|
222 | |
|
|
223 | |
| 158 | # Parse information from CBUILD/CHOST/CTARGET rather than |
224 | # Parse information from CBUILD/CHOST/CTARGET rather than |
| 159 | # use external variables from the profile. |
225 | # use external variables from the profile. |
| 160 | tc-ninja_magic_to_arch() { |
226 | tc-ninja_magic_to_arch() { |
| 161 | ninj() { [[ ${type} == "kern" ]] && echo $1 || echo $2 ; } |
227 | ninj() { [[ ${type} == "kern" ]] && echo $1 || echo $2 ; } |
| 162 | |
228 | |
| 163 | local type=$1 |
229 | local type=$1 |
| 164 | local host=$2 |
230 | local host=$2 |
| 165 | [[ -z ${host} ]] && host=${CTARGET:-${CHOST}} |
231 | [[ -z ${host} ]] && host=${CTARGET:-${CHOST}} |
| 166 | |
232 | |
| 167 | case ${host} in |
233 | case ${host} in |
| 168 | powerpc-apple-darwin*) |
|
|
| 169 | echo ppc-macos;; |
|
|
| 170 | powerpc64-apple-darwin*) |
|
|
| 171 | echo ppc64-macos;; |
|
|
| 172 | i?86-apple-darwin*) |
|
|
| 173 | echo x86-macos;; |
|
|
| 174 | x86_64-apple-darwin*) |
|
|
| 175 | echo x64-macos;; |
|
|
| 176 | sparc-sun-solaris*) |
|
|
| 177 | echo sparc-solaris;; |
|
|
| 178 | sparcv9-sun-solaris*) |
|
|
| 179 | echo sparc64-solaris;; |
|
|
| 180 | i?86-pc-solaris*) |
|
|
| 181 | echo x86-solaris;; |
|
|
| 182 | x86_64-pc-solaris*) |
|
|
| 183 | echo x64-solaris;; |
|
|
| 184 | powerpc-ibm-aix*) |
|
|
| 185 | echo ppc-aix;; |
|
|
| 186 | mips-sgi-irix*) |
|
|
| 187 | echo mips-irix;; |
|
|
| 188 | ia64-hp-hpux*) |
|
|
| 189 | echo ia64-hpux;; |
|
|
| 190 | i?86-pc-freebsd*) |
|
|
| 191 | echo x86-freebsd;; |
|
|
| 192 | x86_64-pc-freebsd*) |
|
|
| 193 | echo x64-freebsd;; |
|
|
| 194 | i?86-pc-netbsd*) |
|
|
| 195 | echo x86-netbsd;; |
|
|
| 196 | i?86-pc-interix*) |
|
|
| 197 | echo x86-interix;; |
|
|
| 198 | i?86-pc-winnt*) |
|
|
| 199 | echo x86-winnt;; |
|
|
| 200 | i*-pc-freebsd*) |
|
|
| 201 | echo x86-freebsd;; |
|
|
| 202 | x86_64-pc-freebsd*) |
|
|
| 203 | echo x64-freebsd;; |
|
|
| 204 | |
|
|
| 205 | alpha*) echo alpha;; |
234 | alpha*) echo alpha;; |
| 206 | arm*) echo arm;; |
235 | arm*) echo arm;; |
| 207 | avr*) ninj avr32 avr;; |
236 | avr*) ninj avr32 avr;; |
| 208 | bfin*) ninj blackfin bfin;; |
237 | bfin*) ninj blackfin bfin;; |
| 209 | cris*) echo cris;; |
238 | cris*) echo cris;; |
| … | |
… | |
| 438 | # Note that you should in general use the unversioned name of |
467 | # Note that you should in general use the unversioned name of |
| 439 | # the library (libfoo.so), as ldconfig should usually update it |
468 | # the library (libfoo.so), as ldconfig should usually update it |
| 440 | # correctly to point to the latest version of the library present. |
469 | # correctly to point to the latest version of the library present. |
| 441 | gen_usr_ldscript() { |
470 | gen_usr_ldscript() { |
| 442 | local lib libdir=$(get_libdir) output_format="" auto=false suffix=$(get_libname) |
471 | local lib libdir=$(get_libdir) output_format="" auto=false suffix=$(get_libname) |
|
|
472 | [[ -z ${ED+set} ]] && local ED=${D%/}${EPREFIX}/ |
|
|
473 | |
|
|
474 | tc-is-static-only && return |
|
|
475 | |
| 443 | # Just make sure it exists |
476 | # Just make sure it exists |
| 444 | dodir /usr/${libdir} |
477 | dodir /usr/${libdir} |
| 445 | |
478 | |
| 446 | if [[ $1 == "-a" ]] ; then |
479 | if [[ $1 == "-a" ]] ; then |
| 447 | auto=true |
480 | auto=true |
| … | |
… | |
| 453 | # is referenced ... makes multilib saner |
486 | # is referenced ... makes multilib saner |
| 454 | output_format=$($(tc-getCC) ${CFLAGS} ${LDFLAGS} -Wl,--verbose 2>&1 | sed -n 's/^OUTPUT_FORMAT("\([^"]*\)",.*/\1/p') |
487 | output_format=$($(tc-getCC) ${CFLAGS} ${LDFLAGS} -Wl,--verbose 2>&1 | sed -n 's/^OUTPUT_FORMAT("\([^"]*\)",.*/\1/p') |
| 455 | [[ -n ${output_format} ]] && output_format="OUTPUT_FORMAT ( ${output_format} )" |
488 | [[ -n ${output_format} ]] && output_format="OUTPUT_FORMAT ( ${output_format} )" |
| 456 | |
489 | |
| 457 | for lib in "$@" ; do |
490 | for lib in "$@" ; do |
| 458 | |
491 | local tlib |
|
|
492 | if ${auto} ; then |
|
|
493 | lib="lib${lib}${suffix}" |
|
|
494 | else |
| 459 | # Ensure /lib/${lib} exists to avoid dangling scripts/symlinks. |
495 | # Ensure /lib/${lib} exists to avoid dangling scripts/symlinks. |
| 460 | # This especially is for AIX where $(get_libname) can return ".a", |
496 | # This especially is for AIX where $(get_libname) can return ".a", |
| 461 | # so /lib/${lib} might be moved to /usr/lib/${lib} (by accident). |
497 | # so /lib/${lib} might be moved to /usr/lib/${lib} (by accident). |
| 462 | [[ -r "${ED}"/${libdir}/${lib} ]] || continue |
498 | [[ -r ${ED}/${libdir}/${lib} ]] || continue |
|
|
499 | #TODO: better die here? |
|
|
500 | fi |
| 463 | |
501 | |
| 464 | case ${CHOST} in |
502 | case ${CTARGET:-${CHOST}} in |
| 465 | *-darwin*) |
503 | *-darwin*) |
|
|
504 | if ${auto} ; then |
|
|
505 | tlib=$(scanmacho -qF'%S#F' "${ED}"/usr/${libdir}/${lib}) |
|
|
506 | else |
|
|
507 | tlib=$(scanmacho -qF'%S#F' "${ED}"/${libdir}/${lib}) |
|
|
508 | fi |
|
|
509 | [[ -z ${tlib} ]] && die "unable to read install_name from ${lib}" |
|
|
510 | tlib=${tlib##*/} |
|
|
511 | |
|
|
512 | if ${auto} ; then |
|
|
513 | mv "${ED}"/usr/${libdir}/${lib%${suffix}}.*${suffix#.} "${ED}"/${libdir}/ || die |
|
|
514 | # some install_names are funky: they encode a version |
|
|
515 | if [[ ${tlib} != ${lib%${suffix}}.*${suffix#.} ]] ; then |
|
|
516 | mv "${ED}"/usr/${libdir}/${tlib%${suffix}}.*${suffix#.} "${ED}"/${libdir}/ || die |
|
|
517 | fi |
|
|
518 | rm -f "${ED}"/${libdir}/${lib} |
|
|
519 | fi |
|
|
520 | |
| 466 | # Mach-O files have an id, which is like a soname, it tells how |
521 | # Mach-O files have an id, which is like a soname, it tells how |
| 467 | # another object linking against this lib should reference it. |
522 | # another object linking against this lib should reference it. |
| 468 | # Since we moved the lib from usr/lib into lib this reference is |
523 | # Since we moved the lib from usr/lib into lib this reference is |
| 469 | # wrong. Hence, we update it here. We don't configure with |
524 | # wrong. Hence, we update it here. We don't configure with |
| 470 | # libdir=/lib because that messes up libtool files. |
525 | # libdir=/lib because that messes up libtool files. |
| 471 | # Make sure we don't lose the specific version, so just modify the |
526 | # Make sure we don't lose the specific version, so just modify the |
| 472 | # existing install_name |
527 | # existing install_name |
| 473 | install_name=$(otool -DX "${ED}"/${libdir}/${lib}) |
528 | if [[ ! -w "${ED}/${libdir}/${tlib}" ]] ; then |
| 474 | [[ -z ${install_name} ]] && die "No install name found for ${ED}/${libdir}/${lib}" |
529 | chmod u+w "${ED}${libdir}/${tlib}" # needed to write to it |
|
|
530 | local nowrite=yes |
|
|
531 | fi |
| 475 | install_name_tool \ |
532 | install_name_tool \ |
| 476 | -id "${EPREFIX}"/${libdir}/${install_name##*/} \ |
533 | -id "${EPREFIX}"/${libdir}/${tlib} \ |
| 477 | "${ED}"/${libdir}/${lib} |
534 | "${ED}"/${libdir}/${tlib} || die "install_name_tool failed" |
|
|
535 | [[ -n ${nowrite} ]] && chmod u-w "${ED}${libdir}/${tlib}" |
| 478 | # Now as we don't use GNU binutils and our linker doesn't |
536 | # Now as we don't use GNU binutils and our linker doesn't |
| 479 | # understand linker scripts, just create a symlink. |
537 | # understand linker scripts, just create a symlink. |
| 480 | pushd "${ED}/usr/${libdir}" > /dev/null |
538 | pushd "${ED}/usr/${libdir}" > /dev/null |
| 481 | ln -snf "../../${libdir}/${lib}" "${lib}" |
539 | ln -snf "../../${libdir}/${tlib}" "${lib}" |
| 482 | popd > /dev/null |
540 | popd > /dev/null |
| 483 | ;; |
541 | ;; |
| 484 | *-aix*|*-irix*|*-hpux*) |
542 | *-aix*|*-irix*|*64*-hpux*|*-interix*|*-winnt*) |
|
|
543 | if ${auto} ; then |
|
|
544 | mv "${ED}"/usr/${libdir}/${lib}* "${ED}"/${libdir}/ || die |
|
|
545 | # no way to retrieve soname on these platforms (?) |
|
|
546 | tlib=$(readlink "${ED}"/${libdir}/${lib}) |
|
|
547 | tlib=${tlib##*/} |
|
|
548 | if [[ -z ${tlib} ]] ; then |
|
|
549 | # ok, apparently was not a symlink, don't remove it and |
|
|
550 | # just link to it |
|
|
551 | tlib=${lib} |
|
|
552 | else |
|
|
553 | rm -f "${ED}"/${libdir}/${lib} |
|
|
554 | fi |
|
|
555 | else |
|
|
556 | tlib=${lib} |
|
|
557 | fi |
|
|
558 | |
| 485 | # we don't have GNU binutils on these platforms, so we symlink |
559 | # we don't have GNU binutils on these platforms, so we symlink |
| 486 | # instead, which seems to work fine. Keep it relative, otherwise |
560 | # instead, which seems to work fine. Keep it relative, otherwise |
| 487 | # we break some QA checks in Portage |
561 | # we break some QA checks in Portage |
| 488 | pushd "${ED}/usr/${libdir}" > /dev/null |
|
|
| 489 | ln -snf "../../${libdir}/${lib}" "${lib}" |
|
|
| 490 | popd > /dev/null |
|
|
| 491 | ;; |
|
|
| 492 | *-interix*|*-winnt*) |
|
|
| 493 | # on interix, the linker scripts would work fine in _most_ |
562 | # on interix, the linker scripts would work fine in _most_ |
| 494 | # situations. if a library links to such a linker script the |
563 | # situations. if a library links to such a linker script the |
| 495 | # absolute path to the correct library is inserted into the binary, |
564 | # absolute path to the correct library is inserted into the binary, |
| 496 | # which is wrong, since anybody linking _without_ libtool will miss |
565 | # which is wrong, since anybody linking _without_ libtool will miss |
| 497 | # some dependencies, since the stupid linker cannot find libraries |
566 | # some dependencies, since the stupid linker cannot find libraries |
| … | |
… | |
| 499 | # seems to be able to do this). |
568 | # seems to be able to do this). |
| 500 | # this has been seen while building shared-mime-info which needs |
569 | # this has been seen while building shared-mime-info which needs |
| 501 | # libxml2, but links without libtool (and does not add libz to the |
570 | # libxml2, but links without libtool (and does not add libz to the |
| 502 | # command line by itself). |
571 | # command line by itself). |
| 503 | pushd "${ED}/usr/${libdir}" > /dev/null |
572 | pushd "${ED}/usr/${libdir}" > /dev/null |
| 504 | ln -snf "../../${libdir}/${lib}" "${lib}" |
573 | ln -snf "../../${libdir}/${tlib}" "${lib}" |
| 505 | popd > /dev/null |
574 | popd > /dev/null |
| 506 | ;; |
575 | ;; |
| 507 | *-mint*) |
576 | hppa*-hpux*) # PA-RISC 32bit (SOM) only, others (ELF) match *64*-hpux* above. |
| 508 | # do nothing |
|
|
| 509 | return |
|
|
| 510 | ;; |
|
|
| 511 | *) |
|
|
| 512 | local tlib |
|
|
| 513 | if ${auto} ; then |
577 | if ${auto} ; then |
| 514 | lib="lib${lib}${suffix}" |
578 | tlib=$(chatr "${ED}"/usr/${libdir}/${lib} | sed -n '/internal name:/{n;s/^ *//;p;q}') |
| 515 | tlib=$(scanelf -qF'%S#F' "${D}"/usr/${libdir}/${lib}) |
579 | [[ -z ${tlib} ]] && tlib=${lib} |
|
|
580 | tlib=${tlib##*/} # 'internal name' can have a path component |
| 516 | mv "${D}"/usr/${libdir}/${lib}* "${D}"/${libdir}/ || die |
581 | mv "${ED}"/usr/${libdir}/${lib}* "${ED}"/${libdir}/ || die |
| 517 | # some SONAMEs are funky: they encode a version before the .so |
582 | # some SONAMEs are funky: they encode a version before the .so |
| 518 | if [[ ${tlib} != ${lib}* ]] ; then |
583 | if [[ ${tlib} != ${lib}* ]] ; then |
| 519 | mv "${D}"/usr/${libdir}/${tlib}* "${D}"/${libdir}/ || die |
584 | mv "${ED}"/usr/${libdir}/${tlib}* "${ED}"/${libdir}/ || die |
| 520 | fi |
585 | fi |
|
|
586 | [[ ${tlib} != ${lib} ]] && |
|
|
587 | rm -f "${ED}"/${libdir}/${lib} |
|
|
588 | else |
|
|
589 | tlib=$(chatr "${ED}"/${libdir}/${lib} | sed -n '/internal name:/{n;s/^ *//;p;q}') |
|
|
590 | [[ -z ${tlib} ]] && tlib=${lib} |
|
|
591 | tlib=${tlib##*/} # 'internal name' can have a path component |
|
|
592 | fi |
|
|
593 | pushd "${ED}"/usr/${libdir} >/dev/null |
|
|
594 | ln -snf "../../${libdir}/${tlib}" "${lib}" |
|
|
595 | # need the internal name in usr/lib too, to be available at runtime |
|
|
596 | # when linked with /path/to/lib.sl (hardcode_direct_absolute=yes) |
|
|
597 | [[ ${tlib} != ${lib} ]] && |
|
|
598 | ln -snf "../../${libdir}/${tlib}" "${tlib}" |
|
|
599 | popd >/dev/null |
|
|
600 | ;; |
|
|
601 | *) |
|
|
602 | if ${auto} ; then |
|
|
603 | tlib=$(scanelf -qF'%S#F' "${ED}"/usr/${libdir}/${lib}) |
| 521 | [[ -z ${tlib} ]] && die "unable to read SONAME from ${lib}" |
604 | [[ -z ${tlib} ]] && die "unable to read SONAME from ${lib}" |
|
|
605 | mv "${ED}"/usr/${libdir}/${lib}* "${ED}"/${libdir}/ || die |
|
|
606 | # some SONAMEs are funky: they encode a version before the .so |
|
|
607 | if [[ ${tlib} != ${lib}* ]] ; then |
|
|
608 | mv "${ED}"/usr/${libdir}/${tlib}* "${ED}"/${libdir}/ || die |
|
|
609 | fi |
| 522 | rm -f "${D}"/${libdir}/${lib} |
610 | rm -f "${ED}"/${libdir}/${lib} |
| 523 | else |
611 | else |
| 524 | tlib=${lib} |
612 | tlib=${lib} |
| 525 | fi |
613 | fi |
| 526 | cat > "${D}/usr/${libdir}/${lib}" <<-END_LDSCRIPT |
614 | cat > "${ED}/usr/${libdir}/${lib}" <<-END_LDSCRIPT |
| 527 | /* GNU ld script |
615 | /* GNU ld script |
| 528 | Since Gentoo has critical dynamic libraries in /lib, and the static versions |
616 | Since Gentoo has critical dynamic libraries in /lib, and the static versions |
| 529 | in /usr/lib, we need to have a "fake" dynamic lib in /usr/lib, otherwise we |
617 | in /usr/lib, we need to have a "fake" dynamic lib in /usr/lib, otherwise we |
| 530 | run into linking problems. This "fake" dynamic lib is a linker script that |
618 | run into linking problems. This "fake" dynamic lib is a linker script that |
| 531 | redirects the linker to the real lib. And yes, this works in the cross- |
619 | redirects the linker to the real lib. And yes, this works in the cross- |
| 532 | compiling scenario as the sysroot-ed linker will prepend the real path. |
620 | compiling scenario as the sysroot-ed linker will prepend the real path. |
| 533 | |
621 | |
| 534 | See bug http://bugs.gentoo.org/4411 for more info. |
622 | See bug http://bugs.gentoo.org/4411 for more info. |
| 535 | */ |
623 | */ |
| 536 | ${output_format} |
624 | ${output_format} |
| 537 | GROUP ( /${libdir}/${tlib} ) |
625 | GROUP ( ${EPREFIX}/${libdir}/${tlib} ) |
| 538 | END_LDSCRIPT |
626 | END_LDSCRIPT |
| 539 | ;; |
627 | ;; |
| 540 | esac |
628 | esac |
| 541 | fperms a+x "/usr/${libdir}/${lib}" || die "could not change perms on ${lib}" |
629 | fperms a+x "/usr/${libdir}/${lib}" || die "could not change perms on ${lib}" |
| 542 | done |
630 | done |
| 543 | } |
631 | } |
| 544 | |
|
|
| 545 | # This function is for AIX only. |
|
|
| 546 | # |
|
|
| 547 | # Showing a sample IMO is the best description: |
|
|
| 548 | # |
|
|
| 549 | # First, AIX has its own /usr/lib/libiconv.a containing 'shr.o' and 'shr4.o'. |
|
|
| 550 | # Both of them are shared-objects packed into an archive, thus /usr/lib/libiconv.a |
|
|
| 551 | # is a shared library (!), even it is called lib*.a. |
|
|
| 552 | # This is the default layout on aix for shared libraries. |
|
|
| 553 | # Read the ld(1) manpage for more information. |
|
|
| 554 | # |
|
|
| 555 | # But now, we want to install GNU libiconv (sys-libs/libiconv) both as |
|
|
| 556 | # shared and static library. |
|
|
| 557 | # AIX (since 4.3) can create shared libraries if '-brtl' or '-G' linker flags |
|
|
| 558 | # are used. |
|
|
| 559 | # |
|
|
| 560 | # Now assume we have GNU tar installed while GNU libiconv was not. |
|
|
| 561 | # This tar now has a runtime dependency on "libiconv.a(shr4.o)". |
|
|
| 562 | # With our ld-wrapper (from sys-devel/binutils-config) we add EPREFIX/usr/lib |
|
|
| 563 | # as linker path, thus it is recorded as loader path into the binary. |
|
|
| 564 | # |
|
|
| 565 | # When having libiconv.a (the static GNU libiconv) in prefix, the loader finds |
|
|
| 566 | # that one and claims that it does not contain an 'shr4.o' object file: |
|
|
| 567 | # |
|
|
| 568 | # Could not load program tar: |
|
|
| 569 | # Dependent module EPREFIX/usr/lib/libiconv.a(shr4.o) could not be loaded. |
|
|
| 570 | # Member shr4.o is not found in archive |
|
|
| 571 | # |
|
|
| 572 | # According to gcc's "host/target specific installation notes" for *-ibm-aix* [1], |
|
|
| 573 | # we can extract that 'shr4.o' from /usr/lib/libiconv.a, mark it as |
|
|
| 574 | # non-linkable, and include it in our new static library. |
|
|
| 575 | # |
|
|
| 576 | # [1] http://gcc.gnu.org/install/specific.html#x-ibm-aix |
|
|
| 577 | # |
|
|
| 578 | # usage: |
|
|
| 579 | # keep_aix_runtime_object <target-archive inside EPREFIX> <source-archive(objects)> |
|
|
| 580 | # keep_aix_runtime_object "/usr/lib/libiconv.a "/usr/lib/libiconv.a(shr4.o,...)" |
|
|
| 581 | keep_aix_runtime_objects() { |
|
|
| 582 | [[ ${CHOST} == *-*-aix* ]] || return 0 |
|
|
| 583 | |
|
|
| 584 | local target=$1 |
|
|
| 585 | shift |
|
|
| 586 | local sources="$@" |
|
|
| 587 | |
|
|
| 588 | # strip possible ${ED} prefixes |
|
|
| 589 | target=${target##/} |
|
|
| 590 | target=${target#${D##/}} |
|
|
| 591 | target=${target#${EPREFIX##/}} |
|
|
| 592 | target=${target##/} |
|
|
| 593 | |
|
|
| 594 | if ! $(tc-getAR) -t "${ED}${target}" &>/dev/null; then |
|
|
| 595 | if [[ -e ${ED}${target} ]]; then |
|
|
| 596 | ewarn "${target} is not an archive." |
|
|
| 597 | fi |
|
|
| 598 | return 0 |
|
|
| 599 | fi |
|
|
| 600 | |
|
|
| 601 | local tmpdir=${TMP}/keep_aix_runtime_object-$$ |
|
|
| 602 | mkdir ${tmpdir} || die |
|
|
| 603 | |
|
|
| 604 | local origdir=$(pwd) |
|
|
| 605 | local s |
|
|
| 606 | for s in ${sources}; do |
|
|
| 607 | local sourcelib sourceobjs so |
|
|
| 608 | # format of $s: "/usr/lib/libiconv.a(shr4.o,shr.o)" |
|
|
| 609 | sourcelib=${s%%(*} |
|
|
| 610 | sourceobjs=${s#*(} |
|
|
| 611 | sourceobjs=${sourceobjs%)} |
|
|
| 612 | sourceobjs=${sourceobjs//,/ } |
|
|
| 613 | cd ${tmpdir} || die |
|
|
| 614 | for so in ${sourceobjs}; do |
|
|
| 615 | ebegin "keeping aix runtime object '${sourcelib}(${so})' in '${EPREFIX}/${target}'" |
|
|
| 616 | if ! $(tc-getAR) -x "${sourcelib}" ${so}; then |
|
|
| 617 | eend 1 |
|
|
| 618 | continue |
|
|
| 619 | fi |
|
|
| 620 | chmod +w ${so} && |
|
|
| 621 | $(tc-getSTRIP) -e ${so} && |
|
|
| 622 | $(tc-getAR) -q "${ED}${target}" ${so} && |
|
|
| 623 | eend 0 || |
|
|
| 624 | eend 1 |
|
|
| 625 | done |
|
|
| 626 | done |
|
|
| 627 | cd "${origdir}" |
|
|
| 628 | } |
|
|