| 1 | # Copyright 1999-2004 Gentoo Foundation |
1 | # Copyright 1999-2011 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.16 2005/01/31 06:37:31 eradicator Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/multilib.eclass,v 1.93 2011/10/14 22:54:35 vapier Exp $ |
| 4 | # |
4 | |
| 5 | # Author: Jeremy Huddleston <eradicator@gentoo.org> |
5 | # @ECLASS: multilib.eclass |
| 6 | # |
6 | # @MAINTAINER: |
|
|
7 | # amd64@gentoo.org |
|
|
8 | # toolchain@gentoo.org |
|
|
9 | # @BLURB: This eclass is for all functions pertaining to handling multilib configurations. |
|
|
10 | # @DESCRIPTION: |
| 7 | # This eclass is for all functions pertaining to handling multilib. |
11 | # This eclass is for all functions pertaining to handling multilib configurations. |
| 8 | # configurations. |
|
|
| 9 | |
12 | |
| 10 | ECLASS=multilib |
13 | ___ECLASS_RECUR_MULTILIB="yes" |
| 11 | INHERITED="$INHERITED $ECLASS" |
14 | [[ -z ${___ECLASS_RECUR_TOOLCHAIN_FUNCS} ]] && inherit toolchain-funcs |
| 12 | |
15 | |
| 13 | DESCRIPTION="Based on the ${ECLASS} eclass" |
16 | # Defaults: |
|
|
17 | export MULTILIB_ABIS=${MULTILIB_ABIS:-"default"} |
|
|
18 | export DEFAULT_ABI=${DEFAULT_ABI:-"default"} |
|
|
19 | export CFLAGS_default |
|
|
20 | export LDFLAGS_default |
|
|
21 | export CHOST_default=${CHOST_default:-${CHOST}} |
|
|
22 | export CTARGET_default=${CTARGET_default:-${CTARGET:-${CHOST_default}}} |
|
|
23 | export LIBDIR_default=${CONF_LIBDIR:-"lib"} |
|
|
24 | export KERNEL_ABI=${KERNEL_ABI:-${DEFAULT_ABI}} |
| 14 | |
25 | |
| 15 | # has_multilib_profile: |
26 | # @FUNCTION: has_multilib_profile |
|
|
27 | # @DESCRIPTION: |
| 16 | # Return true if the current profile is a multilib profile and lists more than |
28 | # Return true if the current profile is a multilib profile and lists more than |
| 17 | # one abi in ${MULTILIB_ABIS}. You might want to use this like |
29 | # one abi in ${MULTILIB_ABIS}. When has_multilib_profile returns true, that |
| 18 | # 'use multilib || has_multilib_profile' until all profiles utilizing the |
30 | # profile should enable the 'multilib' use flag. This is so you can DEPEND on |
| 19 | # 'multilib' use flag are removed from portage |
31 | # a package only for multilib or not multilib. |
| 20 | |
|
|
| 21 | # is_final_abi: |
|
|
| 22 | # Return true if ${ABI} is the final abi to be installed (and thus we are |
|
|
| 23 | # on our last run through a src_* function. |
|
|
| 24 | |
|
|
| 25 | # number_abis: |
|
|
| 26 | # echo the number of ABIs we will be installing for |
|
|
| 27 | |
|
|
| 28 | # get_abi_order: |
|
|
| 29 | # Return a list of the ABIs we want to install for with |
|
|
| 30 | # the last one in the list being the default. |
|
|
| 31 | |
|
|
| 32 | # get_all_libdirs: |
|
|
| 33 | # Returns a list of all the libdirs used by this profile. This includes |
|
|
| 34 | # those that might not be touched by the current ebuild and always includes |
|
|
| 35 | # "lib". |
|
|
| 36 | |
|
|
| 37 | # get_libdir: |
|
|
| 38 | # Returns the libdir for the selected ABI. This is backwards compatible |
|
|
| 39 | # and simply calls get_abi_LIBDIR() on newer profiles. You should use this |
|
|
| 40 | # to determine where to install shared objects (ex: /usr/$(get_libdir)) |
|
|
| 41 | |
|
|
| 42 | # get_abi_var <VAR> [<ABI>]: |
|
|
| 43 | # returns the value of ${<VAR>_<ABI>} which should be set in make.defaults |
|
|
| 44 | # |
|
|
| 45 | # get_abi_CFLAGS: |
|
|
| 46 | # get_abi_CDEFINE: |
|
|
| 47 | # get_abi_LIBDIR: |
|
|
| 48 | # Aliases for 'get_abi_var CFLAGS', etc. |
|
|
| 49 | |
|
|
| 50 | # get_ml_incdir [<include dir> [<ABI>]] |
|
|
| 51 | # include dir defaults to /usr/include |
|
|
| 52 | # ABI defaults to ${ABI} or ${DEFAULT_ABI} |
|
|
| 53 | # |
|
|
| 54 | # If a multilib include dir is associated with the passed include dir, then |
|
|
| 55 | # we return it, otherwise, we just echo back the include dir. This is |
|
|
| 56 | # neccessary when a built script greps header files rather than testing them |
|
|
| 57 | # via #include (like perl) to figure out features. |
|
|
| 58 | |
|
|
| 59 | # prep_ml_includes: |
|
|
| 60 | # Some includes (include/asm, glibc, etc) are ABI dependent. In this case, |
|
|
| 61 | # We can install them in different locations for each ABI and create a common |
|
|
| 62 | # header which includes the right one based on CDEFINE_${ABI}. If your |
|
|
| 63 | # package installs ABI-specific headers, just add 'prep_ml_includes' to the |
|
|
| 64 | # end of your src_install(). It takes a list of directories that include |
|
|
| 65 | # files are installed in (default is /usr/include if none are passed). |
|
|
| 66 | # |
|
|
| 67 | # Example: |
|
|
| 68 | # src_install() { |
|
|
| 69 | # ... |
|
|
| 70 | # prep_ml_includes /usr/qt/3/include |
|
|
| 71 | # } |
|
|
| 72 | |
|
|
| 73 | # create_ml_includes <include dir> <symbol 1>:<dir 1> [<symbol 2>:<dir 2> ...] |
|
|
| 74 | # If you need more control than prep_ml_includes can offer (like linux-headers |
|
|
| 75 | # for the asm-* dirs, then use create_ml_includes. The firs argument is the |
|
|
| 76 | # common dir. The remaining args are of the form <symbol>:<dir> where |
|
|
| 77 | # <symbol> is what is put in the #ifdef for choosing that dir. |
|
|
| 78 | # |
|
|
| 79 | # Ideas for this code came from debian's sparc-linux headers package. |
|
|
| 80 | # |
|
|
| 81 | # Example: |
|
|
| 82 | # create_ml_includes /usr/include/asm __sparc__:/usr/include/asm-sparc __sparc64__:/usr/include/asm-sparc64 |
|
|
| 83 | # create_ml_includes /usr/include/asm __i386__:/usr/include/asm-i386 __x86_64__:/usr/include/asm-x86_64 |
|
|
| 84 | |
|
|
| 85 | ### END DOCUMENTATION ### |
|
|
| 86 | |
|
|
| 87 | # has_multilib_profile() |
|
|
| 88 | has_multilib_profile() { |
32 | has_multilib_profile() { |
| 89 | [ -n "${MULTILIB_ABIS}" -a "${MULTILIB_ABIS}" != "${MULTILIB_ABIS/ /}" ] |
33 | [ -n "${MULTILIB_ABIS}" -a "${MULTILIB_ABIS}" != "${MULTILIB_ABIS/ /}" ] |
| 90 | } |
34 | } |
| 91 | |
35 | |
|
|
36 | # @FUNCTION: get_libdir |
|
|
37 | # @RETURN: the libdir for the selected ABI |
|
|
38 | # @DESCRIPTION: |
| 92 | # This function simply returns the desired lib directory. With portage |
39 | # This function simply returns the desired lib directory. With portage |
| 93 | # 2.0.51, we now have support for installing libraries to lib32/lib64 |
40 | # 2.0.51, we now have support for installing libraries to lib32/lib64 |
| 94 | # to accomidate the needs of multilib systems. It's no longer a good idea |
41 | # to accomidate the needs of multilib systems. It's no longer a good idea |
| 95 | # to assume all libraries will end up in lib. Replace any (sane) instances |
42 | # to assume all libraries will end up in lib. Replace any (sane) instances |
| 96 | # where lib is named directly with $(get_libdir) if possible. |
43 | # where lib is named directly with $(get_libdir) if possible. |
| 97 | # |
|
|
| 98 | # Travis Tilley <lv@gentoo.org> (24 Aug 2004) |
|
|
| 99 | # |
44 | # |
| 100 | # Jeremy Huddleston <eradicator@gentoo.org> (23 Dec 2004): |
45 | # Jeremy Huddleston <eradicator@gentoo.org> (23 Dec 2004): |
| 101 | # Added support for ${ABI} and ${DEFAULT_ABI}. If they're both not set, |
46 | # Added support for ${ABI} and ${DEFAULT_ABI}. If they're both not set, |
| 102 | # fall back on old behavior. Any profile that has these set should also |
47 | # fall back on old behavior. Any profile that has these set should also |
| 103 | # depend on a newer version of portage (not yet released) which uses these |
48 | # depend on a newer version of portage (not yet released) which uses these |
| 104 | # over CONF_LIBDIR in econf, dolib, etc... |
49 | # over CONF_LIBDIR in econf, dolib, etc... |
| 105 | get_libdir() { |
50 | get_libdir() { |
| 106 | LIBDIR_TEST=$(type econf) |
51 | local CONF_LIBDIR |
| 107 | if [ ! -z "${CONF_LIBDIR_OVERRIDE}" ] ; then |
52 | if [ -n "${CONF_LIBDIR_OVERRIDE}" ] ; then |
| 108 | # if there is an override, we want to use that... always. |
53 | # if there is an override, we want to use that... always. |
| 109 | CONF_LIBDIR="${CONF_LIBDIR_OVERRIDE}" |
|
|
| 110 | elif [ -n "$(get_abi_LIBDIR)" ]; then |
|
|
| 111 | CONF_LIBDIR="$(get_abi_LIBDIR)" |
|
|
| 112 | elif [ "${LIBDIR_TEST/CONF_LIBDIR}" == "${LIBDIR_TEST}" ]; then # we don't have CONF_LIBDIR support |
|
|
| 113 | # will be <portage-2.0.51_pre20 |
|
|
| 114 | CONF_LIBDIR="lib" |
|
|
| 115 | fi |
|
|
| 116 | # and of course, default to lib if CONF_LIBDIR isnt set |
|
|
| 117 | echo ${CONF_LIBDIR:=lib} |
|
|
| 118 | unset LIBDIR_TEST |
|
|
| 119 | } |
|
|
| 120 | |
|
|
| 121 | get_multilibdir() { |
|
|
| 122 | if [ -n "$(get_abi_LIBDIR)" ]; then |
|
|
| 123 | eerror "get_multilibdir called, but it shouldn't be needed with the new multilib approach. Please file a bug at http://bugs.gentoo.org and assign it to eradicator@gentoo.org" |
|
|
| 124 | exit 1 |
|
|
| 125 | fi |
|
|
| 126 | echo ${CONF_MULTILIBDIR:=lib32} |
|
|
| 127 | } |
|
|
| 128 | |
|
|
| 129 | # Sometimes you need to override the value returned by get_libdir. A good |
|
|
| 130 | # example of this is xorg-x11, where lib32 isnt a supported configuration, |
|
|
| 131 | # and where lib64 -must- be used on amd64 (for applications that need lib |
|
|
| 132 | # to be 32bit, such as adobe acrobat). Note that this override also bypasses |
|
|
| 133 | # portage version sanity checking. |
|
|
| 134 | # get_libdir_override expects one argument, the result get_libdir should |
|
|
| 135 | # return: |
|
|
| 136 | # |
|
|
| 137 | # get_libdir_override lib64 |
|
|
| 138 | # |
|
|
| 139 | # Travis Tilley <lv@gentoo.org> (31 Aug 2004) |
|
|
| 140 | get_libdir_override() { |
|
|
| 141 | if [ -n "$(get_abi_LIBDIR)" ]; then |
|
|
| 142 | eerror "get_libdir_override called, but it shouldn't be needed with the new multilib approach. Please file a bug at http://bugs.gentoo.org and assign it to eradicator@gentoo.org" |
|
|
| 143 | exit 1 |
|
|
| 144 | fi |
|
|
| 145 | CONF_LIBDIR="$1" |
|
|
| 146 | CONF_LIBDIR_OVERRIDE="$1" |
54 | echo ${CONF_LIBDIR_OVERRIDE} |
|
|
55 | else |
|
|
56 | get_abi_LIBDIR |
|
|
57 | fi |
| 147 | } |
58 | } |
| 148 | |
59 | |
| 149 | # get_abi_var <VAR> [<ABI>] |
60 | # @FUNCTION: get_abi_var |
|
|
61 | # @USAGE: <VAR> [ABI] |
| 150 | # returns the value of ${<VAR>_<ABI>} which should be set in make.defaults |
62 | # @RETURN: returns the value of ${<VAR>_<ABI>} which should be set in make.defaults |
| 151 | # |
63 | # @INTERNAL |
|
|
64 | # @DESCRIPTION: |
| 152 | # ex: |
65 | # ex: |
| 153 | # CFLAGS=$(get_abi_var CFLAGS sparc32) # CFLAGS=-m32 |
66 | # CFLAGS=$(get_abi_var CFLAGS sparc32) # CFLAGS=-m32 |
| 154 | # |
67 | # |
| 155 | # Note that the prefered method is to set CC="$(tc-getCC) $(get_abi_CFLAGS)" |
68 | # Note that the prefered method is to set CC="$(tc-getCC) $(get_abi_CFLAGS)" |
| 156 | # This will hopefully be added to portage soon... |
69 | # This will hopefully be added to portage soon... |
| 157 | # |
70 | # |
| 158 | # If <ABI> is not specified, ${ABI} is used. |
71 | # If <ABI> is not specified, ${ABI} is used. |
| 159 | # If <ABI> is not specified and ${ABI} is not defined, ${DEFAULT_ABI} is used. |
72 | # If <ABI> is not specified and ${ABI} is not defined, ${DEFAULT_ABI} is used. |
| 160 | # If <ABI> is not specified and ${ABI} and ${DEFAULT_ABI} are not defined, we return an empty string. |
73 | # If <ABI> is not specified and ${ABI} and ${DEFAULT_ABI} are not defined, we return an empty string. |
| 161 | # |
|
|
| 162 | # Jeremy Huddleston <eradicator@gentoo.org> |
|
|
| 163 | get_abi_var() { |
74 | get_abi_var() { |
| 164 | local flag=${1} |
75 | local flag=$1 |
| 165 | local abi |
76 | local abi |
| 166 | if [ $# -gt 1 ]; then |
77 | if [ $# -gt 1 ]; then |
| 167 | abi=${2} |
78 | abi=${2} |
| 168 | elif [ -n "${ABI}" ]; then |
79 | elif [ -n "${ABI}" ]; then |
| 169 | abi=${ABI} |
80 | abi=${ABI} |
| 170 | elif [ -n "${DEFAULT_ABI}" ]; then |
81 | elif [ -n "${DEFAULT_ABI}" ]; then |
| 171 | abi=${DEFAULT_ABI} |
82 | abi=${DEFAULT_ABI} |
| 172 | else |
83 | else |
| 173 | return 1 |
84 | abi="default" |
| 174 | fi |
85 | fi |
| 175 | |
86 | |
| 176 | local var="${flag}_${abi}" |
87 | local var="${flag}_${abi}" |
| 177 | echo ${!var} |
88 | echo ${!var} |
| 178 | } |
89 | } |
| 179 | |
90 | |
|
|
91 | # @FUNCTION: get_abi_CFLAGS |
|
|
92 | # @USAGE: [ABI] |
|
|
93 | # @DESCRIPTION: |
|
|
94 | # Alias for 'get_abi_var CFLAGS' |
| 180 | get_abi_CFLAGS() { get_abi_var CFLAGS ${@}; } |
95 | get_abi_CFLAGS() { get_abi_var CFLAGS "$@"; } |
| 181 | get_abi_CDEFINE() { get_abi_var CDEFINE ${@}; } |
96 | |
|
|
97 | # @FUNCTION: get_abi_LDFLAGS |
|
|
98 | # @USAGE: [ABI] |
|
|
99 | # @DESCRIPTION: |
|
|
100 | # Alias for 'get_abi_var LDFLAGS' |
|
|
101 | get_abi_LDFLAGS() { get_abi_var LDFLAGS "$@"; } |
|
|
102 | |
|
|
103 | # @FUNCTION: get_abi_CHOST |
|
|
104 | # @USAGE: [ABI] |
|
|
105 | # @DESCRIPTION: |
|
|
106 | # Alias for 'get_abi_var CHOST' |
|
|
107 | get_abi_CHOST() { get_abi_var CHOST "$@"; } |
|
|
108 | |
|
|
109 | # @FUNCTION: get_abi_CTARGET |
|
|
110 | # @USAGE: [ABI] |
|
|
111 | # @DESCRIPTION: |
|
|
112 | # Alias for 'get_abi_var CTARGET' |
|
|
113 | get_abi_CTARGET() { get_abi_var CTARGET "$@"; } |
|
|
114 | |
|
|
115 | # @FUNCTION: get_abi_FAKE_TARGETS |
|
|
116 | # @USAGE: [ABI] |
|
|
117 | # @DESCRIPTION: |
|
|
118 | # Alias for 'get_abi_var FAKE_TARGETS' |
|
|
119 | get_abi_FAKE_TARGETS() { get_abi_var FAKE_TARGETS "$@"; } |
|
|
120 | |
|
|
121 | # @FUNCTION: get_abi_LIBDIR |
|
|
122 | # @USAGE: [ABI] |
|
|
123 | # @DESCRIPTION: |
|
|
124 | # Alias for 'get_abi_var LIBDIR' |
| 182 | get_abi_LIBDIR() { get_abi_var LIBDIR ${@}; } |
125 | get_abi_LIBDIR() { get_abi_var LIBDIR "$@"; } |
| 183 | |
126 | |
|
|
127 | # @FUNCTION: get_install_abis |
|
|
128 | # @DESCRIPTION: |
| 184 | # Return a list of the ABIs we want to install for with |
129 | # Return a list of the ABIs we want to install for with |
| 185 | # the last one in the list being the default. |
130 | # the last one in the list being the default. |
| 186 | get_abi_order() { |
131 | get_install_abis() { |
| 187 | local order="" |
132 | local order="" |
| 188 | |
133 | |
| 189 | if [ -z "${MULTILIB_ABIS}" ]; then |
134 | if [[ -z ${MULTILIB_ABIS} ]] ; then |
| 190 | echo "NOMULTILIB" |
135 | echo "default" |
| 191 | return 1 |
136 | return 0 |
| 192 | fi |
137 | fi |
| 193 | |
138 | |
| 194 | if hasq multilib-pkg-force ${RESTRICT} || |
139 | if [[ ${EMULTILIB_PKG} == "true" ]] ; then |
| 195 | { hasq multilib-pkg ${FEATURES} && hasq multilib-pkg ${RESTRICT}; }; then |
|
|
| 196 | for x in ${MULTILIB_ABIS}; do |
140 | for x in ${MULTILIB_ABIS} ; do |
| 197 | if [ "${x}" != "${DEFAULT_ABI}" ]; then |
141 | if [[ ${x} != "${DEFAULT_ABI}" ]] ; then |
| 198 | hasq ${x} ${ABI_DENY} || ordera="${ordera} ${x}" |
142 | has ${x} ${ABI_DENY} || order="${order} ${x}" |
| 199 | fi |
143 | fi |
| 200 | done |
144 | done |
| 201 | hasq ${DEFAULT_ABI} ${ABI_DENY} || order="${ordera} ${DEFAULT_ABI}" |
145 | has ${DEFAULT_ABI} ${ABI_DENY} || order="${order} ${DEFAULT_ABI}" |
| 202 | |
146 | |
| 203 | if [ -n "${ABI_ALLOW}" ]; then |
147 | if [[ -n ${ABI_ALLOW} ]] ; then |
| 204 | local ordera="" |
148 | local ordera="" |
| 205 | for x in ${order}; do |
149 | for x in ${order} ; do |
| 206 | if hasq ${x} ${ABI_ALLOW}; then |
150 | if has ${x} ${ABI_ALLOW} ; then |
| 207 | ordera="${ordera} ${x}" |
151 | ordera="${ordera} ${x}" |
| 208 | fi |
152 | fi |
| 209 | done |
153 | done |
| 210 | order="${ordera}" |
154 | order=${ordera} |
| 211 | fi |
155 | fi |
| 212 | else |
156 | else |
| 213 | order="${DEFAULT_ABI}" |
157 | order=${DEFAULT_ABI} |
| 214 | fi |
158 | fi |
| 215 | |
159 | |
| 216 | if [ -z "${order}" ]; then |
160 | if [[ -z ${order} ]] ; then |
| 217 | die "The ABI list is empty. Are you using a proper multilib profile? Perhaps your USE flags or MULTILIB_ABIS are too restrictive for this package." |
161 | die "The ABI list is empty. Are you using a proper multilib profile? Perhaps your USE flags or MULTILIB_ABIS are too restrictive for this package." |
| 218 | fi |
162 | fi |
| 219 | |
163 | |
| 220 | echo ${order} |
164 | echo ${order} |
| 221 | return 0 |
165 | return 0 |
| 222 | } |
166 | } |
| 223 | |
167 | |
| 224 | # get_all_libdirs() |
168 | # @FUNCTION: get_all_abis |
|
|
169 | # @DESCRIPTION: |
|
|
170 | # Return a list of the ABIs supported by this profile. |
|
|
171 | # the last one in the list being the default. |
|
|
172 | get_all_abis() { |
|
|
173 | local order="" |
|
|
174 | |
|
|
175 | if [[ -z ${MULTILIB_ABIS} ]] ; then |
|
|
176 | echo "default" |
|
|
177 | return 0 |
|
|
178 | fi |
|
|
179 | |
|
|
180 | for x in ${MULTILIB_ABIS}; do |
|
|
181 | if [[ ${x} != ${DEFAULT_ABI} ]] ; then |
|
|
182 | order="${order:+${order} }${x}" |
|
|
183 | fi |
|
|
184 | done |
|
|
185 | order="${order:+${order} }${DEFAULT_ABI}" |
|
|
186 | |
|
|
187 | echo ${order} |
|
|
188 | return 0 |
|
|
189 | } |
|
|
190 | |
|
|
191 | # @FUNCTION: get_all_libdirs |
|
|
192 | # @DESCRIPTION: |
| 225 | # Returns a list of all the libdirs used by this profile. This includes |
193 | # Returns a list of all the libdirs used by this profile. This includes |
| 226 | # those that might not be touched by the current ebuild. |
194 | # those that might not be touched by the current ebuild and always includes |
|
|
195 | # "lib". |
| 227 | get_all_libdirs() { |
196 | get_all_libdirs() { |
| 228 | local libdirs="lib" |
197 | local libdirs |
| 229 | local abi |
198 | local abi |
| 230 | local dir |
199 | local dir |
| 231 | |
200 | |
| 232 | if has_multilib_profile; then |
|
|
| 233 | for abi in ${MULTILIB_ABIS}; do |
201 | for abi in ${MULTILIB_ABIS}; do |
| 234 | [ "$(get_abi_LIBDIR ${abi})" != "lib" ] && libdirs="${libdirs} $(get_abi_LIBDIR ${abi})" |
202 | libdirs+=" $(get_abi_LIBDIR ${abi})" |
| 235 | done |
203 | done |
| 236 | elif [ -n "${CONF_LIBDIR}" ]; then |
204 | [[ " ${libdirs} " != *" lib "* ]] && libdirs+=" lib" |
| 237 | for dir in ${CONF_LIBDIR} ${CONF_MULTILIBDIR:=lib32}; do |
|
|
| 238 | [ "${dir}" != "lib" ] && libdirs="${libdirs} ${dir}" |
|
|
| 239 | done |
|
|
| 240 | fi |
|
|
| 241 | |
205 | |
| 242 | echo "${libdirs}" |
206 | echo "${libdirs}" |
| 243 | } |
207 | } |
| 244 | |
208 | |
|
|
209 | # @FUNCTION: is_final_abi |
|
|
210 | # @DESCRIPTION: |
| 245 | # Return true if ${ABI} is the last ABI on our list (or if we're not |
211 | # Return true if ${ABI} is the last ABI on our list (or if we're not |
| 246 | # using the new multilib configuration. This can be used to determine |
212 | # using the new multilib configuration. This can be used to determine |
| 247 | # if we're in the last (or only) run through src_{unpack,compile,install} |
213 | # if we're in the last (or only) run through src_{unpack,compile,install} |
| 248 | is_final_abi() { |
214 | is_final_abi() { |
| 249 | ! has_multilib_profile && return 0 |
215 | has_multilib_profile || return 0 |
| 250 | local ALL_ABIS=$(get_abi_order) |
216 | set -- $(get_install_abis) |
| 251 | local LAST_ABI=${ALL_ABIS/* /} |
217 | local LAST_ABI=$# |
| 252 | [ "${LAST_ABI}" = "${ABI}" ] |
218 | [[ ${!LAST_ABI} == ${ABI} ]] |
| 253 | } |
219 | } |
| 254 | |
220 | |
|
|
221 | # @FUNCTION: number_abis |
|
|
222 | # @DESCRIPTION: |
| 255 | # echo the number of ABIs we will be installing for |
223 | # echo the number of ABIs we will be installing for |
| 256 | number_abis() { |
224 | number_abis() { |
| 257 | get_abi_order | wc -w |
225 | set -- `get_install_abis` |
|
|
226 | echo $# |
| 258 | } |
227 | } |
| 259 | |
228 | |
| 260 | # get_ml_incdir [<include dir> [<ABI>]] |
229 | # @FUNCTION: get_libname |
| 261 | # include dir defaults to /usr/include |
230 | # @USAGE: [version] |
| 262 | # ABI defaults to ${ABI} or ${DEFAULT_ABI} |
231 | # @DESCRIPTION: |
| 263 | get_ml_incdir() { |
232 | # Returns libname with proper suffix {.so,.dylib,.dll,etc} and optionally |
| 264 | local dir=/usr/include |
233 | # supplied version for the current platform identified by CHOST. |
| 265 | |
|
|
| 266 | if [[ ${#} -gt 0 ]]; then |
|
|
| 267 | incdir=${1} |
|
|
| 268 | shift |
|
|
| 269 | fi |
|
|
| 270 | |
|
|
| 271 | if [[ -z "${MULTILIB_ABIS}" ]]; then |
|
|
| 272 | echo ${incdir} |
|
|
| 273 | return 0 |
|
|
| 274 | fi |
|
|
| 275 | |
|
|
| 276 | local abi=${ABI:-${DEFAULT_ABI}} |
|
|
| 277 | if [[ ${#} -gt 0 ]]; then |
|
|
| 278 | abi=${1} |
|
|
| 279 | shift |
|
|
| 280 | fi |
|
|
| 281 | |
|
|
| 282 | if [[ -d "${dir}/gentoo-multilib/${abi}" ]]; then |
|
|
| 283 | echo ${dir}/gentoo-multilib/${abi} |
|
|
| 284 | else |
|
|
| 285 | echo ${dir} |
|
|
| 286 | fi |
|
|
| 287 | } |
|
|
| 288 | |
|
|
| 289 | # prep_ml_includes: |
|
|
| 290 | # |
|
|
| 291 | # Some includes (include/asm, glibc, etc) are ABI dependent. In this case, |
|
|
| 292 | # We can install them in different locations for each ABI and create a common |
|
|
| 293 | # header which includes the right one based on CDEFINE_${ABI}. If your |
|
|
| 294 | # package installs ABI-specific headers, just add 'prep_ml_includes' to the |
|
|
| 295 | # end of your src_install(). It takes a list of directories that include |
|
|
| 296 | # files are installed in (default is /usr/include if none are passed). |
|
|
| 297 | # |
234 | # |
| 298 | # Example: |
235 | # Example: |
| 299 | # src_install() { |
236 | # get_libname ${PV} |
| 300 | # ... |
237 | # Returns: .so.${PV} (ELF) || .${PV}.dylib (MACH) || ... |
| 301 | # prep_ml_includes /usr/qt/3/include |
238 | get_libname() { |
| 302 | # } |
|
|
| 303 | |
|
|
| 304 | prep_ml_includes() { |
|
|
| 305 | if [ $(number_abis) -gt 1 ]; then |
|
|
| 306 | local dir |
|
|
| 307 | local dirs |
|
|
| 308 | local base |
239 | local libname |
|
|
240 | local ver=$1 |
|
|
241 | case ${CHOST} in |
|
|
242 | *-cygwin|mingw*|*-mingw*) libname="dll";; |
|
|
243 | *-darwin*) libname="dylib";; |
|
|
244 | *-mint*) libname="irrelevant";; |
|
|
245 | hppa*-hpux*) libname="sl";; |
|
|
246 | *) libname="so";; |
|
|
247 | esac |
| 309 | |
248 | |
| 310 | if [ ${#} -eq 0 ]; then |
249 | if [[ -z $* ]] ; then |
| 311 | dirs="/usr/include" |
250 | echo ".${libname}" |
| 312 | else |
251 | else |
| 313 | dirs="${@}" |
252 | for ver in "$@" ; do |
| 314 | fi |
253 | case ${CHOST} in |
| 315 | |
254 | *-darwin*) echo ".${ver}.${libname}";; |
| 316 | for dir in ${dirs}; do |
255 | *-mint*) echo ".${libname}";; |
| 317 | base=${T}/gentoo-multilib/${dir}/gentoo-multilib |
256 | *) echo ".${libname}.${ver}";; |
| 318 | mkdir -p ${base} |
257 | esac |
| 319 | [ -d ${base}/${ABI} ] && rm -rf ${base}/${ABI} |
|
|
| 320 | mv ${D}/${dir} ${base}/${ABI} |
|
|
| 321 | done |
258 | done |
| 322 | |
|
|
| 323 | if is_final_abi; then |
|
|
| 324 | base=${T}/gentoo-multilib |
|
|
| 325 | pushd ${base} |
|
|
| 326 | find . | tar -c -T - -f - | tar -x --no-same-owner -f - -C ${D} |
|
|
| 327 | popd |
|
|
| 328 | |
|
|
| 329 | for dir in ${dirs}; do |
|
|
| 330 | local args=${dir} |
|
|
| 331 | local abi |
|
|
| 332 | for abi in $(get_abi_order); do |
|
|
| 333 | args="${args} $(get_abi_CDEFINE ${abi}):${dir}/gentoo-multilib/${abi}" |
|
|
| 334 | done |
|
|
| 335 | create_ml_includes ${args} |
|
|
| 336 | done |
|
|
| 337 | fi |
259 | fi |
| 338 | fi |
|
|
| 339 | } |
260 | } |
| 340 | |
261 | |
| 341 | # If you need more control than prep_ml_includes can offer (like linux-headers |
262 | # @FUNCTION: get_modname |
| 342 | # for the asm-* dirs, then use create_ml_includes. The firs argument is the |
263 | # @USAGE: |
| 343 | # common dir. The remaining args are of the form <symbol>:<dir> where |
264 | # @DESCRIPTION: |
| 344 | # <symbol> is what is put in the #ifdef for choosing that dir. |
265 | # Returns modulename with proper suffix {.so,.bundle,etc} for the current |
| 345 | # |
266 | # platform identified by CHOST. |
| 346 | # Ideas for this code came from debian's sparc-linux headers package. |
|
|
| 347 | # |
267 | # |
| 348 | # Example: |
268 | # Example: |
| 349 | # create_ml_includes /usr/include/asm __sparc__:/usr/include/asm-sparc __sparc64__:/usr/include/asm-sparc64 |
269 | # libfoo$(get_modname) |
| 350 | # create_ml_includes /usr/include/asm __i386__:/usr/include/asm-i386 __x86_64__:/usr/include/asm-x86_64 |
270 | # Returns: libfoo.so (ELF) || libfoo.bundle (MACH) || ... |
| 351 | create_ml_includes() { |
271 | get_modname() { |
| 352 | local dest="${1}" |
272 | local modname |
| 353 | shift |
273 | local ver=$1 |
| 354 | local mlinfo="${@}" |
274 | case ${CHOST} in |
| 355 | local basedirs=$(create_ml_includes-listdirs ${mlinfo}) |
275 | *-darwin*) modname="bundle";; |
|
|
276 | *) modname="so";; |
|
|
277 | esac |
| 356 | |
278 | |
| 357 | create_ml_includes-makedestdirs ${dest} ${basedirs} |
279 | echo ".${modname}" |
|
|
280 | } |
| 358 | |
281 | |
| 359 | local file |
282 | # This is for the toolchain to setup profile variables when pulling in |
| 360 | for file in $(create_ml_includes-allfiles ${basedirs}); do |
283 | # a crosscompiler (and thus they aren't set in the profile) |
| 361 | local name="$(echo $file | tr a-z A-Z | sed 's:[^A-Z]:_:g')" |
284 | multilib_env() { |
| 362 | { |
285 | local CTARGET=${1:-${CTARGET}} |
| 363 | echo "/* Common header file autogenerated by create_ml_includes in multilib.eclass */" |
|
|
| 364 | #echo "#ifndef __CREATE_ML_INCLUDES_STUB_${name}__" |
|
|
| 365 | #echo "#define __CREATE_ML_INCLUDES_STUB_${name}__" |
|
|
| 366 | #echo "" |
|
|
| 367 | |
286 | |
| 368 | local dir |
287 | case ${CTARGET} in |
| 369 | for dir in ${basedirs}; do |
288 | x86_64*) |
| 370 | if [ -f "${D}/${dir}/${file}" ]; then |
289 | export CFLAGS_x86=${CFLAGS_x86--m32} |
| 371 | echo "#ifdef $(create_ml_includes-sym_for_dir ${dir} ${mlinfo})" |
290 | export CHOST_x86=${CTARGET/x86_64/i686} |
| 372 | echo "#include \"$(create_ml_includes-relative_between ${dest}/$(dirname ${file}) ${dir}/${file})\"" |
291 | export CTARGET_x86=${CHOST_x86} |
| 373 | echo "#endif /* $(create_ml_includes-sym_for_dir ${dir} ${mlinfo}) */" |
292 | if [[ ${SYMLINK_LIB} == "yes" ]] ; then |
| 374 | echo "" |
293 | export LIBDIR_x86="lib32" |
|
|
294 | else |
|
|
295 | export LIBDIR_x86="lib" |
| 375 | fi |
296 | fi |
| 376 | done |
|
|
| 377 | |
297 | |
| 378 | #echo "#endif /* __CREATE_ML_INCLUDES_STUB_${name}__ */" |
298 | export CFLAGS_amd64=${CFLAGS_amd64--m64} |
| 379 | } > ${D}/${dest}/${file} |
299 | export CHOST_amd64=${CTARGET} |
| 380 | done |
300 | export CTARGET_amd64=${CHOST_amd64} |
| 381 | } |
301 | export LIBDIR_amd64="lib64" |
| 382 | |
302 | |
| 383 | # Helper function for create_ml_includes |
303 | export CFLAGS_x32=${CFLAGS_x32--mx32} |
| 384 | create_ml_includes-relative_between() { |
304 | export CHOST_x32=${CTARGET} |
| 385 | local src="$(create_ml_includes-tidy_path ${1})" |
305 | export CTARGET_x32=${CHOST_x32} |
| 386 | local dst="$(create_ml_includes-tidy_path ${2})" |
306 | export LIBDIR_x32="libx32" |
| 387 | |
307 | |
| 388 | src=(${src//\// }) |
308 | : ${MULTILIB_ABIS=amd64 x86} |
| 389 | dst=(${dst//\// }) |
309 | : ${DEFAULT_ABI=amd64} |
|
|
310 | ;; |
|
|
311 | mips64*) |
|
|
312 | export CFLAGS_o32=${CFLAGS_o32--mabi=32} |
|
|
313 | export CHOST_o32=${CTARGET/mips64/mips} |
|
|
314 | export CTARGET_o32=${CHOST_o32} |
|
|
315 | export LIBDIR_o32="lib" |
| 390 | |
316 | |
| 391 | local i |
317 | export CFLAGS_n32=${CFLAGS_n32--mabi=n32} |
| 392 | for ((i=0; i<${#src[*]}; i++)); do |
318 | export CHOST_n32=${CTARGET} |
| 393 | [ "${dst[i]}" != "${src[i]}" ] && break |
319 | export CTARGET_n32=${CHOST_n32} |
| 394 | done |
320 | export LIBDIR_n32="lib32" |
| 395 | |
321 | |
| 396 | local common=$i |
322 | export CFLAGS_n64=${CFLAGS_n64--mabi=64} |
|
|
323 | export CHOST_n64=${CTARGET} |
|
|
324 | export CTARGET_n64=${CHOST_n64} |
|
|
325 | export LIBDIR_n64="lib64" |
| 397 | |
326 | |
| 398 | for ((i=${#src[*]}; i>common; i--)); do |
327 | : ${MULTILIB_ABIS=n64 n32 o32} |
| 399 | echo -n ../ |
328 | : ${DEFAULT_ABI=n32} |
| 400 | done |
329 | ;; |
|
|
330 | powerpc64*) |
|
|
331 | export CFLAGS_ppc=${CFLAGS_ppc--m32} |
|
|
332 | export CHOST_ppc=${CTARGET/powerpc64/powerpc} |
|
|
333 | export CTARGET_ppc=${CHOST_ppc} |
|
|
334 | export LIBDIR_ppc="lib" |
| 401 | |
335 | |
| 402 | for ((i=common; i<${#dst[*]}-1; i++)); do |
336 | export CFLAGS_ppc64=${CFLAGS_ppc64--m64} |
| 403 | echo -n ${dst[i]}/ |
337 | export CHOST_ppc64=${CTARGET} |
| 404 | done |
338 | export CTARGET_ppc64=${CHOST_ppc64} |
|
|
339 | export LIBDIR_ppc64="lib64" |
| 405 | |
340 | |
| 406 | echo -n ${dst[i]} |
341 | : ${MULTILIB_ABIS=ppc64 ppc} |
| 407 | } |
342 | : ${DEFAULT_ABI=ppc64} |
|
|
343 | ;; |
|
|
344 | s390x*) |
|
|
345 | export CFLAGS_s390=${CFLAGS_s390--m31} # the 31 is not a typo |
|
|
346 | export CHOST_s390=${CTARGET/s390x/s390} |
|
|
347 | export CTARGET_s390=${CHOST_s390} |
|
|
348 | export LIBDIR_s390="lib" |
| 408 | |
349 | |
| 409 | # Helper function for create_ml_includes |
350 | export CFLAGS_s390x=${CFLAGS_s390x--m64} |
| 410 | create_ml_includes-tidy_path() { |
351 | export CHOST_s390x=${CTARGET} |
| 411 | local removed="${1}" |
352 | export CTARGET_s390x=${CHOST_s390x} |
|
|
353 | export LIBDIR_s390x="lib64" |
| 412 | |
354 | |
| 413 | if [ -n "${removed}" ]; then |
355 | : ${MULTILIB_ABIS=s390x s390} |
| 414 | # Remove multiple slashes |
356 | : ${DEFAULT_ABI=s390x} |
| 415 | while [ "${removed}" != "${removed/\/\//\/}" ]; do |
357 | ;; |
| 416 | removed=${removed/\/\//\/} |
358 | sparc*) |
|
|
359 | export CFLAGS_sparc32=${CFLAGS_sparc32} |
|
|
360 | export CHOST_sparc32=${CTARGET/sparc64/sparc} |
|
|
361 | export CTARGET_sparc32=${CHOST_sparc32} |
|
|
362 | export LIBDIR_sparc32="lib" |
|
|
363 | |
|
|
364 | export CFLAGS_sparc64=${CFLAGS_sparc64--m64} |
|
|
365 | export CHOST_sparc64=${CTARGET} |
|
|
366 | export CTARGET_sparc64=${CHOST_sparc64} |
|
|
367 | export LIBDIR_sparc64="lib64" |
|
|
368 | |
|
|
369 | : ${MULTILIB_ABIS=sparc64 sparc32} |
|
|
370 | : ${DEFAULT_ABI=sparc64} |
|
|
371 | ;; |
|
|
372 | *) |
|
|
373 | : ${MULTILIB_ABIS=default} |
|
|
374 | : ${DEFAULT_ABI=default} |
|
|
375 | ;; |
|
|
376 | esac |
|
|
377 | |
|
|
378 | export MULTILIB_ABIS DEFAULT_ABI |
|
|
379 | } |
|
|
380 | |
|
|
381 | # @FUNCTION: multilib_toolchain_setup |
|
|
382 | # @DESCRIPTION: |
|
|
383 | # Hide multilib details here for packages which are forced to be compiled for a |
|
|
384 | # specific ABI when run on another ABI (like x86-specific packages on amd64) |
|
|
385 | multilib_toolchain_setup() { |
|
|
386 | local v vv |
|
|
387 | |
|
|
388 | export ABI=$1 |
|
|
389 | |
|
|
390 | # First restore any saved state we have laying around. |
|
|
391 | if [[ ${__DEFAULT_ABI_SAVED} == "true" ]] ; then |
|
|
392 | for v in CHOST CBUILD AS CC CXX LD ; do |
|
|
393 | vv="__abi_saved_${v}" |
|
|
394 | export ${v}="${!vv}" |
|
|
395 | unset ${vv} |
| 417 | done |
396 | done |
|
|
397 | unset __DEFAULT_ABI_SAVED |
|
|
398 | fi |
| 418 | |
399 | |
| 419 | # Remove . directories |
400 | # We want to avoid the behind-the-back magic of gcc-config as it |
| 420 | while [ "${removed}" != "${removed//\/.\//\/}" ]; do |
401 | # screws up ccache and distcc. See #196243 for more info. |
| 421 | removed=${removed//\/.\//\/} |
402 | if [[ ${ABI} != ${DEFAULT_ABI} ]] ; then |
|
|
403 | # Back that multilib-ass up so we can restore it later |
|
|
404 | for v in CHOST CBUILD AS CC CXX LD ; do |
|
|
405 | export __abi_saved_${v}="${!v}" |
| 422 | done |
406 | done |
| 423 | [ "${removed##*/}" = "." ] && removed=${removed%/*} |
407 | export __DEFAULT_ABI_SAVED="true" |
| 424 | |
408 | |
| 425 | # Removed .. directories |
409 | # Set the CHOST native first so that we pick up the native |
| 426 | while [ "${removed}" != "${removed//\/..\/}" ]; do |
410 | # toolchain and not a cross-compiler by accident #202811. |
| 427 | local p1="${removed%%\/..\/*}" |
411 | export CHOST=$(get_abi_CHOST ${DEFAULT_ABI}) |
| 428 | local p2="${removed#*\/..\/}" |
412 | export AS="$(tc-getAS) $(get_abi_ASFLAGS)" |
| 429 | |
413 | export CC="$(tc-getCC) $(get_abi_CFLAGS)" |
| 430 | removed="${p1%\/*}/${p2}" |
414 | export CXX="$(tc-getCXX) $(get_abi_CFLAGS)" |
| 431 | done |
415 | export LD="$(tc-getLD) $(get_abi_LDFLAGS)" |
| 432 | |
416 | export CHOST=$(get_abi_CHOST $1) |
| 433 | # Remove trailing .. |
417 | export CBUILD=$(get_abi_CHOST $1) |
| 434 | [ "${removed##*/}" = ".." ] && removed=${removed%/*/*} |
|
|
| 435 | |
|
|
| 436 | # Remove trailing / |
|
|
| 437 | [ "${removed##*/}" = "" ] && removed=${removed%/*} |
|
|
| 438 | |
|
|
| 439 | echo ${removed} |
|
|
| 440 | fi |
|
|
| 441 | } |
|
|
| 442 | |
|
|
| 443 | # Helper function for create_ml_includes |
|
|
| 444 | create_ml_includes-listdirs() { |
|
|
| 445 | local dirs |
|
|
| 446 | local data |
|
|
| 447 | for data in ${@}; do |
|
|
| 448 | dirs="${dirs} ${data/*:/}" |
|
|
| 449 | done |
|
|
| 450 | echo ${dirs:1} |
|
|
| 451 | } |
|
|
| 452 | |
|
|
| 453 | # Helper function for create_ml_includes |
|
|
| 454 | create_ml_includes-makedestdirs() { |
|
|
| 455 | local dest=${1} |
|
|
| 456 | shift |
|
|
| 457 | local basedirs=${@} |
|
|
| 458 | |
|
|
| 459 | dodir ${dest} |
|
|
| 460 | |
|
|
| 461 | local basedir |
|
|
| 462 | for basedir in ${basedirs}; do |
|
|
| 463 | local dir |
|
|
| 464 | for dir in $(find ${D}/${basedir} -type d); do |
|
|
| 465 | dodir ${dest}/${dir/${D}\/${basedir}/} |
|
|
| 466 | done |
|
|
| 467 | done |
|
|
| 468 | } |
|
|
| 469 | |
|
|
| 470 | # Helper function for create_ml_includes |
|
|
| 471 | create_ml_includes-allfiles() { |
|
|
| 472 | local basedirs=${@} |
|
|
| 473 | |
|
|
| 474 | local basedir |
|
|
| 475 | for basedir in ${basedirs}; do |
|
|
| 476 | local file |
|
|
| 477 | for file in $(find ${D}/${basedir} -type f); do |
|
|
| 478 | echo ${file/${D}\/${basedir}\//} |
|
|
| 479 | done |
|
|
| 480 | done | sort | uniq |
|
|
| 481 | } |
|
|
| 482 | |
|
|
| 483 | # Helper function for create_ml_includes |
|
|
| 484 | create_ml_includes-sym_for_dir() { |
|
|
| 485 | local dir="${1}" |
|
|
| 486 | shift |
|
|
| 487 | local data |
|
|
| 488 | for data in ${@}; do |
|
|
| 489 | if [ "${dir}" = "${data/*:/}" ]; then |
|
|
| 490 | echo ${data/:*/} |
|
|
| 491 | return 0 |
|
|
| 492 | fi |
418 | fi |
| 493 | done |
|
|
| 494 | echo "Shouldn't be here -- create_ml_includes-sym_for_dir ${1} ${@}" |
|
|
| 495 | # exit because we'll likely be called from a subshell |
|
|
| 496 | exit 1 |
|
|
| 497 | } |
419 | } |