| 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.21 2005/02/13 14:05:54 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 | |
14 | |
| 15 | # has_multilib_profile: |
15 | # has_multilib_profile: |
| 16 | # Return true if the current profile is a multilib profile and lists more than |
16 | # Return true if the current profile is a multilib profile and lists more than |
| … | |
… | |
| 84 | # |
84 | # |
| 85 | # Example: |
85 | # Example: |
| 86 | # create_ml_includes /usr/include/asm __sparc__:/usr/include/asm-sparc __sparc64__:/usr/include/asm-sparc64 |
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 |
87 | # create_ml_includes /usr/include/asm __i386__:/usr/include/asm-i386 __x86_64__:/usr/include/asm-x86_64 |
| 88 | |
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 | |
| 89 | ### END DOCUMENTATION ### |
97 | ### END DOCUMENTATION ### |
| 90 | |
98 | |
| 91 | # Defaults: |
99 | # Defaults: |
| 92 | export MULTILIB_ABIS=${MULTILIB_ABIS:-"default"} |
100 | export MULTILIB_ABIS=${MULTILIB_ABIS:-"default"} |
| 93 | export DEFAULT_ABI=${DEFAULT_ABI:-"default"} |
101 | export DEFAULT_ABI=${DEFAULT_ABI:-"default"} |
| 94 | export ABI=${ABI:-"default"} |
|
|
| 95 | export CFLAGS_default="" |
102 | export CFLAGS_default |
| 96 | export LDFLAGS_default="" |
103 | export LDFLAGS_default |
| 97 | export CHOST_default=${CHOST} |
104 | export CHOST_default=${CHOST_default:-${CHOST}} |
|
|
105 | export CTARGET_default=${CTARGET_default:-${CTARGET:-${CHOST_default}}} |
| 98 | export LIBDIR_default=${CONF_LIBDIR:-"lib"} |
106 | export LIBDIR_default=${CONF_LIBDIR:-"lib"} |
| 99 | export CDEFINE_default="__unix__" |
107 | export CDEFINE_default="__unix__" |
|
|
108 | export KERNEL_ABI=${KERNEL_ABI:-${DEFAULT_ABI}} |
| 100 | |
109 | |
| 101 | # has_multilib_profile() |
110 | # has_multilib_profile() |
| 102 | has_multilib_profile() { |
111 | has_multilib_profile() { |
| 103 | [ -n "${MULTILIB_ABIS}" -a "${MULTILIB_ABIS}" != "${MULTILIB_ABIS/ /}" ] |
112 | [ -n "${MULTILIB_ABIS}" -a "${MULTILIB_ABIS}" != "${MULTILIB_ABIS/ /}" ] |
| 104 | } |
113 | } |
| … | |
… | |
| 168 | # 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. |
| 169 | # 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. |
| 170 | # |
179 | # |
| 171 | # Jeremy Huddleston <eradicator@gentoo.org> |
180 | # Jeremy Huddleston <eradicator@gentoo.org> |
| 172 | get_abi_var() { |
181 | get_abi_var() { |
| 173 | local flag=${1} |
182 | local flag=$1 |
| 174 | local abi |
183 | local abi |
| 175 | if [ $# -gt 1 ]; then |
184 | if [ $# -gt 1 ]; then |
| 176 | abi=${2} |
185 | abi=${2} |
| 177 | elif [ -n "${ABI}" ]; then |
186 | elif [ -n "${ABI}" ]; then |
| 178 | abi=${ABI} |
187 | abi=${ABI} |
| … | |
… | |
| 184 | |
193 | |
| 185 | local var="${flag}_${abi}" |
194 | local var="${flag}_${abi}" |
| 186 | echo ${!var} |
195 | echo ${!var} |
| 187 | } |
196 | } |
| 188 | |
197 | |
| 189 | get_abi_CFLAGS() { get_abi_var CFLAGS "${@}"; } |
198 | get_abi_CFLAGS() { get_abi_var CFLAGS "$@"; } |
|
|
199 | get_abi_ASFLAGS() { get_abi_var ASFLAGS "$@"; } |
| 190 | get_abi_LDFLAGS() { get_abi_var LDFLAGS "${@}"; } |
200 | get_abi_LDFLAGS() { get_abi_var LDFLAGS "$@"; } |
| 191 | get_abi_CHOST() { get_abi_var CHOST "${@}"; } |
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 "$@"; } |
| 192 | get_abi_CDEFINE() { get_abi_var CDEFINE "${@}"; } |
204 | get_abi_CDEFINE() { get_abi_var CDEFINE "$@"; } |
| 193 | get_abi_LIBDIR() { get_abi_var LIBDIR "${@}"; } |
205 | get_abi_LIBDIR() { get_abi_var LIBDIR "$@"; } |
| 194 | |
206 | |
| 195 | # 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 |
| 196 | # the last one in the list being the default. |
208 | # the last one in the list being the default. |
| 197 | get_install_abis() { |
209 | get_install_abis() { |
| 198 | local order="" |
210 | local order="" |
| 199 | |
211 | |
| 200 | if [ -z "${MULTILIB_ABIS}" ]; then |
212 | if [[ -z ${MULTILIB_ABIS} ]] ; then |
| 201 | echo "default" |
213 | echo "default" |
| 202 | return 0 |
214 | return 0 |
| 203 | fi |
215 | fi |
| 204 | |
216 | |
| 205 | if hasq multilib-pkg-force ${RESTRICT} || |
217 | if hasq multilib-pkg-force ${RESTRICT} || |
| 206 | { hasq multilib-pkg ${FEATURES} && hasq multilib-pkg ${RESTRICT}; }; then |
218 | { hasq multilib-pkg ${FEATURES} && hasq multilib-pkg ${RESTRICT}; }; then |
| 207 | for x in ${MULTILIB_ABIS}; do |
219 | for x in ${MULTILIB_ABIS} ; do |
| 208 | if [ "${x}" != "${DEFAULT_ABI}" ]; then |
220 | if [[ ${x} != "${DEFAULT_ABI}" ]] ; then |
| 209 | hasq ${x} ${ABI_DENY} || ordera="${ordera} ${x}" |
221 | hasq ${x} ${ABI_DENY} || ordera="${ordera} ${x}" |
| 210 | fi |
222 | fi |
| 211 | done |
223 | done |
| 212 | hasq ${DEFAULT_ABI} ${ABI_DENY} || order="${ordera} ${DEFAULT_ABI}" |
224 | hasq ${DEFAULT_ABI} ${ABI_DENY} || order="${ordera} ${DEFAULT_ABI}" |
| 213 | |
225 | |
| 214 | if [ -n "${ABI_ALLOW}" ]; then |
226 | if [[ -n ${ABI_ALLOW} ]] ; then |
| 215 | local ordera="" |
227 | local ordera="" |
| 216 | for x in ${order}; do |
228 | for x in ${order} ; do |
| 217 | if hasq ${x} ${ABI_ALLOW}; then |
229 | if hasq ${x} ${ABI_ALLOW} ; then |
| 218 | ordera="${ordera} ${x}" |
230 | ordera="${ordera} ${x}" |
| 219 | fi |
231 | fi |
| 220 | done |
232 | done |
| 221 | order="${ordera}" |
233 | order=${ordera} |
| 222 | fi |
234 | fi |
| 223 | else |
235 | else |
| 224 | order="${DEFAULT_ABI}" |
236 | order=${DEFAULT_ABI} |
| 225 | fi |
237 | fi |
| 226 | |
238 | |
| 227 | if [ -z "${order}" ]; then |
239 | if [[ -z ${order} ]] ; then |
| 228 | 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." |
| 229 | fi |
241 | fi |
| 230 | |
242 | |
| 231 | echo ${order} |
243 | echo ${order} |
| 232 | return 0 |
244 | return 0 |
| … | |
… | |
| 235 | # Return a list of the ABIs supported by this profile. |
247 | # Return a list of the ABIs supported by this profile. |
| 236 | # the last one in the list being the default. |
248 | # the last one in the list being the default. |
| 237 | get_all_abis() { |
249 | get_all_abis() { |
| 238 | local order="" |
250 | local order="" |
| 239 | |
251 | |
| 240 | if [ -z "${MULTILIB_ABIS}" ]; then |
252 | if [[ -z ${MULTILIB_ABIS} ]] ; then |
| 241 | echo "default" |
253 | echo "default" |
| 242 | return 0 |
254 | return 0 |
| 243 | fi |
255 | fi |
| 244 | |
256 | |
| 245 | for x in ${MULTILIB_ABIS}; do |
257 | for x in ${MULTILIB_ABIS}; do |
| 246 | if [ "${x}" != "${DEFAULT_ABI}" ]; then |
258 | if [[ ${x} != ${DEFAULT_ABI} ]] ; then |
| 247 | order="${order:+${order }}${x}" |
259 | order="${order:+${order} }${x}" |
| 248 | fi |
260 | fi |
| 249 | done |
261 | done |
| 250 | order="${order:+${order} }${DEFAULT_ABI}" |
262 | order="${order:+${order} }${DEFAULT_ABI}" |
| 251 | |
263 | |
| 252 | echo ${order} |
264 | echo ${order} |
| … | |
… | |
| 259 | get_all_libdirs() { |
271 | get_all_libdirs() { |
| 260 | local libdirs="lib" |
272 | local libdirs="lib" |
| 261 | local abi |
273 | local abi |
| 262 | local dir |
274 | local dir |
| 263 | |
275 | |
| 264 | if has_multilib_profile; then |
|
|
| 265 | for abi in ${MULTILIB_ABIS}; do |
276 | for abi in ${MULTILIB_ABIS}; do |
| 266 | [ "$(get_abi_LIBDIR ${abi})" != "lib" ] && libdirs="${libdirs} $(get_abi_LIBDIR ${abi})" |
277 | [ "$(get_abi_LIBDIR ${abi})" != "lib" ] && libdirs="${libdirs} $(get_abi_LIBDIR ${abi})" |
| 267 | done |
278 | done |
| 268 | elif [ -n "${CONF_LIBDIR}" ]; then |
|
|
| 269 | for dir in ${CONF_LIBDIR} ${CONF_MULTILIBDIR:-lib32}; do |
|
|
| 270 | [ "${dir}" != "lib" ] && libdirs="${libdirs} ${dir}" |
|
|
| 271 | done |
|
|
| 272 | fi |
|
|
| 273 | |
279 | |
| 274 | echo "${libdirs}" |
280 | echo "${libdirs}" |
| 275 | } |
281 | } |
| 276 | |
282 | |
| 277 | # 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 |
| 278 | # using the new multilib configuration. This can be used to determine |
284 | # using the new multilib configuration. This can be used to determine |
| 279 | # 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} |
| 280 | is_final_abi() { |
286 | is_final_abi() { |
| 281 | ! has_multilib_profile && return 0 |
287 | has_multilib_profile || return 0 |
| 282 | local ALL_ABIS=$(get_install_abis) |
288 | local ALL_ABIS=$(get_install_abis) |
| 283 | local LAST_ABI=${ALL_ABIS/* /} |
289 | local LAST_ABI=${ALL_ABIS/* /} |
| 284 | [ "${LAST_ABI}" = "${ABI}" ] |
290 | [[ ${LAST_ABI} == ${ABI} ]] |
| 285 | } |
291 | } |
| 286 | |
292 | |
| 287 | # echo the number of ABIs we will be installing for |
293 | # echo the number of ABIs we will be installing for |
| 288 | number_abis() { |
294 | number_abis() { |
| 289 | get_install_abis | wc -w |
295 | get_install_abis | wc -w |
| … | |
… | |
| 293 | # include dir defaults to /usr/include |
299 | # include dir defaults to /usr/include |
| 294 | # ABI defaults to ${ABI} or ${DEFAULT_ABI} |
300 | # ABI defaults to ${ABI} or ${DEFAULT_ABI} |
| 295 | get_ml_incdir() { |
301 | get_ml_incdir() { |
| 296 | local dir=/usr/include |
302 | local dir=/usr/include |
| 297 | |
303 | |
| 298 | if [[ ${#} -gt 0 ]]; then |
304 | if [[ $# -gt 0 ]]; then |
| 299 | incdir=${1} |
305 | incdir=$1 |
| 300 | shift |
306 | shift |
| 301 | fi |
307 | fi |
| 302 | |
308 | |
| 303 | if [[ -z "${MULTILIB_ABIS}" ]]; then |
309 | if [[ -z "${MULTILIB_ABIS}" ]]; then |
| 304 | echo ${incdir} |
310 | echo ${incdir} |
| 305 | return 0 |
311 | return 0 |
| 306 | fi |
312 | fi |
| 307 | |
313 | |
| 308 | local abi=${ABI:-${DEFAULT_ABI}} |
314 | local abi=${ABI-${DEFAULT_ABI}} |
| 309 | if [[ ${#} -gt 0 ]]; then |
315 | if [[ $# -gt 0 ]]; then |
| 310 | abi=${1} |
316 | abi=$1 |
| 311 | shift |
317 | shift |
| 312 | fi |
318 | fi |
| 313 | |
319 | |
| 314 | if [[ -d "${dir}/gentoo-multilib/${abi}" ]]; then |
320 | if [[ -d "${dir}/gentoo-multilib/${abi}" ]]; then |
| 315 | echo ${dir}/gentoo-multilib/${abi} |
321 | echo ${dir}/gentoo-multilib/${abi} |
| … | |
… | |
| 332 | # ... |
338 | # ... |
| 333 | # prep_ml_includes /usr/qt/3/include |
339 | # prep_ml_includes /usr/qt/3/include |
| 334 | # } |
340 | # } |
| 335 | |
341 | |
| 336 | prep_ml_includes() { |
342 | prep_ml_includes() { |
| 337 | if [ $(number_abis) -gt 1 ]; then |
343 | if [[ $(number_abis) -gt 1 ]] ; then |
| 338 | local dir |
344 | local dir |
| 339 | local dirs |
345 | local dirs |
| 340 | local base |
346 | local base |
| 341 | |
347 | |
| 342 | if [ ${#} -eq 0 ]; then |
348 | if [[ $# -eq 0 ]] ; then |
| 343 | dirs="/usr/include" |
349 | dirs=/usr/include |
| 344 | else |
350 | else |
| 345 | dirs="${@}" |
351 | dirs="$@" |
| 346 | fi |
352 | fi |
| 347 | |
353 | |
| 348 | for dir in ${dirs}; do |
354 | for dir in ${dirs} ; do |
| 349 | base=${T}/gentoo-multilib/${dir}/gentoo-multilib |
355 | base=${T}/gentoo-multilib/${dir}/gentoo-multilib |
| 350 | mkdir -p ${base} |
356 | mkdir -p "${base}" |
| 351 | [ -d ${base}/${ABI} ] && rm -rf ${base}/${ABI} |
357 | [[ -d ${base}/${ABI} ]] && rm -rf "${base}/${ABI}" |
| 352 | mv ${D}/${dir} ${base}/${ABI} |
358 | mv "${D}/${dir}" "${base}/${ABI}" |
| 353 | done |
359 | done |
| 354 | |
360 | |
| 355 | if is_final_abi; then |
361 | if is_final_abi; then |
| 356 | base=${T}/gentoo-multilib |
362 | base=${T}/gentoo-multilib |
| 357 | pushd ${base} |
363 | pushd "${base}" |
| 358 | find . | tar -c -T - -f - | tar -x --no-same-owner -f - -C ${D} |
364 | find . | tar -c -T - -f - | tar -x --no-same-owner -f - -C ${D} |
| 359 | popd |
365 | popd |
| 360 | |
366 | |
|
|
367 | # This 'set' stuff is required by mips profiles to properly pass |
|
|
368 | # CDEFINE's (which have spaces) to sub-functions |
|
|
369 | set -- |
| 361 | for dir in ${dirs}; do |
370 | for dir in ${dirs} ; do |
| 362 | local args=${dir} |
371 | set -- "$@" "${dir}" |
| 363 | local abi |
372 | local abi |
| 364 | for abi in $(get_install_abis); do |
373 | for abi in $(get_install_abis); do |
| 365 | args="${args} $(get_abi_CDEFINE ${abi}):${dir}/gentoo-multilib/${abi}" |
374 | set -- "$@" "$(get_abi_CDEFINE ${abi}):${dir}/gentoo-multilib/${abi}" |
| 366 | done |
375 | done |
| 367 | create_ml_includes ${args} |
376 | create_ml_includes "$@" |
| 368 | done |
377 | done |
| 369 | fi |
378 | fi |
| 370 | fi |
379 | fi |
| 371 | } |
380 | } |
| 372 | |
381 | |
| … | |
… | |
| 378 | # 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. |
| 379 | # |
388 | # |
| 380 | # Example: |
389 | # Example: |
| 381 | # 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 |
| 382 | # 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) |
| 383 | create_ml_includes() { |
395 | create_ml_includes() { |
| 384 | local dest="${1}" |
396 | local dest=$1 |
| 385 | shift |
397 | shift |
| 386 | local mlinfo="${@}" |
|
|
| 387 | local basedirs=$(create_ml_includes-listdirs ${mlinfo}) |
398 | local basedirs=$(create_ml_includes-listdirs "$@") |
| 388 | |
399 | |
| 389 | create_ml_includes-makedestdirs ${dest} ${basedirs} |
400 | create_ml_includes-makedestdirs ${dest} ${basedirs} |
| 390 | |
401 | |
| 391 | local file |
402 | local file |
| 392 | for file in $(create_ml_includes-allfiles ${basedirs}); do |
403 | for file in $(create_ml_includes-allfiles ${basedirs}) ; do |
| 393 | 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') |
| 394 | { |
405 | ( |
| 395 | echo "/* Common header file autogenerated by create_ml_includes in multilib.eclass */" |
406 | echo "/* Autogenerated by create_ml_includes() in multilib.eclass */" |
| 396 | #echo "#ifndef __CREATE_ML_INCLUDES_STUB_${name}__" |
|
|
| 397 | #echo "#define __CREATE_ML_INCLUDES_STUB_${name}__" |
|
|
| 398 | #echo "" |
|
|
| 399 | |
407 | |
| 400 | local dir |
408 | local dir |
| 401 | for dir in ${basedirs}; do |
409 | for dir in ${basedirs}; do |
| 402 | if [ -f "${D}/${dir}/${file}" ]; then |
410 | if [[ -f ${D}/${dir}/${file} ]] ; then |
| 403 | echo "#ifdef $(create_ml_includes-sym_for_dir ${dir} ${mlinfo})" |
|
|
| 404 | echo "#include \"$(create_ml_includes-relative_between ${dest}/$(dirname ${file}) ${dir}/${file})\"" |
|
|
| 405 | echo "#endif /* $(create_ml_includes-sym_for_dir ${dir} ${mlinfo}) */" |
|
|
| 406 | 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} */" |
| 407 | fi |
422 | fi |
| 408 | done |
423 | done |
| 409 | |
424 | |
| 410 | #echo "#endif /* __CREATE_ML_INCLUDES_STUB_${name}__ */" |
425 | #echo "#endif /* __CREATE_ML_INCLUDES_STUB_${name}__ */" |
| 411 | } > ${D}/${dest}/${file} |
426 | ) > "${D}/${dest}/${file}" |
| 412 | done |
427 | done |
| 413 | } |
428 | } |
| 414 | |
429 | |
| 415 | # Helper function for create_ml_includes |
430 | # Helper function for create_ml_includes |
| 416 | create_ml_includes-relative_between() { |
431 | create_ml_includes-absolute() { |
| 417 | local src="$(create_ml_includes-tidy_path ${1})" |
|
|
| 418 | local dst="$(create_ml_includes-tidy_path ${2})" |
432 | local dst="$(create_ml_includes-tidy_path $1)" |
| 419 | |
433 | |
| 420 | src=(${src//\// }) |
|
|
| 421 | dst=(${dst//\// }) |
434 | dst=(${dst//\// }) |
| 422 | |
435 | |
| 423 | local i |
436 | local i |
| 424 | for ((i=0; i<${#src[*]}; i++)); do |
437 | for ((i=0; i<${#dst[*]}; i++)); do |
| 425 | [ "${dst[i]}" != "${src[i]}" ] && break |
438 | [ "${dst[i]}" == "include" ] && break |
| 426 | done |
439 | done |
| 427 | |
440 | |
| 428 | local common=$i |
441 | local strip_upto=$i |
| 429 | |
442 | |
| 430 | for ((i=${#src[*]}; i>common; i--)); do |
|
|
| 431 | echo -n ../ |
|
|
| 432 | done |
|
|
| 433 | |
|
|
| 434 | for ((i=common; i<${#dst[*]}-1; i++)); do |
443 | for ((i=strip_upto+1; i<${#dst[*]}-1; i++)); do |
| 435 | echo -n ${dst[i]}/ |
444 | echo -n ${dst[i]}/ |
| 436 | done |
445 | done |
| 437 | |
446 | |
| 438 | echo -n ${dst[i]} |
447 | echo -n ${dst[i]} |
| 439 | } |
448 | } |
| 440 | |
449 | |
| 441 | # Helper function for create_ml_includes |
450 | # Helper function for create_ml_includes |
| 442 | create_ml_includes-tidy_path() { |
451 | create_ml_includes-tidy_path() { |
| 443 | local removed="${1}" |
452 | local removed=$1 |
| 444 | |
453 | |
| 445 | if [ -n "${removed}" ]; then |
454 | if [ -n "${removed}" ]; then |
| 446 | # Remove multiple slashes |
455 | # Remove multiple slashes |
| 447 | while [ "${removed}" != "${removed/\/\//\/}" ]; do |
456 | while [ "${removed}" != "${removed/\/\//\/}" ]; do |
| 448 | removed=${removed/\/\//\/} |
457 | removed=${removed/\/\//\/} |
| … | |
… | |
| 465 | # Remove trailing .. |
474 | # Remove trailing .. |
| 466 | [ "${removed##*/}" = ".." ] && removed=${removed%/*/*} |
475 | [ "${removed##*/}" = ".." ] && removed=${removed%/*/*} |
| 467 | |
476 | |
| 468 | # Remove trailing / |
477 | # Remove trailing / |
| 469 | [ "${removed##*/}" = "" ] && removed=${removed%/*} |
478 | [ "${removed##*/}" = "" ] && removed=${removed%/*} |
| 470 | |
479 | |
| 471 | echo ${removed} |
480 | echo ${removed} |
| 472 | fi |
481 | fi |
| 473 | } |
482 | } |
| 474 | |
483 | |
| 475 | # Helper function for create_ml_includes |
484 | # Helper function for create_ml_includes |
| 476 | create_ml_includes-listdirs() { |
485 | create_ml_includes-listdirs() { |
| 477 | local dirs |
486 | local dirs |
| 478 | local data |
487 | local data |
| 479 | for data in ${@}; do |
488 | for data in "$@"; do |
| 480 | dirs="${dirs} ${data/*:/}" |
489 | dirs="${dirs} ${data/*:/}" |
| 481 | done |
490 | done |
| 482 | echo ${dirs:1} |
491 | echo ${dirs:1} |
| 483 | } |
492 | } |
| 484 | |
493 | |
| 485 | # Helper function for create_ml_includes |
494 | # Helper function for create_ml_includes |
| 486 | create_ml_includes-makedestdirs() { |
495 | create_ml_includes-makedestdirs() { |
| 487 | local dest=${1} |
496 | local dest=$1 |
| 488 | shift |
497 | shift |
| 489 | local basedirs=${@} |
498 | local basedirs=$@ |
| 490 | |
499 | |
| 491 | dodir ${dest} |
500 | dodir ${dest} |
| 492 | |
501 | |
| 493 | local basedir |
502 | local basedir |
| 494 | for basedir in ${basedirs}; do |
503 | for basedir in ${basedirs}; do |
| … | |
… | |
| 499 | done |
508 | done |
| 500 | } |
509 | } |
| 501 | |
510 | |
| 502 | # Helper function for create_ml_includes |
511 | # Helper function for create_ml_includes |
| 503 | create_ml_includes-allfiles() { |
512 | create_ml_includes-allfiles() { |
| 504 | local basedirs=${@} |
|
|
| 505 | |
|
|
| 506 | local basedir |
513 | local basedir file |
| 507 | for basedir in ${basedirs}; do |
514 | for basedir in "$@" ; do |
| 508 | local file |
|
|
| 509 | for file in $(find ${D}/${basedir} -type f); do |
515 | for file in $(find "${D}"/${basedir} -type f); do |
| 510 | echo ${file/${D}\/${basedir}\//} |
516 | echo ${file/${D}\/${basedir}\//} |
| 511 | done |
517 | done |
| 512 | done | sort | uniq |
518 | done | sort | uniq |
| 513 | } |
519 | } |
| 514 | |
520 | |
| 515 | # Helper function for create_ml_includes |
521 | # Helper function for create_ml_includes |
| 516 | create_ml_includes-sym_for_dir() { |
522 | create_ml_includes-sym_for_dir() { |
| 517 | local dir="${1}" |
523 | local dir=$1 |
| 518 | shift |
524 | shift |
| 519 | local data |
525 | local data |
| 520 | for data in ${@}; do |
526 | for data in "$@"; do |
| 521 | if [ "${dir}" = "${data/*:/}" ]; then |
527 | if [[ ${data} == *:${dir} ]] ; then |
| 522 | echo ${data/:*/} |
528 | echo ${data/:*/} |
| 523 | return 0 |
529 | return 0 |
| 524 | fi |
530 | fi |
| 525 | done |
531 | done |
| 526 | 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 $@" |
| 527 | # exit because we'll likely be called from a subshell |
533 | # exit because we'll likely be called from a subshell |
| 528 | exit 1 |
534 | exit 1 |
| 529 | } |
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 | } |