| 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.90 2009/04/05 07:50:08 grobian Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/toolchain-funcs.eclass,v 1.94 2009/09/02 09:00:08 grobian 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 |
| … | |
… | |
| 152 | && echo "yes" \ |
152 | && echo "yes" \ |
| 153 | || echo "no" |
153 | || echo "no" |
| 154 | ;; |
154 | ;; |
| 155 | esac |
155 | esac |
| 156 | } |
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* ]]) |
|
|
167 | } |
|
|
168 | |
| 157 | |
169 | |
| 158 | # Parse information from CBUILD/CHOST/CTARGET rather than |
170 | # Parse information from CBUILD/CHOST/CTARGET rather than |
| 159 | # use external variables from the profile. |
171 | # use external variables from the profile. |
| 160 | tc-ninja_magic_to_arch() { |
172 | tc-ninja_magic_to_arch() { |
| 161 | ninj() { [[ ${type} == "kern" ]] && echo $1 || echo $2 ; } |
173 | ninj() { [[ ${type} == "kern" ]] && echo $1 || echo $2 ; } |
| … | |
… | |
| 401 | # Note that you should in general use the unversioned name of |
413 | # Note that you should in general use the unversioned name of |
| 402 | # the library (libfoo.so), as ldconfig should usually update it |
414 | # the library (libfoo.so), as ldconfig should usually update it |
| 403 | # correctly to point to the latest version of the library present. |
415 | # correctly to point to the latest version of the library present. |
| 404 | gen_usr_ldscript() { |
416 | gen_usr_ldscript() { |
| 405 | local lib libdir=$(get_libdir) output_format="" auto=false suffix=$(get_libname) |
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 | |
| 406 | # Just make sure it exists |
422 | # Just make sure it exists |
| 407 | dodir /usr/${libdir} |
423 | dodir /usr/${libdir} |
| 408 | |
424 | |
| 409 | if [[ $1 == "-a" ]] ; then |
425 | if [[ $1 == "-a" ]] ; then |
| 410 | auto=true |
426 | auto=true |
| … | |
… | |
| 416 | # is referenced ... makes multilib saner |
432 | # is referenced ... makes multilib saner |
| 417 | 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') |
| 418 | [[ -n ${output_format} ]] && output_format="OUTPUT_FORMAT ( ${output_format} )" |
434 | [[ -n ${output_format} ]] && output_format="OUTPUT_FORMAT ( ${output_format} )" |
| 419 | |
435 | |
| 420 | for lib in "$@" ; do |
436 | for lib in "$@" ; do |
| 421 | if [[ ${USERLAND} == "Darwin" ]] ; then |
437 | local tlib |
| 422 | ewarn "Not creating fake dynamic library for $lib on Darwin;" |
438 | if ${auto} ; then |
| 423 | ewarn "making a symlink instead." |
439 | lib="lib${lib}${suffix}" |
| 424 | dosym "/${libdir}/${lib}" "/usr/${libdir}/${lib}" |
|
|
| 425 | else |
440 | else |
| 426 | local tlib |
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*) |
| 427 | if ${auto} ; then |
450 | if ${auto} ; then |
| 428 | lib="lib${lib}${suffix}" |
|
|
| 429 | tlib=$(scanelf -qF'%S#F' "${D}"/usr/${libdir}/${lib}) |
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 | fperms u+w "${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} ]] && fperms u-w "${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 |
| 430 | mv "${D}"/usr/${libdir}/${lib}* "${D}"/${libdir}/ || die |
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 |
| 431 | # some SONAMEs are funky: they encode a version before the .so |
528 | # some SONAMEs are funky: they encode a version before the .so |
| 432 | if [[ ${tlib} != ${lib}* ]] ; then |
529 | if [[ ${tlib} != ${lib}* ]] ; then |
| 433 | mv "${D}"/usr/${libdir}/${tlib}* "${D}"/${libdir}/ || die |
530 | mv "${ED}"/usr/${libdir}/${tlib}* "${ED}"/${libdir}/ || die |
| 434 | fi |
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}) |
| 435 | [[ -z ${tlib} ]] && die "unable to read SONAME from ${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 |
| 436 | rm -f "${D}"/${libdir}/${lib} |
556 | rm -f "${ED}"/${libdir}/${lib} |
| 437 | else |
557 | else |
| 438 | tlib=${lib} |
558 | tlib=${lib} |
| 439 | fi |
559 | fi |
| 440 | cat > "${D}/usr/${libdir}/${lib}" <<-END_LDSCRIPT |
560 | cat > "${ED}/usr/${libdir}/${lib}" <<-END_LDSCRIPT |
| 441 | /* GNU ld script |
561 | /* GNU ld script |
| 442 | Since Gentoo has critical dynamic libraries in /lib, and the static versions |
562 | 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 |
563 | 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 |
564 | 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- |
565 | 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. |
566 | compiling scenario as the sysroot-ed linker will prepend the real path. |
| 447 | |
567 | |
| 448 | See bug http://bugs.gentoo.org/4411 for more info. |
568 | See bug http://bugs.gentoo.org/4411 for more info. |
| 449 | */ |
569 | */ |
| 450 | ${output_format} |
570 | ${output_format} |
| 451 | GROUP ( /${libdir}/${tlib} ) |
571 | GROUP ( ${EPREFIX}/${libdir}/${tlib} ) |
| 452 | END_LDSCRIPT |
572 | END_LDSCRIPT |
|
|
573 | ;; |
|
|
574 | esac |
| 453 | 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}" |
| 454 | fi |
|
|
| 455 | done |
576 | done |
| 456 | } |
577 | } |