| 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.9 2005/01/15 13:44:31 eradicator Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/multilib.eclass,v 1.60 2007/03/27 01:46:50 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 | ECLASS=multilib |
10 | ___ECLASS_RECUR_MULTILIB="yes" |
| 11 | INHERITED="$INHERITED $ECLASS" |
11 | [[ -z ${___ECLASS_RECUR_TOOLCHAIN_FUNCS} ]] && inherit toolchain-funcs |
| 12 | |
12 | |
| 13 | DESCRIPTION="Based on the ${ECLASS} eclass" |
13 | DESCRIPTION="Based on the ${ECLASS} eclass" |
|
|
14 | |
|
|
15 | # has_multilib_profile: |
|
|
16 | # 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 |
|
|
18 | # 'use multilib || has_multilib_profile' until all profiles utilizing the |
|
|
19 | # 'multilib' use flag are removed from portage |
|
|
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_install_abis: |
|
|
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_abis: |
|
|
33 | # Return a list of the ABIs supported by this profile. |
|
|
34 | # the last one in the list being the default. |
|
|
35 | |
|
|
36 | # get_all_libdirs: |
|
|
37 | # Returns a list of all the libdirs used by this profile. This includes |
|
|
38 | # those that might not be touched by the current ebuild and always includes |
|
|
39 | # "lib". |
|
|
40 | |
|
|
41 | # get_libdir: |
|
|
42 | # Returns the libdir for the selected ABI. This is backwards compatible |
|
|
43 | # and simply calls get_abi_LIBDIR() on newer profiles. You should use this |
|
|
44 | # to determine where to install shared objects (ex: /usr/$(get_libdir)) |
|
|
45 | |
|
|
46 | # get_abi_var <VAR> [<ABI>]: |
|
|
47 | # returns the value of ${<VAR>_<ABI>} which should be set in make.defaults |
|
|
48 | # |
|
|
49 | # get_abi_CFLAGS: |
|
|
50 | # get_abi_CDEFINE: |
|
|
51 | # get_abi_LIBDIR: |
|
|
52 | # Aliases for 'get_abi_var CFLAGS', etc. |
|
|
53 | |
|
|
54 | # get_ml_incdir [<include dir> [<ABI>]] |
|
|
55 | # include dir defaults to /usr/include |
|
|
56 | # ABI defaults to ${ABI} or ${DEFAULT_ABI} |
|
|
57 | # |
|
|
58 | # If a multilib include dir is associated with the passed include dir, then |
|
|
59 | # we return it, otherwise, we just echo back the include dir. This is |
|
|
60 | # neccessary when a built script greps header files rather than testing them |
|
|
61 | # via #include (like perl) to figure out features. |
|
|
62 | |
|
|
63 | # prep_ml_includes: |
|
|
64 | # Some includes (include/asm, glibc, etc) are ABI dependent. In this case, |
|
|
65 | # We can install them in different locations for each ABI and create a common |
|
|
66 | # header which includes the right one based on CDEFINE_${ABI}. If your |
|
|
67 | # package installs ABI-specific headers, just add 'prep_ml_includes' to the |
|
|
68 | # end of your src_install(). It takes a list of directories that include |
|
|
69 | # files are installed in (default is /usr/include if none are passed). |
|
|
70 | # |
|
|
71 | # Example: |
|
|
72 | # src_install() { |
|
|
73 | # ... |
|
|
74 | # prep_ml_includes /usr/qt/3/include |
|
|
75 | # } |
|
|
76 | |
|
|
77 | # create_ml_includes <include dir> <symbol 1>:<dir 1> [<symbol 2>:<dir 2> ...] |
|
|
78 | # If you need more control than prep_ml_includes can offer (like linux-headers |
|
|
79 | # for the asm-* dirs, then use create_ml_includes. The firs argument is the |
|
|
80 | # common dir. The remaining args are of the form <symbol>:<dir> where |
|
|
81 | # <symbol> is what is put in the #ifdef for choosing that dir. |
|
|
82 | # |
|
|
83 | # Ideas for this code came from debian's sparc-linux headers package. |
|
|
84 | # |
|
|
85 | # Example: |
|
|
86 | # create_ml_includes /usr/include/asm __sparc__:/usr/include/asm-sparc __sparc64__:/usr/include/asm-sparc64 |
|
|
87 | # create_ml_includes /usr/include/asm __i386__:/usr/include/asm-i386 __x86_64__:/usr/include/asm-x86_64 |
|
|
88 | |
|
|
89 | # get_libname [version] |
|
|
90 | # returns libname with proper suffix {.so,.dylib} and optionally supplied version |
|
|
91 | # for ELF/MACH-O shared objects |
|
|
92 | # |
|
|
93 | # Example: |
|
|
94 | # get_libname libfoo ${PV} |
|
|
95 | # Returns: libfoo.so.${PV} (ELF) || libfoo.${PV}.dylib (MACH) |
|
|
96 | |
|
|
97 | ### END DOCUMENTATION ### |
|
|
98 | |
|
|
99 | # Defaults: |
|
|
100 | export MULTILIB_ABIS=${MULTILIB_ABIS:-"default"} |
|
|
101 | export DEFAULT_ABI=${DEFAULT_ABI:-"default"} |
|
|
102 | export CFLAGS_default |
|
|
103 | export LDFLAGS_default |
|
|
104 | export CHOST_default=${CHOST_default:-${CHOST}} |
|
|
105 | export CTARGET_default=${CTARGET_default:-${CTARGET:-${CHOST_default}}} |
|
|
106 | export LIBDIR_default=${CONF_LIBDIR:-"lib"} |
|
|
107 | export CDEFINE_default="__unix__" |
|
|
108 | export KERNEL_ABI=${KERNEL_ABI:-${DEFAULT_ABI}} |
|
|
109 | |
|
|
110 | # has_multilib_profile() |
|
|
111 | has_multilib_profile() { |
|
|
112 | [ -n "${MULTILIB_ABIS}" -a "${MULTILIB_ABIS}" != "${MULTILIB_ABIS/ /}" ] |
|
|
113 | } |
| 14 | |
114 | |
| 15 | # This function simply returns the desired lib directory. With portage |
115 | # This function simply returns the desired lib directory. With portage |
| 16 | # 2.0.51, we now have support for installing libraries to lib32/lib64 |
116 | # 2.0.51, we now have support for installing libraries to lib32/lib64 |
| 17 | # to accomidate the needs of multilib systems. It's no longer a good idea |
117 | # to accomidate the needs of multilib systems. It's no longer a good idea |
| 18 | # to assume all libraries will end up in lib. Replace any (sane) instances |
118 | # to assume all libraries will end up in lib. Replace any (sane) instances |
| … | |
… | |
| 24 | # Added support for ${ABI} and ${DEFAULT_ABI}. If they're both not set, |
124 | # Added support for ${ABI} and ${DEFAULT_ABI}. If they're both not set, |
| 25 | # fall back on old behavior. Any profile that has these set should also |
125 | # fall back on old behavior. Any profile that has these set should also |
| 26 | # depend on a newer version of portage (not yet released) which uses these |
126 | # depend on a newer version of portage (not yet released) which uses these |
| 27 | # over CONF_LIBDIR in econf, dolib, etc... |
127 | # over CONF_LIBDIR in econf, dolib, etc... |
| 28 | get_libdir() { |
128 | get_libdir() { |
| 29 | LIBDIR_TEST=$(type econf) |
129 | local CONF_LIBDIR |
| 30 | if [ ! -z "${CONF_LIBDIR_OVERRIDE}" ] ; then |
130 | if [ -n "${CONF_LIBDIR_OVERRIDE}" ] ; then |
| 31 | # if there is an override, we want to use that... always. |
131 | # if there is an override, we want to use that... always. |
| 32 | CONF_LIBDIR="${CONF_LIBDIR_OVERRIDE}" |
132 | echo ${CONF_LIBDIR_OVERRIDE} |
| 33 | elif [ -n "$(get_abi_LIBDIR)" ]; then |
133 | else |
| 34 | CONF_LIBDIR="$(get_abi_LIBDIR)" |
134 | get_abi_LIBDIR |
| 35 | elif [ "${LIBDIR_TEST/CONF_LIBDIR}" == "${LIBDIR_TEST}" ]; then # we don't have CONF_LIBDIR support |
|
|
| 36 | # will be <portage-2.0.51_pre20 |
|
|
| 37 | CONF_LIBDIR="lib" |
|
|
| 38 | fi |
135 | fi |
| 39 | # and of course, default to lib if CONF_LIBDIR isnt set |
|
|
| 40 | echo ${CONF_LIBDIR:=lib} |
|
|
| 41 | unset LIBDIR_TEST |
|
|
| 42 | } |
136 | } |
| 43 | |
137 | |
| 44 | get_multilibdir() { |
138 | get_multilibdir() { |
| 45 | if [ -n "$(get_abi_LIBDIR)" ]; then |
139 | if has_multilib_profile; then |
| 46 | 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" |
140 | 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" |
| 47 | exit 1 |
141 | exit 1 |
| 48 | fi |
142 | fi |
| 49 | echo ${CONF_MULTILIBDIR:=lib32} |
143 | echo ${CONF_MULTILIBDIR:=lib32} |
| 50 | } |
144 | } |
| … | |
… | |
| 59 | # |
153 | # |
| 60 | # get_libdir_override lib64 |
154 | # get_libdir_override lib64 |
| 61 | # |
155 | # |
| 62 | # Travis Tilley <lv@gentoo.org> (31 Aug 2004) |
156 | # Travis Tilley <lv@gentoo.org> (31 Aug 2004) |
| 63 | get_libdir_override() { |
157 | get_libdir_override() { |
| 64 | if [ -n "$(get_abi_LIBDIR)" ]; then |
158 | if has_multilib_profile; then |
| 65 | 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" |
159 | 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" |
| 66 | exit 1 |
160 | exit 1 |
| 67 | fi |
161 | fi |
| 68 | CONF_LIBDIR="$1" |
162 | CONF_LIBDIR="$1" |
| 69 | CONF_LIBDIR_OVERRIDE="$1" |
163 | CONF_LIBDIR_OVERRIDE="$1" |
|
|
164 | LIBDIR_default="$1" |
| 70 | } |
165 | } |
| 71 | |
166 | |
| 72 | # get_abi_var <VAR> [<ABI>] |
167 | # get_abi_var <VAR> [<ABI>] |
| 73 | # returns the value of ${<VAR>_<ABI>} which should be set in make.defaults |
168 | # returns the value of ${<VAR>_<ABI>} which should be set in make.defaults |
| 74 | # |
169 | # |
| … | |
… | |
| 82 | # If <ABI> is not specified and ${ABI} is not defined, ${DEFAULT_ABI} is used. |
177 | # If <ABI> is not specified and ${ABI} is not defined, ${DEFAULT_ABI} is used. |
| 83 | # If <ABI> is not specified and ${ABI} and ${DEFAULT_ABI} are not defined, we return an empty string. |
178 | # If <ABI> is not specified and ${ABI} and ${DEFAULT_ABI} are not defined, we return an empty string. |
| 84 | # |
179 | # |
| 85 | # Jeremy Huddleston <eradicator@gentoo.org> |
180 | # Jeremy Huddleston <eradicator@gentoo.org> |
| 86 | get_abi_var() { |
181 | get_abi_var() { |
| 87 | local flag=${1} |
182 | local flag=$1 |
| 88 | local abi |
183 | local abi |
| 89 | if [ $# -gt 1 ]; then |
184 | if [ $# -gt 1 ]; then |
| 90 | abi=${2} |
185 | abi=${2} |
| 91 | elif [ -n "${ABI}" ]; then |
186 | elif [ -n "${ABI}" ]; then |
| 92 | abi=${ABI} |
187 | abi=${ABI} |
| 93 | elif [ -n "${DEFAULT_ABI}" ]; then |
188 | elif [ -n "${DEFAULT_ABI}" ]; then |
| 94 | abi=${DEFAULT_ABI} |
189 | abi=${DEFAULT_ABI} |
| 95 | else |
190 | else |
| 96 | return 1 |
191 | abi="default" |
| 97 | fi |
192 | fi |
| 98 | |
193 | |
| 99 | local var="${flag}_${abi}" |
194 | local var="${flag}_${abi}" |
| 100 | echo ${!var} |
195 | echo ${!var} |
| 101 | } |
196 | } |
| 102 | |
197 | |
| 103 | get_abi_CFLAGS() { get_abi_var CFLAGS ${@}; } |
198 | get_abi_CFLAGS() { get_abi_var CFLAGS "$@"; } |
|
|
199 | get_abi_ASFLAGS() { get_abi_var ASFLAGS "$@"; } |
|
|
200 | get_abi_LDFLAGS() { get_abi_var LDFLAGS "$@"; } |
|
|
201 | get_abi_CHOST() { get_abi_var CHOST "$@"; } |
|
|
202 | get_abi_CTARGET() { get_abi_var CTARGET "$@"; } |
|
|
203 | get_abi_FAKE_TARGETS() { get_abi_var FAKE_TARGETS "$@"; } |
| 104 | get_abi_CDEFINE() { get_abi_var CDEFINE ${@}; } |
204 | get_abi_CDEFINE() { get_abi_var CDEFINE "$@"; } |
| 105 | get_abi_LIBDIR() { get_abi_var LIBDIR ${@}; } |
205 | get_abi_LIBDIR() { get_abi_var LIBDIR "$@"; } |
| 106 | |
206 | |
| 107 | # Return a list of the ABIs we want to install for with |
207 | # Return a list of the ABIs we want to install for with |
| 108 | # the last one in the list being the default. |
208 | # the last one in the list being the default. |
| 109 | get_abi_order() { |
209 | get_install_abis() { |
| 110 | local order="" |
210 | local order="" |
| 111 | |
211 | |
| 112 | if [ -z "${MULTILIB_ABIS}" ]; then |
212 | if [[ -z ${MULTILIB_ABIS} ]] ; then |
| 113 | echo "NOMULTILIB" |
213 | echo "default" |
| 114 | return 1 |
214 | return 0 |
| 115 | fi |
215 | fi |
| 116 | |
216 | |
| 117 | if hasq multilib-pkg-force ${RESTRICT} || |
217 | if hasq multilib-pkg-force ${RESTRICT} || |
| 118 | { hasq multilib-pkg ${FEATURES} && hasq multilib-pkg ${RESTRICT}; }; then |
218 | { hasq multilib-pkg ${FEATURES} && hasq multilib-pkg ${RESTRICT}; }; then |
| 119 | for x in ${MULTILIB_ABIS}; do |
219 | for x in ${MULTILIB_ABIS} ; do |
| 120 | if [ "${x}" != "${DEFAULT_ABI}" ]; then |
220 | if [[ ${x} != "${DEFAULT_ABI}" ]] ; then |
| 121 | hasq ${x} ${ABI_DENY} || ordera="${ordera} ${x}" |
221 | hasq ${x} ${ABI_DENY} || ordera="${ordera} ${x}" |
| 122 | fi |
222 | fi |
| 123 | done |
223 | done |
| 124 | hasq ${DEFAULT_ABI} ${ABI_DENY} || order="${ordera} ${DEFAULT_ABI}" |
224 | hasq ${DEFAULT_ABI} ${ABI_DENY} || order="${ordera} ${DEFAULT_ABI}" |
| 125 | |
225 | |
| 126 | if [ -n "${ABI_ALLOW}" ]; then |
226 | if [[ -n ${ABI_ALLOW} ]] ; then |
| 127 | local ordera="" |
227 | local ordera="" |
| 128 | for x in ${order}; do |
228 | for x in ${order} ; do |
| 129 | if hasq ${x} ${ABI_ALLOW}; then |
229 | if hasq ${x} ${ABI_ALLOW} ; then |
| 130 | ordera="${ordera} ${x}" |
230 | ordera="${ordera} ${x}" |
| 131 | fi |
231 | fi |
| 132 | done |
232 | done |
| 133 | order="${ordera}" |
233 | order=${ordera} |
| 134 | fi |
234 | fi |
| 135 | else |
235 | else |
| 136 | order="${DEFAULT_ABI}" |
236 | order=${DEFAULT_ABI} |
| 137 | fi |
237 | fi |
| 138 | |
238 | |
| 139 | if [ -z "${order}" ]; then |
239 | if [[ -z ${order} ]] ; then |
| 140 | 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." |
240 | 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." |
| 141 | fi |
241 | fi |
| 142 | |
242 | |
| 143 | echo ${order} |
243 | echo ${order} |
| 144 | return 0 |
244 | return 0 |
| 145 | } |
245 | } |
| 146 | |
246 | |
|
|
247 | # Return a list of the ABIs supported by this profile. |
|
|
248 | # the last one in the list being the default. |
|
|
249 | get_all_abis() { |
|
|
250 | local order="" |
|
|
251 | |
|
|
252 | if [[ -z ${MULTILIB_ABIS} ]] ; then |
|
|
253 | echo "default" |
|
|
254 | return 0 |
|
|
255 | fi |
|
|
256 | |
|
|
257 | for x in ${MULTILIB_ABIS}; do |
|
|
258 | if [[ ${x} != ${DEFAULT_ABI} ]] ; then |
|
|
259 | order="${order:+${order} }${x}" |
|
|
260 | fi |
|
|
261 | done |
|
|
262 | order="${order:+${order} }${DEFAULT_ABI}" |
|
|
263 | |
|
|
264 | echo ${order} |
|
|
265 | return 0 |
|
|
266 | } |
|
|
267 | |
| 147 | # get_all_libdir() |
268 | # get_all_libdirs() |
| 148 | # Returns a list of all the libdirs used by this profile. This includes |
269 | # Returns a list of all the libdirs used by this profile. This includes |
| 149 | # those that might not be touched by the current ebuild. |
270 | # those that might not be touched by the current ebuild. |
| 150 | get_all_libdirs() { |
271 | get_all_libdirs() { |
| 151 | local libdirs="lib" |
272 | local libdirs="lib" |
| 152 | local abi |
273 | local abi |
| 153 | local dir |
274 | local dir |
| 154 | |
275 | |
| 155 | if [ -n "${MULTILIB_ABIS}" ]; then |
|
|
| 156 | for abi in ${MULTILIB_ABIS}; do |
276 | for abi in ${MULTILIB_ABIS}; do |
| 157 | [ "$(get_abi_LIBDIR ${abi})" != "lib" ] && libdirs="${libdirs} $(get_abi_LIBDIR ${abi})" |
277 | [ "$(get_abi_LIBDIR ${abi})" != "lib" ] && libdirs="${libdirs} $(get_abi_LIBDIR ${abi})" |
| 158 | done |
278 | done |
| 159 | elif [ -n "${CONF_LIBDIR}" ]; then |
|
|
| 160 | for dir in ${CONF_LIBDIR} ${CONF_MULTILIBDIR:=lib32}; do |
|
|
| 161 | [ "${dir}" != "lib" ] && libdirs="${libdirs} ${dir}" |
|
|
| 162 | done |
|
|
| 163 | fi |
|
|
| 164 | |
279 | |
| 165 | echo "${libdirs}" |
280 | echo "${libdirs}" |
| 166 | } |
281 | } |
| 167 | |
282 | |
| 168 | # Return true if ${ABI} is the last ABI on our list (or if we're not |
283 | # Return true if ${ABI} is the last ABI on our list (or if we're not |
| 169 | # using the new multilib configuration. This can be used to determine |
284 | # using the new multilib configuration. This can be used to determine |
| 170 | # if we're in the last (or only) run through src_{unpack,compile,install} |
285 | # if we're in the last (or only) run through src_{unpack,compile,install} |
| 171 | is_final_abi() { |
286 | is_final_abi() { |
| 172 | [ -z "${ABI}" ] && return 0 |
287 | has_multilib_profile || return 0 |
| 173 | local ALL_ABIS=$(get_abi_order) |
288 | local ALL_ABIS=$(get_install_abis) |
| 174 | local LAST_ABI=${ALL_ABIS/* /} |
289 | local LAST_ABI=${ALL_ABIS/* /} |
| 175 | [ "${LAST_ABI}" = "${ABI}" ] |
290 | [[ ${LAST_ABI} == ${ABI} ]] |
| 176 | } |
291 | } |
| 177 | |
292 | |
| 178 | # echo the number of ABIs we will be installing for |
293 | # echo the number of ABIs we will be installing for |
| 179 | number_abis() { |
294 | number_abis() { |
| 180 | get_abi_order | wc -w |
295 | get_install_abis | wc -w |
|
|
296 | } |
|
|
297 | |
|
|
298 | # get_ml_incdir [<include dir> [<ABI>]] |
|
|
299 | # include dir defaults to /usr/include |
|
|
300 | # ABI defaults to ${ABI} or ${DEFAULT_ABI} |
|
|
301 | get_ml_incdir() { |
|
|
302 | local dir=/usr/include |
|
|
303 | |
|
|
304 | if [[ $# -gt 0 ]]; then |
|
|
305 | incdir=$1 |
|
|
306 | shift |
|
|
307 | fi |
|
|
308 | |
|
|
309 | if [[ -z "${MULTILIB_ABIS}" ]]; then |
|
|
310 | echo ${incdir} |
|
|
311 | return 0 |
|
|
312 | fi |
|
|
313 | |
|
|
314 | local abi=${ABI-${DEFAULT_ABI}} |
|
|
315 | if [[ $# -gt 0 ]]; then |
|
|
316 | abi=$1 |
|
|
317 | shift |
|
|
318 | fi |
|
|
319 | |
|
|
320 | if [[ -d "${dir}/gentoo-multilib/${abi}" ]]; then |
|
|
321 | echo ${dir}/gentoo-multilib/${abi} |
|
|
322 | else |
|
|
323 | echo ${dir} |
|
|
324 | fi |
| 181 | } |
325 | } |
| 182 | |
326 | |
| 183 | # prep_ml_includes: |
327 | # prep_ml_includes: |
| 184 | # |
328 | # |
| 185 | # Some includes (include/asm, glibc, etc) are ABI dependent. In this case, |
329 | # Some includes (include/asm, glibc, etc) are ABI dependent. In this case, |
| … | |
… | |
| 194 | # ... |
338 | # ... |
| 195 | # prep_ml_includes /usr/qt/3/include |
339 | # prep_ml_includes /usr/qt/3/include |
| 196 | # } |
340 | # } |
| 197 | |
341 | |
| 198 | prep_ml_includes() { |
342 | prep_ml_includes() { |
| 199 | local dirs |
|
|
| 200 | if [ ${#} -eq 0 ]; then |
|
|
| 201 | dirs="/usr/include" |
|
|
| 202 | else |
|
|
| 203 | dirs="${@}" |
|
|
| 204 | fi |
|
|
| 205 | |
|
|
| 206 | if [ $(number_abis) -gt 1 ]; then |
343 | if [[ $(number_abis) -gt 1 ]] ; then |
| 207 | local dir |
344 | local dir |
|
|
345 | local dirs |
|
|
346 | local base |
|
|
347 | |
|
|
348 | if [[ $# -eq 0 ]] ; then |
|
|
349 | dirs=/usr/include |
|
|
350 | else |
|
|
351 | dirs="$@" |
|
|
352 | fi |
|
|
353 | |
| 208 | for dir in ${dirs}; do |
354 | for dir in ${dirs} ; do |
|
|
355 | base=${T}/gentoo-multilib/${dir}/gentoo-multilib |
|
|
356 | mkdir -p "${base}" |
|
|
357 | [[ -d ${base}/${ABI} ]] && rm -rf "${base}/${ABI}" |
| 209 | mv ${D}/${dir} ${D}/${dir}.${ABI} |
358 | mv "${D}/${dir}" "${base}/${ABI}" |
| 210 | done |
359 | done |
| 211 | |
360 | |
| 212 | if is_final_abi; then |
361 | if is_final_abi; then |
|
|
362 | base=${T}/gentoo-multilib |
|
|
363 | pushd "${base}" |
|
|
364 | find . | tar -c -T - -f - | tar -x --no-same-owner -f - -C ${D} |
|
|
365 | popd |
|
|
366 | |
|
|
367 | # This 'set' stuff is required by mips profiles to properly pass |
|
|
368 | # CDEFINE's (which have spaces) to sub-functions |
|
|
369 | set -- |
| 213 | for dir in ${dirs}; do |
370 | for dir in ${dirs} ; do |
| 214 | local args="${dir}" |
371 | set -- "$@" "${dir}" |
| 215 | local abi |
372 | local abi |
| 216 | dodir ${dir}/gentoo-multilib |
|
|
| 217 | for abi in $(get_abi_order); do |
373 | for abi in $(get_install_abis); do |
| 218 | mv ${D}/${dir}.${abi} ${D}/${dir}/gentoo-multilib/${abi} |
|
|
| 219 | args="${args} $(get_abi_CDEFINE ${abi}):${dir}/gentoo-multilib/${abi}" |
374 | set -- "$@" "$(get_abi_CDEFINE ${abi}):${dir}/gentoo-multilib/${abi}" |
| 220 | done |
375 | done |
| 221 | create_ml_includes ${args} |
376 | create_ml_includes "$@" |
| 222 | done |
377 | done |
| 223 | fi |
378 | fi |
| 224 | fi |
379 | fi |
| 225 | } |
380 | } |
| 226 | |
381 | |
| … | |
… | |
| 232 | # Ideas for this code came from debian's sparc-linux headers package. |
387 | # Ideas for this code came from debian's sparc-linux headers package. |
| 233 | # |
388 | # |
| 234 | # Example: |
389 | # Example: |
| 235 | # create_ml_includes /usr/include/asm __sparc__:/usr/include/asm-sparc __sparc64__:/usr/include/asm-sparc64 |
390 | # create_ml_includes /usr/include/asm __sparc__:/usr/include/asm-sparc __sparc64__:/usr/include/asm-sparc64 |
| 236 | # create_ml_includes /usr/include/asm __i386__:/usr/include/asm-i386 __x86_64__:/usr/include/asm-x86_64 |
391 | # create_ml_includes /usr/include/asm __i386__:/usr/include/asm-i386 __x86_64__:/usr/include/asm-x86_64 |
|
|
392 | # |
|
|
393 | # Warning: Be careful with the ordering here. The default ABI has to be the |
|
|
394 | # last, because it is always defined (by GCC) |
| 237 | create_ml_includes() { |
395 | create_ml_includes() { |
| 238 | local dest="${1}" |
396 | local dest=$1 |
| 239 | shift |
397 | shift |
| 240 | local mlinfo="${@}" |
|
|
| 241 | local basedirs=$(create_ml_includes-listdirs ${mlinfo}) |
398 | local basedirs=$(create_ml_includes-listdirs "$@") |
| 242 | |
399 | |
| 243 | create_ml_includes-makedestdirs ${dest} ${basedirs} |
400 | create_ml_includes-makedestdirs ${dest} ${basedirs} |
| 244 | |
401 | |
| 245 | local file |
402 | local file |
| 246 | for file in $(create_ml_includes-allfiles ${basedirs}); do |
403 | for file in $(create_ml_includes-allfiles ${basedirs}) ; do |
| 247 | local name="$(echo $file | tr a-z A-Z | sed 's:[^A-Z]:_:g')" |
404 | #local name=$(echo ${file} | tr '[:lower:]' '[:upper:]' | sed 's:[^[:upper:]]:_:g') |
| 248 | { |
405 | ( |
| 249 | echo "/* Common header file autogenerated by create_ml_includes in multilib.eclass */" |
406 | echo "/* Autogenerated by create_ml_includes() in multilib.eclass */" |
| 250 | #echo "#ifndef __CREATE_ML_INCLUDES_STUB_${name}__" |
|
|
| 251 | #echo "#define __CREATE_ML_INCLUDES_STUB_${name}__" |
|
|
| 252 | #echo "" |
|
|
| 253 | |
407 | |
| 254 | local dir |
408 | local dir |
| 255 | for dir in ${basedirs}; do |
409 | for dir in ${basedirs}; do |
| 256 | if [ -f "${D}/${dir}/${file}" ]; then |
410 | if [[ -f ${D}/${dir}/${file} ]] ; then |
| 257 | echo "#ifdef $(create_ml_includes-sym_for_dir ${dir} ${mlinfo})" |
|
|
| 258 | echo "#include \"$(create_ml_includes-relative_between ${dest}/$(dirname ${file}) ${dir}/${file})\"" |
|
|
| 259 | echo "#endif /* $(create_ml_includes-sym_for_dir ${dir} ${mlinfo}) */" |
|
|
| 260 | echo "" |
411 | echo "" |
|
|
412 | local sym=$(create_ml_includes-sym_for_dir ${dir} "$@") |
|
|
413 | if [[ ${sym/=} != "${sym}" ]] ; then |
|
|
414 | echo "#if ${sym}" |
|
|
415 | elif [[ ${sym::1} == "!" ]] ; then |
|
|
416 | echo "#ifndef ${sym:1}" |
|
|
417 | else |
|
|
418 | echo "#ifdef ${sym}" |
|
|
419 | fi |
|
|
420 | echo "# include <$(create_ml_includes-absolute ${dir}/${file})>" |
|
|
421 | echo "#endif /* ${sym} */" |
| 261 | fi |
422 | fi |
| 262 | done |
423 | done |
| 263 | |
424 | |
| 264 | #echo "#endif /* __CREATE_ML_INCLUDES_STUB_${name}__ */" |
425 | #echo "#endif /* __CREATE_ML_INCLUDES_STUB_${name}__ */" |
| 265 | } > ${D}/${dest}/${file} |
426 | ) > "${D}/${dest}/${file}" |
| 266 | done |
427 | done |
| 267 | } |
428 | } |
| 268 | |
429 | |
| 269 | # Helper function for create_ml_includes |
430 | # Helper function for create_ml_includes |
| 270 | create_ml_includes-relative_between() { |
431 | create_ml_includes-absolute() { |
| 271 | local src="$(create_ml_includes-tidy_path ${1})" |
|
|
| 272 | local dst="$(create_ml_includes-tidy_path ${2})" |
432 | local dst="$(create_ml_includes-tidy_path $1)" |
| 273 | |
433 | |
| 274 | src=(${src//\// }) |
|
|
| 275 | dst=(${dst//\// }) |
434 | dst=(${dst//\// }) |
| 276 | |
435 | |
| 277 | local i |
436 | local i |
| 278 | for ((i=0; i<${#src[*]}; i++)); do |
437 | for ((i=0; i<${#dst[*]}; i++)); do |
| 279 | [ "${dst[i]}" != "${src[i]}" ] && break |
438 | [ "${dst[i]}" == "include" ] && break |
| 280 | done |
439 | done |
| 281 | |
440 | |
| 282 | local common=$i |
441 | local strip_upto=$i |
| 283 | |
442 | |
| 284 | for ((i=${#src[*]}; i>common; i--)); do |
|
|
| 285 | echo -n ../ |
|
|
| 286 | done |
|
|
| 287 | |
|
|
| 288 | for ((i=common; i<${#dst[*]}-1; i++)); do |
443 | for ((i=strip_upto+1; i<${#dst[*]}-1; i++)); do |
| 289 | echo -n ${dst[i]}/ |
444 | echo -n ${dst[i]}/ |
| 290 | done |
445 | done |
| 291 | |
446 | |
| 292 | echo -n ${dst[i]} |
447 | echo -n ${dst[i]} |
| 293 | } |
448 | } |
| 294 | |
449 | |
| 295 | # Helper function for create_ml_includes |
450 | # Helper function for create_ml_includes |
| 296 | create_ml_includes-tidy_path() { |
451 | create_ml_includes-tidy_path() { |
| 297 | local removed="${1}" |
452 | local removed=$1 |
| 298 | |
453 | |
| 299 | if [ -n "${removed}" ]; then |
454 | if [ -n "${removed}" ]; then |
| 300 | # Remove multiple slashes |
455 | # Remove multiple slashes |
| 301 | while [ "${removed}" != "${removed/\/\//\/}" ]; do |
456 | while [ "${removed}" != "${removed/\/\//\/}" ]; do |
| 302 | removed=${removed/\/\//\/} |
457 | removed=${removed/\/\//\/} |
| … | |
… | |
| 319 | # Remove trailing .. |
474 | # Remove trailing .. |
| 320 | [ "${removed##*/}" = ".." ] && removed=${removed%/*/*} |
475 | [ "${removed##*/}" = ".." ] && removed=${removed%/*/*} |
| 321 | |
476 | |
| 322 | # Remove trailing / |
477 | # Remove trailing / |
| 323 | [ "${removed##*/}" = "" ] && removed=${removed%/*} |
478 | [ "${removed##*/}" = "" ] && removed=${removed%/*} |
| 324 | |
479 | |
| 325 | echo ${removed} |
480 | echo ${removed} |
| 326 | fi |
481 | fi |
| 327 | } |
482 | } |
| 328 | |
483 | |
| 329 | # Helper function for create_ml_includes |
484 | # Helper function for create_ml_includes |
| 330 | create_ml_includes-listdirs() { |
485 | create_ml_includes-listdirs() { |
| 331 | local dirs |
486 | local dirs |
| 332 | local data |
487 | local data |
| 333 | for data in ${@}; do |
488 | for data in "$@"; do |
| 334 | dirs="${dirs} ${data/*:/}" |
489 | dirs="${dirs} ${data/*:/}" |
| 335 | done |
490 | done |
| 336 | echo ${dirs:1} |
491 | echo ${dirs:1} |
| 337 | } |
492 | } |
| 338 | |
493 | |
| 339 | # Helper function for create_ml_includes |
494 | # Helper function for create_ml_includes |
| 340 | create_ml_includes-makedestdirs() { |
495 | create_ml_includes-makedestdirs() { |
| 341 | local dest=${1} |
496 | local dest=$1 |
| 342 | shift |
497 | shift |
| 343 | local basedirs=${@} |
498 | local basedirs=$@ |
| 344 | |
499 | |
| 345 | dodir ${dest} |
500 | dodir ${dest} |
| 346 | |
501 | |
| 347 | local basedir |
502 | local basedir |
| 348 | for basedir in ${basedirs}; do |
503 | for basedir in ${basedirs}; do |
| … | |
… | |
| 353 | done |
508 | done |
| 354 | } |
509 | } |
| 355 | |
510 | |
| 356 | # Helper function for create_ml_includes |
511 | # Helper function for create_ml_includes |
| 357 | create_ml_includes-allfiles() { |
512 | create_ml_includes-allfiles() { |
| 358 | local basedirs=${@} |
|
|
| 359 | |
|
|
| 360 | local basedir |
513 | local basedir file |
| 361 | for basedir in ${basedirs}; do |
514 | for basedir in "$@" ; do |
| 362 | local file |
|
|
| 363 | for file in $(find ${D}/${basedir} -type f); do |
515 | for file in $(find "${D}"/${basedir} -type f); do |
| 364 | echo ${file/${D}\/${basedir}\//} |
516 | echo ${file/${D}\/${basedir}\//} |
| 365 | done |
517 | done |
| 366 | done | sort | uniq |
518 | done | sort | uniq |
| 367 | } |
519 | } |
| 368 | |
520 | |
| 369 | # Helper function for create_ml_includes |
521 | # Helper function for create_ml_includes |
| 370 | create_ml_includes-sym_for_dir() { |
522 | create_ml_includes-sym_for_dir() { |
| 371 | local dir="${1}" |
523 | local dir=$1 |
| 372 | shift |
524 | shift |
| 373 | local data |
525 | local data |
| 374 | for data in ${@}; do |
526 | for data in "$@"; do |
| 375 | if [ "${dir}" = "${data/*:/}" ]; then |
527 | if [[ ${data} == *:${dir} ]] ; then |
| 376 | echo ${data/:*/} |
528 | echo ${data/:*/} |
| 377 | return 0 |
529 | return 0 |
| 378 | fi |
530 | fi |
| 379 | done |
531 | done |
| 380 | echo "Shouldn't be here -- create_ml_includes-sym_for_dir ${1} ${@}" |
532 | echo "Shouldn't be here -- create_ml_includes-sym_for_dir $1 $@" |
| 381 | # exit because we'll likely be called from a subshell |
533 | # exit because we'll likely be called from a subshell |
| 382 | exit 1 |
534 | exit 1 |
| 383 | } |
535 | } |
|
|
536 | |
|
|
537 | get_libname() { |
|
|
538 | local libname |
|
|
539 | local ver=$1 |
|
|
540 | case ${CHOST} in |
|
|
541 | *-darwin*) libname="dylib";; |
|
|
542 | *) libname="so";; |
|
|
543 | esac |
|
|
544 | |
|
|
545 | if [[ -z $@ ]] ; then |
|
|
546 | echo ".${libname}" |
|
|
547 | else |
|
|
548 | for ver in "$@" ; do |
|
|
549 | case ${CHOST} in |
|
|
550 | *-darwin*) echo ".${ver}.${libname}";; |
|
|
551 | *) echo ".${libname}.${ver}";; |
|
|
552 | esac |
|
|
553 | done |
|
|
554 | fi |
|
|
555 | } |
|
|
556 | |
|
|
557 | # This is for the toolchain to setup profile variables when pulling in |
|
|
558 | # a crosscompiler (and thus they aren't set in the profile) |
|
|
559 | multilib_env() { |
|
|
560 | local CTARGET=${1:-${CTARGET}} |
|
|
561 | |
|
|
562 | case ${CTARGET} in |
|
|
563 | x86_64*) |
|
|
564 | export CFLAGS_x86=${CFLAGS_x86--m32} |
|
|
565 | export CHOST_x86=${CTARGET/x86_64/i686} |
|
|
566 | export CTARGET_x86=${CHOST_x86} |
|
|
567 | export CDEFINE_x86="__i386__" |
|
|
568 | export LIBDIR_x86="lib" |
|
|
569 | |
|
|
570 | export CFLAGS_amd64=${CFLAGS_amd64--m64} |
|
|
571 | export CHOST_amd64=${CTARGET} |
|
|
572 | export CTARGET_amd64=${CHOST_amd64} |
|
|
573 | export CDEFINE_amd64="__x86_64__" |
|
|
574 | export LIBDIR_amd64="lib64" |
|
|
575 | |
|
|
576 | export MULTILIB_ABIS="amd64 x86" |
|
|
577 | export DEFAULT_ABI="amd64" |
|
|
578 | ;; |
|
|
579 | mips64*) |
|
|
580 | export CFLAGS_o32=${CFLAGS_o32--mabi=32} |
|
|
581 | export CHOST_o32=${CTARGET/mips64/mips} |
|
|
582 | export CTARGET_o32=${CHOST_o32} |
|
|
583 | export CDEFINE_o32="_MIPS_SIM == _ABIO32" |
|
|
584 | export LIBDIR_o32="lib" |
|
|
585 | |
|
|
586 | export CFLAGS_n32=${CFLAGS_n32--mabi=n32} |
|
|
587 | export CHOST_n32=${CTARGET} |
|
|
588 | export CTARGET_n32=${CHOST_n32} |
|
|
589 | export CDEFINE_n32="_MIPS_SIM == _ABIN32" |
|
|
590 | export LIBDIR_n32="lib32" |
|
|
591 | |
|
|
592 | export CFLAGS_n64=${CFLAGS_n64--mabi=64} |
|
|
593 | export CHOST_n64=${CTARGET} |
|
|
594 | export CTARGET_n64=${CHOST_n64} |
|
|
595 | export CDEFINE_n64="_MIPS_SIM == _ABI64" |
|
|
596 | export LIBDIR_n64="lib64" |
|
|
597 | |
|
|
598 | export MULTILIB_ABIS="n64 n32 o32" |
|
|
599 | export DEFAULT_ABI="n32" |
|
|
600 | ;; |
|
|
601 | powerpc64*) |
|
|
602 | export CFLAGS_ppc=${CFLAGS_ppc--m32} |
|
|
603 | export CHOST_ppc=${CTARGET/powerpc64/powerpc} |
|
|
604 | export CTARGET_ppc=${CHOST_ppc} |
|
|
605 | export CDEFINE_ppc="!__powerpc64__" |
|
|
606 | export LIBDIR_ppc="lib" |
|
|
607 | |
|
|
608 | export CFLAGS_ppc64=${CFLAGS_ppc64--m64} |
|
|
609 | export CHOST_ppc64=${CTARGET} |
|
|
610 | export CTARGET_ppc64=${CHOST_ppc64} |
|
|
611 | export CDEFINE_ppc64="__powerpc64__" |
|
|
612 | export LIBDIR_ppc64="lib64" |
|
|
613 | |
|
|
614 | export MULTILIB_ABIS="ppc64 ppc" |
|
|
615 | export DEFAULT_ABI="ppc64" |
|
|
616 | ;; |
|
|
617 | s390x*) |
|
|
618 | export CFLAGS_s390=${CFLAGS_s390--m31} # the 31 is not a typo |
|
|
619 | export CHOST_s390=${CTARGET/s390x/s390} |
|
|
620 | export CTARGET_s390=${CHOST_s390} |
|
|
621 | export CDEFINE_s390="!__s390x__" |
|
|
622 | export LIBDIR_s390="lib" |
|
|
623 | |
|
|
624 | export CFLAGS_s390x=${CFLAGS_s390x--m64} |
|
|
625 | export CHOST_s390x=${CTARGET} |
|
|
626 | export CTARGET_s390x=${CHOST_s390x} |
|
|
627 | export CDEFINE_s390x="__s390x__" |
|
|
628 | export LIBDIR_s390x="lib64" |
|
|
629 | |
|
|
630 | export MULTILIB_ABIS="s390x s390" |
|
|
631 | export DEFAULT_ABI="s390x" |
|
|
632 | ;; |
|
|
633 | sparc64*) |
|
|
634 | export CFLAGS_sparc32=${CFLAGS_sparc32--m32} |
|
|
635 | export CHOST_sparc32=${CTARGET/sparc64/sparc} |
|
|
636 | export CTARGET_sparc32=${CHOST_sparc32} |
|
|
637 | export CDEFINE_sparc32="!__arch64__" |
|
|
638 | export LIBDIR_sparc32="lib" |
|
|
639 | |
|
|
640 | export CFLAGS_sparc64=${CFLAGS_sparc64--m64} |
|
|
641 | export CHOST_sparc64=${CTARGET} |
|
|
642 | export CTARGET_sparc64=${CHOST_sparc64} |
|
|
643 | export CDEFINE_sparc64="__arch64__" |
|
|
644 | export LIBDIR_sparc64="lib64" |
|
|
645 | |
|
|
646 | export MULTILIB_ABIS="sparc64 sparc32" |
|
|
647 | export DEFAULT_ABI="sparc64" |
|
|
648 | ;; |
|
|
649 | *) |
|
|
650 | export MULTILIB_ABIS="default" |
|
|
651 | export DEFAULT_ABI="default" |
|
|
652 | ;; |
|
|
653 | esac |
|
|
654 | } |
|
|
655 | |
|
|
656 | # Hide multilib details here for packages which are forced to be compiled for a |
|
|
657 | # specific ABI when run on another ABI (like x86-specific packages on amd64) |
|
|
658 | multilib_toolchain_setup() { |
|
|
659 | export ABI=$1 |
|
|
660 | |
|
|
661 | if has_version app-admin/eselect-compiler ; then |
|
|
662 | # Binutils doesn't have wrappers for ld and as (yet). Eventually it |
|
|
663 | # will, and all this can just be handled with CHOST. |
|
|
664 | export LD="ld $(get_abi_LDFLAGS $1)" |
|
|
665 | export AS="as $(get_abi_ASFLAGS $1)" |
|
|
666 | |
|
|
667 | export CHOST=$(get_abi_CHOST $1) |
|
|
668 | export CBUILD=$(get_abi_CHOST $1) |
|
|
669 | else |
|
|
670 | tc-export CC |
|
|
671 | fi |
|
|
672 | } |