| 1 | # Copyright 1999-2004 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/multilib.eclass,v 1.54 2006/07/12 07:40:49 kevquinn Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/multilib.eclass,v 1.58 2007/03/27 01:10:05 vapier Exp $ |
| 4 | # |
4 | # |
| 5 | # Author: Jeremy Huddleston <eradicator@gentoo.org> |
5 | # Maintainer: amd64@gentoo.org / toolchain@gentoo.org |
| 6 | # |
6 | # |
| 7 | # This eclass is for all functions pertaining to handling multilib. |
7 | # This eclass is for all functions pertaining to handling multilib. |
| 8 | # configurations. |
8 | # configurations. |
| 9 | |
9 | |
| 10 | DESCRIPTION="Based on the ${ECLASS} eclass" |
10 | DESCRIPTION="Based on the ${ECLASS} eclass" |
|
|
11 | |
|
|
12 | inherit toolchain-funcs |
| 11 | |
13 | |
| 12 | # has_multilib_profile: |
14 | # has_multilib_profile: |
| 13 | # Return true if the current profile is a multilib profile and lists more than |
15 | # Return true if the current profile is a multilib profile and lists more than |
| 14 | # one abi in ${MULTILIB_ABIS}. You might want to use this like |
16 | # one abi in ${MULTILIB_ABIS}. You might want to use this like |
| 15 | # 'use multilib || has_multilib_profile' until all profiles utilizing the |
17 | # 'use multilib || has_multilib_profile' until all profiles utilizing the |
| … | |
… | |
| 268 | get_all_libdirs() { |
270 | get_all_libdirs() { |
| 269 | local libdirs="lib" |
271 | local libdirs="lib" |
| 270 | local abi |
272 | local abi |
| 271 | local dir |
273 | local dir |
| 272 | |
274 | |
| 273 | # Remove when amd64's 2004.3 is purged. |
|
|
| 274 | if [[ -n "${CONF_LIBDIR}" ]]; then |
|
|
| 275 | for dir in ${CONF_LIBDIR} ${CONF_MULTILIBDIR:-lib32}; do |
|
|
| 276 | [ "${dir}" != "lib" ] && libdirs="${libdirs} ${dir}" |
|
|
| 277 | done |
|
|
| 278 | else |
|
|
| 279 | for abi in ${MULTILIB_ABIS}; do |
275 | for abi in ${MULTILIB_ABIS}; do |
| 280 | [ "$(get_abi_LIBDIR ${abi})" != "lib" ] && libdirs="${libdirs} $(get_abi_LIBDIR ${abi})" |
276 | [ "$(get_abi_LIBDIR ${abi})" != "lib" ] && libdirs="${libdirs} $(get_abi_LIBDIR ${abi})" |
| 281 | done |
277 | done |
| 282 | fi |
|
|
| 283 | |
278 | |
| 284 | echo "${libdirs}" |
279 | echo "${libdirs}" |
| 285 | } |
280 | } |
| 286 | |
281 | |
| 287 | # Return true if ${ABI} is the last ABI on our list (or if we're not |
282 | # Return true if ${ABI} is the last ABI on our list (or if we're not |
| … | |
… | |
| 571 | export CDEFINE_x86="__i386__" |
566 | export CDEFINE_x86="__i386__" |
| 572 | export LIBDIR_x86="lib" |
567 | export LIBDIR_x86="lib" |
| 573 | |
568 | |
| 574 | export CFLAGS_amd64=${CFLAGS_amd64--m64} |
569 | export CFLAGS_amd64=${CFLAGS_amd64--m64} |
| 575 | export CHOST_amd64=${CTARGET} |
570 | export CHOST_amd64=${CTARGET} |
| 576 | export CTARGET_amd64=${CTARGET_amd64} |
571 | export CTARGET_amd64=${CHOST_amd64} |
| 577 | export CDEFINE_amd64="__x86_64__" |
572 | export CDEFINE_amd64="__x86_64__" |
| 578 | export LIBDIR_amd64="lib64" |
573 | export LIBDIR_amd64="lib64" |
| 579 | |
574 | |
| 580 | export MULTILIB_ABIS="amd64 x86" |
575 | export MULTILIB_ABIS="amd64 x86" |
| 581 | export DEFAULT_ABI="amd64" |
576 | export DEFAULT_ABI="amd64" |
| … | |
… | |
| 658 | } |
653 | } |
| 659 | |
654 | |
| 660 | # Hide multilib details here for packages which are forced to be compiled for a |
655 | # Hide multilib details here for packages which are forced to be compiled for a |
| 661 | # specific ABI when run on another ABI (like x86-specific packages on amd64) |
656 | # specific ABI when run on another ABI (like x86-specific packages on amd64) |
| 662 | multilib_toolchain_setup() { |
657 | multilib_toolchain_setup() { |
|
|
658 | export ABI=$1 |
|
|
659 | |
| 663 | if has_version app-admin/eselect-compiler ; then |
660 | if has_version app-admin/eselect-compiler ; then |
| 664 | # Binutils doesn't have wrappers for ld and as (yet). Eventually it |
661 | # Binutils doesn't have wrappers for ld and as (yet). Eventually it |
| 665 | # will, and all this can just be handled with CHOST. |
662 | # will, and all this can just be handled with CHOST. |
| 666 | export LD="ld $(get_abi_LDFLAGS $1)" |
663 | export LD="ld $(get_abi_LDFLAGS $1)" |
| 667 | export AS="as $(get_abi_ASFLAGS $1)" |
664 | export AS="as $(get_abi_ASFLAGS $1)" |
| 668 | |
665 | |
| 669 | export CHOST=$(get_abi_CHOST $1) |
666 | export CHOST=$(get_abi_CHOST $1) |
| 670 | export CBUILD=$(get_abi_CHOST $1) |
667 | export CBUILD=$(get_abi_CHOST $1) |
| 671 | else |
668 | else |
| 672 | tc-export CC |
669 | tc-export CC |
| 673 | export ABI=$1 |
|
|
| 674 | fi |
670 | fi |
| 675 | } |
671 | } |