| 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.77 2008/06/01 08:56:56 aballier Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/toolchain-funcs.eclass,v 1.86 2009/02/25 00:25:51 kumba 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 |
| … | |
… | |
| 70 | tc-getNM() { tc-getPROG NM nm "$@"; } |
70 | tc-getNM() { tc-getPROG NM nm "$@"; } |
| 71 | # @FUNCTION: tc-getRANLIB |
71 | # @FUNCTION: tc-getRANLIB |
| 72 | # @USAGE: [toolchain prefix] |
72 | # @USAGE: [toolchain prefix] |
| 73 | # @RETURN: name of the archiver indexer |
73 | # @RETURN: name of the archiver indexer |
| 74 | 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 "$@"; } |
| 75 | # @FUNCTION: tc-getF77 |
79 | # @FUNCTION: tc-getF77 |
| 76 | # @USAGE: [toolchain prefix] |
80 | # @USAGE: [toolchain prefix] |
| 77 | # @RETURN: name of the Fortran 77 compiler |
81 | # @RETURN: name of the Fortran 77 compiler |
| 78 | tc-getF77() { tc-getPROG F77 f77 "$@"; } |
82 | tc-getF77() { tc-getPROG F77 f77 "$@"; } |
| 79 | # @FUNCTION: tc-getF90 |
83 | # @FUNCTION: tc-getFC |
| 80 | # @USAGE: [toolchain prefix] |
84 | # @USAGE: [toolchain prefix] |
| 81 | # @RETURN: name of the Fortran 90 compiler |
85 | # @RETURN: name of the Fortran 90 compiler |
| 82 | tc-getF90() { tc-getPROG F90 gfortran "$@"; } |
86 | tc-getFC() { tc-getPROG FC gfortran "$@"; } |
| 83 | # @FUNCTION: tc-getFORTRAN |
|
|
| 84 | # @USAGE: [toolchain prefix] |
|
|
| 85 | # @RETURN: name of the Fortran compiler |
|
|
| 86 | tc-getFORTRAN() { tc-getPROG FORTRAN 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 | |
91 | |
| … | |
… | |
| 118 | # @DESCRIPTION: |
118 | # @DESCRIPTION: |
| 119 | # Quick way to export a bunch of compiler vars at once. |
119 | # Quick way to export a bunch of compiler vars at once. |
| 120 | tc-export() { |
120 | tc-export() { |
| 121 | local var |
121 | local var |
| 122 | for var in "$@" ; do |
122 | for var in "$@" ; do |
|
|
123 | [[ $(type -t tc-get${var}) != "function" ]] && die "tc-export: invalid export variable '${var}'" |
| 123 | eval tc-get${var} > /dev/null |
124 | eval tc-get${var} > /dev/null |
| 124 | done |
125 | done |
| 125 | } |
126 | } |
| 126 | |
127 | |
| 127 | # @FUNCTION: tc-is-cross-compiler |
128 | # @FUNCTION: tc-is-cross-compiler |
| … | |
… | |
| 350 | |
351 | |
| 351 | # Returns true if gcc sets relro |
352 | # Returns true if gcc sets relro |
| 352 | gcc-specs-relro() { |
353 | gcc-specs-relro() { |
| 353 | local directive |
354 | local directive |
| 354 | directive=$(gcc-specs-directive link_command) |
355 | directive=$(gcc-specs-directive link_command) |
| 355 | return $([[ ${directive/\{!norelro:} != ${directive} ]]) |
356 | return $([[ "${directive/\{!norelro:}" != "${directive}" ]]) |
| 356 | } |
357 | } |
| 357 | # Returns true if gcc sets now |
358 | # Returns true if gcc sets now |
| 358 | gcc-specs-now() { |
359 | gcc-specs-now() { |
| 359 | local directive |
360 | local directive |
| 360 | directive=$(gcc-specs-directive link_command) |
361 | directive=$(gcc-specs-directive link_command) |
| 361 | return $([[ ${directive/\{!nonow:} != ${directive} ]]) |
362 | return $([[ "${directive/\{!nonow:}" != "${directive}" ]]) |
| 362 | } |
363 | } |
| 363 | # Returns true if gcc builds PIEs |
364 | # Returns true if gcc builds PIEs |
| 364 | gcc-specs-pie() { |
365 | gcc-specs-pie() { |
| 365 | local directive |
366 | local directive |
| 366 | directive=$(gcc-specs-directive cc1) |
367 | directive=$(gcc-specs-directive cc1) |
| 367 | return $([[ ${directive/\{!nopie:} != ${directive} ]]) |
368 | return $([[ "${directive/\{!nopie:}" != "${directive}" ]]) |
| 368 | } |
369 | } |
| 369 | # Returns true if gcc builds with the stack protector |
370 | # Returns true if gcc builds with the stack protector |
| 370 | gcc-specs-ssp() { |
371 | gcc-specs-ssp() { |
| 371 | local directive |
372 | local directive |
| 372 | directive=$(gcc-specs-directive cc1) |
373 | directive=$(gcc-specs-directive cc1) |
| 373 | return $([[ ${directive/\{!fno-stack-protector:} != ${directive} ]]) |
374 | return $([[ "${directive/\{!fno-stack-protector:}" != "${directive}" ]]) |
| 374 | } |
375 | } |
| 375 | # Returns true if gcc upgrades fstack-protector to fstack-protector-all |
376 | # Returns true if gcc upgrades fstack-protector to fstack-protector-all |
| 376 | gcc-specs-ssp-to-all() { |
377 | gcc-specs-ssp-to-all() { |
| 377 | local directive |
378 | local directive |
| 378 | directive=$(gcc-specs-directive cc1) |
379 | directive=$(gcc-specs-directive cc1) |
| 379 | return $([[ ${directive/\{!fno-stack-protector-all:} != ${directive} ]]) |
380 | return $([[ "${directive/\{!fno-stack-protector-all:}" != "${directive}" ]]) |
|
|
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}" ]]) |
| 380 | } |
387 | } |
| 381 | |
388 | |
| 382 | |
389 | |
| 383 | # @FUNCTION: gen_usr_ldscript |
390 | # @FUNCTION: gen_usr_ldscript |
| 384 | # @USAGE: <list of libs to create linker scripts for> |
391 | # @USAGE: [-a] <list of libs to create linker scripts for> |
| 385 | # @DESCRIPTION: |
392 | # @DESCRIPTION: |
| 386 | # This function generate linker scripts in /usr/lib for dynamic |
393 | # This function generate linker scripts in /usr/lib for dynamic |
| 387 | # libs in /lib. This is to fix linking problems when you have |
394 | # libs in /lib. This is to fix linking problems when you have |
| 388 | # the .so in /lib, and the .a in /usr/lib. What happens is that |
395 | # the .so in /lib, and the .a in /usr/lib. What happens is that |
| 389 | # in some cases when linking dynamic, the .a in /usr/lib is used |
396 | # in some cases when linking dynamic, the .a in /usr/lib is used |
| … | |
… | |
| 393 | # |
400 | # |
| 394 | # Note that you should in general use the unversioned name of |
401 | # Note that you should in general use the unversioned name of |
| 395 | # the library (libfoo.so), as ldconfig should usually update it |
402 | # the library (libfoo.so), as ldconfig should usually update it |
| 396 | # correctly to point to the latest version of the library present. |
403 | # correctly to point to the latest version of the library present. |
| 397 | gen_usr_ldscript() { |
404 | gen_usr_ldscript() { |
| 398 | local lib libdir=$(get_libdir) output_format="" |
405 | local lib libdir=$(get_libdir) output_format="" auto=false suffix=$(get_libname) |
| 399 | # Just make sure it exists |
406 | # Just make sure it exists |
| 400 | dodir /usr/${libdir} |
407 | dodir /usr/${libdir} |
|
|
408 | |
|
|
409 | if [[ $1 == "-a" ]] ; then |
|
|
410 | auto=true |
|
|
411 | shift |
|
|
412 | dodir /${libdir} |
|
|
413 | fi |
| 401 | |
414 | |
| 402 | # OUTPUT_FORMAT gives hints to the linker as to what binary format |
415 | # OUTPUT_FORMAT gives hints to the linker as to what binary format |
| 403 | # is referenced ... makes multilib saner |
416 | # is referenced ... makes multilib saner |
| 404 | output_format=$($(tc-getCC) ${CFLAGS} ${LDFLAGS} -Wl,--verbose 2>&1 | sed -n 's/^OUTPUT_FORMAT("\([^"]*\)",.*/\1/p') |
417 | output_format=$($(tc-getCC) ${CFLAGS} ${LDFLAGS} -Wl,--verbose 2>&1 | sed -n 's/^OUTPUT_FORMAT("\([^"]*\)",.*/\1/p') |
| 405 | [[ -n ${output_format} ]] && output_format="OUTPUT_FORMAT ( ${output_format} )" |
418 | [[ -n ${output_format} ]] && output_format="OUTPUT_FORMAT ( ${output_format} )" |
| … | |
… | |
| 408 | if [[ ${USERLAND} == "Darwin" ]] ; then |
421 | if [[ ${USERLAND} == "Darwin" ]] ; then |
| 409 | ewarn "Not creating fake dynamic library for $lib on Darwin;" |
422 | ewarn "Not creating fake dynamic library for $lib on Darwin;" |
| 410 | ewarn "making a symlink instead." |
423 | ewarn "making a symlink instead." |
| 411 | dosym "/${libdir}/${lib}" "/usr/${libdir}/${lib}" |
424 | dosym "/${libdir}/${lib}" "/usr/${libdir}/${lib}" |
| 412 | else |
425 | else |
|
|
426 | local tlib |
|
|
427 | if ${auto} ; then |
|
|
428 | lib="lib${lib}${suffix}" |
|
|
429 | mv "${D}"/usr/${libdir}/${lib}* "${D}"/${libdir}/ || die |
|
|
430 | tlib=$(scanelf -qF'%S#F' "${D}"/${libdir}/${lib}) |
|
|
431 | [[ -z ${tlib} ]] && die "unable to read SONAME from ${lib}" |
|
|
432 | rm -f "${D}"/${libdir}/${lib} |
|
|
433 | else |
|
|
434 | tlib=${lib} |
|
|
435 | fi |
| 413 | cat > "${D}/usr/${libdir}/${lib}" <<-END_LDSCRIPT |
436 | cat > "${D}/usr/${libdir}/${lib}" <<-END_LDSCRIPT |
| 414 | /* GNU ld script |
437 | /* GNU ld script |
| 415 | Since Gentoo has critical dynamic libraries |
438 | Since Gentoo has critical dynamic libraries |
| 416 | in /lib, and the static versions in /usr/lib, |
439 | in /lib, and the static versions in /usr/lib, |
| 417 | we need to have a "fake" dynamic lib in /usr/lib, |
440 | we need to have a "fake" dynamic lib in /usr/lib, |
| 418 | otherwise we run into linking problems. |
441 | otherwise we run into linking problems. |
| 419 | |
442 | |
| 420 | See bug http://bugs.gentoo.org/4411 for more info. |
443 | See bug http://bugs.gentoo.org/4411 for more info. |
| 421 | */ |
444 | */ |
| 422 | ${output_format} |
445 | ${output_format} |
| 423 | GROUP ( /${libdir}/${lib} ) |
446 | GROUP ( /${libdir}/${tlib} ) |
| 424 | END_LDSCRIPT |
447 | END_LDSCRIPT |
|
|
448 | fperms a+x "/usr/${libdir}/${lib}" || die "could not change perms on ${lib}" |
| 425 | fi |
449 | fi |
| 426 | fperms a+x "/usr/${libdir}/${lib}" || die "could not change perms on ${lib}" |
|
|
| 427 | done |
450 | done |
| 428 | } |
451 | } |