| 1 | # Copyright 1999-2004 Gentoo Foundation |
1 | # Copyright 1999-2004 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.29 2005/07/06 20:23:20 agriffis Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/multilib.eclass,v 1.36 2005/10/07 01:22:36 eradicator Exp $ |
| 4 | # |
4 | # |
| 5 | # Author: Jeremy Huddleston <eradicator@gentoo.org> |
5 | # Author: Jeremy Huddleston <eradicator@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 | |
|
|
| 10 | |
9 | |
| 11 | DESCRIPTION="Based on the ${ECLASS} eclass" |
10 | DESCRIPTION="Based on the ${ECLASS} eclass" |
| 12 | |
11 | |
| 13 | # has_multilib_profile: |
12 | # has_multilib_profile: |
| 14 | # Return true if the current profile is a multilib profile and lists more than |
13 | # Return true if the current profile is a multilib profile and lists more than |
| … | |
… | |
| 81 | # Ideas for this code came from debian's sparc-linux headers package. |
80 | # Ideas for this code came from debian's sparc-linux headers package. |
| 82 | # |
81 | # |
| 83 | # Example: |
82 | # Example: |
| 84 | # create_ml_includes /usr/include/asm __sparc__:/usr/include/asm-sparc __sparc64__:/usr/include/asm-sparc64 |
83 | # create_ml_includes /usr/include/asm __sparc__:/usr/include/asm-sparc __sparc64__:/usr/include/asm-sparc64 |
| 85 | # create_ml_includes /usr/include/asm __i386__:/usr/include/asm-i386 __x86_64__:/usr/include/asm-x86_64 |
84 | # create_ml_includes /usr/include/asm __i386__:/usr/include/asm-i386 __x86_64__:/usr/include/asm-x86_64 |
|
|
85 | |
|
|
86 | # get_libname [version] |
|
|
87 | # returns libname with proper suffix {.so,.dylib} and optionally supplied version |
|
|
88 | # for ELF/MACH-O shared objects |
|
|
89 | # |
|
|
90 | # Example: |
|
|
91 | # get_libname libfoo ${PV} |
|
|
92 | # Returns: libfoo.so.${PV} (ELF) || libfoo.${PV}.dylib (MACH) |
| 86 | |
93 | |
| 87 | ### END DOCUMENTATION ### |
94 | ### END DOCUMENTATION ### |
| 88 | |
95 | |
| 89 | # Defaults: |
96 | # Defaults: |
| 90 | export MULTILIB_ABIS=${MULTILIB_ABIS:-"default"} |
97 | export MULTILIB_ABIS=${MULTILIB_ABIS:-"default"} |
| … | |
… | |
| 92 | # This causes econf to set --libdir=/usr/lib where it didn't before |
99 | # This causes econf to set --libdir=/usr/lib where it didn't before |
| 93 | #export ABI=${ABI:-"default"} |
100 | #export ABI=${ABI:-"default"} |
| 94 | export CFLAGS_default |
101 | export CFLAGS_default |
| 95 | export LDFLAGS_default |
102 | export LDFLAGS_default |
| 96 | export CHOST_default=${CHOST_default:-${CHOST}} |
103 | export CHOST_default=${CHOST_default:-${CHOST}} |
|
|
104 | export CTARGET_default=${CTARGET_default:-${CTARGET}} |
| 97 | export LIBDIR_default=${CONF_LIBDIR:-"lib"} |
105 | export LIBDIR_default=${CONF_LIBDIR:-"lib"} |
| 98 | export CDEFINE_default="__unix__" |
106 | export CDEFINE_default="__unix__" |
| 99 | |
107 | |
| 100 | # has_multilib_profile() |
108 | # has_multilib_profile() |
| 101 | has_multilib_profile() { |
109 | has_multilib_profile() { |
| … | |
… | |
| 167 | # If <ABI> is not specified and ${ABI} is not defined, ${DEFAULT_ABI} is used. |
175 | # If <ABI> is not specified and ${ABI} is not defined, ${DEFAULT_ABI} is used. |
| 168 | # If <ABI> is not specified and ${ABI} and ${DEFAULT_ABI} are not defined, we return an empty string. |
176 | # If <ABI> is not specified and ${ABI} and ${DEFAULT_ABI} are not defined, we return an empty string. |
| 169 | # |
177 | # |
| 170 | # Jeremy Huddleston <eradicator@gentoo.org> |
178 | # Jeremy Huddleston <eradicator@gentoo.org> |
| 171 | get_abi_var() { |
179 | get_abi_var() { |
| 172 | local flag=${1} |
180 | local flag=$1 |
| 173 | local abi |
181 | local abi |
| 174 | if [ $# -gt 1 ]; then |
182 | if [ $# -gt 1 ]; then |
| 175 | abi=${2} |
183 | abi=${2} |
| 176 | elif [ -n "${ABI}" ]; then |
184 | elif [ -n "${ABI}" ]; then |
| 177 | abi=${ABI} |
185 | abi=${ABI} |
| … | |
… | |
| 183 | |
191 | |
| 184 | local var="${flag}_${abi}" |
192 | local var="${flag}_${abi}" |
| 185 | echo ${!var} |
193 | echo ${!var} |
| 186 | } |
194 | } |
| 187 | |
195 | |
| 188 | get_abi_CFLAGS() { get_abi_var CFLAGS "${@}"; } |
196 | get_abi_CFLAGS() { get_abi_var CFLAGS "$@"; } |
| 189 | get_abi_LDFLAGS() { get_abi_var LDFLAGS "${@}"; } |
197 | get_abi_LDFLAGS() { get_abi_var LDFLAGS "$@"; } |
| 190 | get_abi_CHOST() { get_abi_var CHOST "${@}"; } |
198 | get_abi_CHOST() { get_abi_var CHOST "$@"; } |
| 191 | get_abi_FAKE_TARGETS() { get_abi_var FAKE_TARGETS "${@}"; } |
199 | get_abi_FAKE_TARGETS() { get_abi_var FAKE_TARGETS "$@"; } |
| 192 | get_abi_CDEFINE() { get_abi_var CDEFINE "${@}"; } |
200 | get_abi_CDEFINE() { get_abi_var CDEFINE "$@"; } |
| 193 | get_abi_LIBDIR() { get_abi_var LIBDIR "${@}"; } |
201 | get_abi_LIBDIR() { get_abi_var LIBDIR "$@"; } |
| 194 | |
202 | |
| 195 | # Return a list of the ABIs we want to install for with |
203 | # Return a list of the ABIs we want to install for with |
| 196 | # the last one in the list being the default. |
204 | # the last one in the list being the default. |
| 197 | get_install_abis() { |
205 | get_install_abis() { |
| 198 | local order="" |
206 | local order="" |
| 199 | |
207 | |
| 200 | if [ -z "${MULTILIB_ABIS}" ]; then |
208 | if [[ -z ${MULTILIB_ABIS} ]] ; then |
| 201 | echo "default" |
209 | echo "default" |
| 202 | return 0 |
210 | return 0 |
| 203 | fi |
211 | fi |
| 204 | |
212 | |
| 205 | if hasq multilib-pkg-force ${RESTRICT} || |
213 | if hasq multilib-pkg-force ${RESTRICT} || |
| 206 | { hasq multilib-pkg ${FEATURES} && hasq multilib-pkg ${RESTRICT}; }; then |
214 | { hasq multilib-pkg ${FEATURES} && hasq multilib-pkg ${RESTRICT}; }; then |
| 207 | for x in ${MULTILIB_ABIS}; do |
215 | for x in ${MULTILIB_ABIS} ; do |
| 208 | if [ "${x}" != "${DEFAULT_ABI}" ]; then |
216 | if [[ ${x} != "${DEFAULT_ABI}" ]] ; then |
| 209 | hasq ${x} ${ABI_DENY} || ordera="${ordera} ${x}" |
217 | hasq ${x} ${ABI_DENY} || ordera="${ordera} ${x}" |
| 210 | fi |
218 | fi |
| 211 | done |
219 | done |
| 212 | hasq ${DEFAULT_ABI} ${ABI_DENY} || order="${ordera} ${DEFAULT_ABI}" |
220 | hasq ${DEFAULT_ABI} ${ABI_DENY} || order="${ordera} ${DEFAULT_ABI}" |
| 213 | |
221 | |
| 214 | if [ -n "${ABI_ALLOW}" ]; then |
222 | if [[ -n ${ABI_ALLOW} ]] ; then |
| 215 | local ordera="" |
223 | local ordera="" |
| 216 | for x in ${order}; do |
224 | for x in ${order} ; do |
| 217 | if hasq ${x} ${ABI_ALLOW}; then |
225 | if hasq ${x} ${ABI_ALLOW} ; then |
| 218 | ordera="${ordera} ${x}" |
226 | ordera="${ordera} ${x}" |
| 219 | fi |
227 | fi |
| 220 | done |
228 | done |
| 221 | order="${ordera}" |
229 | order=${ordera} |
| 222 | fi |
230 | fi |
| 223 | else |
231 | else |
| 224 | order="${DEFAULT_ABI}" |
232 | order=${DEFAULT_ABI} |
| 225 | fi |
233 | fi |
| 226 | |
234 | |
| 227 | if [ -z "${order}" ]; then |
235 | 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." |
236 | 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 |
237 | fi |
| 230 | |
238 | |
| 231 | echo ${order} |
239 | echo ${order} |
| 232 | return 0 |
240 | return 0 |
| … | |
… | |
| 293 | # include dir defaults to /usr/include |
301 | # include dir defaults to /usr/include |
| 294 | # ABI defaults to ${ABI} or ${DEFAULT_ABI} |
302 | # ABI defaults to ${ABI} or ${DEFAULT_ABI} |
| 295 | get_ml_incdir() { |
303 | get_ml_incdir() { |
| 296 | local dir=/usr/include |
304 | local dir=/usr/include |
| 297 | |
305 | |
| 298 | if [[ ${#} -gt 0 ]]; then |
306 | if [[ $# -gt 0 ]]; then |
| 299 | incdir=${1} |
307 | incdir=$1 |
| 300 | shift |
308 | shift |
| 301 | fi |
309 | fi |
| 302 | |
310 | |
| 303 | if [[ -z "${MULTILIB_ABIS}" ]]; then |
311 | if [[ -z "${MULTILIB_ABIS}" ]]; then |
| 304 | echo ${incdir} |
312 | echo ${incdir} |
| 305 | return 0 |
313 | return 0 |
| 306 | fi |
314 | fi |
| 307 | |
315 | |
| 308 | local abi=${ABI-${DEFAULT_ABI}} |
316 | local abi=${ABI-${DEFAULT_ABI}} |
| 309 | if [[ ${#} -gt 0 ]]; then |
317 | if [[ $# -gt 0 ]]; then |
| 310 | abi=${1} |
318 | abi=$1 |
| 311 | shift |
319 | shift |
| 312 | fi |
320 | fi |
| 313 | |
321 | |
| 314 | if [[ -d "${dir}/gentoo-multilib/${abi}" ]]; then |
322 | if [[ -d "${dir}/gentoo-multilib/${abi}" ]]; then |
| 315 | echo ${dir}/gentoo-multilib/${abi} |
323 | echo ${dir}/gentoo-multilib/${abi} |
| … | |
… | |
| 332 | # ... |
340 | # ... |
| 333 | # prep_ml_includes /usr/qt/3/include |
341 | # prep_ml_includes /usr/qt/3/include |
| 334 | # } |
342 | # } |
| 335 | |
343 | |
| 336 | prep_ml_includes() { |
344 | prep_ml_includes() { |
| 337 | if [ $(number_abis) -gt 1 ]; then |
345 | if [[ $(number_abis) -gt 1 ]] ; then |
| 338 | local dir |
346 | local dir |
| 339 | local dirs |
347 | local dirs |
| 340 | local base |
348 | local base |
| 341 | |
349 | |
| 342 | if [ ${#} -eq 0 ]; then |
350 | if [[ $# -eq 0 ]] ; then |
| 343 | dirs="/usr/include" |
351 | dirs=/usr/include |
| 344 | else |
352 | else |
| 345 | dirs="${@}" |
353 | dirs="$@" |
| 346 | fi |
354 | fi |
| 347 | |
355 | |
| 348 | for dir in ${dirs}; do |
356 | for dir in ${dirs} ; do |
| 349 | base=${T}/gentoo-multilib/${dir}/gentoo-multilib |
357 | base=${T}/gentoo-multilib/${dir}/gentoo-multilib |
| 350 | mkdir -p ${base} |
358 | mkdir -p "${base}" |
| 351 | [ -d ${base}/${ABI} ] && rm -rf ${base}/${ABI} |
359 | [[ -d ${base}/${ABI} ]] && rm -rf "${base}/${ABI}" |
| 352 | mv ${D}/${dir} ${base}/${ABI} |
360 | mv "${D}/${dir}" "${base}/${ABI}" |
| 353 | done |
361 | done |
| 354 | |
362 | |
| 355 | if is_final_abi; then |
363 | if is_final_abi; then |
| 356 | base=${T}/gentoo-multilib |
364 | base=${T}/gentoo-multilib |
| 357 | pushd ${base} |
365 | pushd "${base}" |
| 358 | find . | tar -c -T - -f - | tar -x --no-same-owner -f - -C ${D} |
366 | find . | tar -c -T - -f - | tar -x --no-same-owner -f - -C ${D} |
| 359 | popd |
367 | popd |
| 360 | |
368 | |
|
|
369 | # This 'set' stuff is required by mips profiles to properly pass |
|
|
370 | # CDEFINE's (which have spaces) to sub-functions |
|
|
371 | set -- |
| 361 | for dir in ${dirs}; do |
372 | for dir in ${dirs} ; do |
| 362 | local args=${dir} |
373 | set -- "$@" "${dir}" |
| 363 | local abi |
374 | local abi |
| 364 | for abi in $(get_install_abis); do |
375 | for abi in $(get_install_abis); do |
| 365 | args="${args} $(get_abi_CDEFINE ${abi}):${dir}/gentoo-multilib/${abi}" |
376 | set -- "$@" "$(get_abi_CDEFINE ${abi}):${dir}/gentoo-multilib/${abi}" |
| 366 | done |
377 | done |
| 367 | create_ml_includes ${args} |
378 | create_ml_includes "$@" |
| 368 | done |
379 | done |
| 369 | fi |
380 | fi |
| 370 | fi |
381 | fi |
| 371 | } |
382 | } |
| 372 | |
383 | |
| … | |
… | |
| 379 | # |
390 | # |
| 380 | # Example: |
391 | # Example: |
| 381 | # create_ml_includes /usr/include/asm __sparc__:/usr/include/asm-sparc __sparc64__:/usr/include/asm-sparc64 |
392 | # 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 |
393 | # create_ml_includes /usr/include/asm __i386__:/usr/include/asm-i386 __x86_64__:/usr/include/asm-x86_64 |
| 383 | create_ml_includes() { |
394 | create_ml_includes() { |
| 384 | local dest="${1}" |
395 | local dest=$1 |
| 385 | shift |
396 | shift |
| 386 | local mlinfo="${@}" |
|
|
| 387 | local basedirs=$(create_ml_includes-listdirs ${mlinfo}) |
397 | local basedirs=$(create_ml_includes-listdirs "$@") |
| 388 | |
398 | |
| 389 | create_ml_includes-makedestdirs ${dest} ${basedirs} |
399 | create_ml_includes-makedestdirs ${dest} ${basedirs} |
| 390 | |
400 | |
| 391 | local file |
401 | local file |
| 392 | for file in $(create_ml_includes-allfiles ${basedirs}); do |
402 | for file in $(create_ml_includes-allfiles ${basedirs}) ; do |
| 393 | local name="$(echo $file | tr a-z A-Z | sed 's:[^A-Z]:_:g')" |
403 | #local name=$(echo ${file} | tr '[:lower:]' '[:upper:]' | sed 's:[^[:upper:]]:_:g') |
| 394 | { |
404 | ( |
| 395 | echo "/* Common header file autogenerated by create_ml_includes in multilib.eclass */" |
405 | echo "/* Autogenerated by create_ml_includes() in multilib.eclass */" |
| 396 | |
406 | |
| 397 | local dir |
407 | local dir |
| 398 | for dir in ${basedirs}; do |
408 | for dir in ${basedirs}; do |
| 399 | if [ -f "${D}/${dir}/${file}" ]; then |
409 | if [[ -f ${D}/${dir}/${file} ]] ; then |
|
|
410 | echo "" |
| 400 | local sym=$(create_ml_includes-sym_for_dir ${dir} ${mlinfo}) |
411 | local sym=$(create_ml_includes-sym_for_dir ${dir} "$@") |
|
|
412 | if [[ ${sym/=} != "${sym}" ]] ; then |
|
|
413 | echo "#if ${sym}" |
| 401 | if [[ ${sym::1} == "!" ]]; then |
414 | elif [[ ${sym::1} == "!" ]] ; then |
| 402 | echo "#ifndef ${sym:1}" |
415 | echo "#ifndef ${sym:1}" |
| 403 | else |
416 | else |
| 404 | echo "#ifdef ${sym}" |
417 | echo "#ifdef ${sym}" |
| 405 | fi |
418 | fi |
| 406 | echo "#include <$(create_ml_includes-absolute ${dir}/${file})>" |
419 | echo "# include <$(create_ml_includes-absolute ${dir}/${file})>" |
| 407 | echo "#endif /* ${sym} */" |
420 | echo "#endif /* ${sym} */" |
| 408 | echo "" |
|
|
| 409 | fi |
421 | fi |
| 410 | done |
422 | done |
| 411 | |
423 | |
| 412 | #echo "#endif /* __CREATE_ML_INCLUDES_STUB_${name}__ */" |
424 | #echo "#endif /* __CREATE_ML_INCLUDES_STUB_${name}__ */" |
| 413 | } > ${D}/${dest}/${file} |
425 | ) > "${D}/${dest}/${file}" |
| 414 | done |
426 | done |
| 415 | } |
427 | } |
| 416 | |
428 | |
| 417 | # Helper function for create_ml_includes |
429 | # Helper function for create_ml_includes |
| 418 | create_ml_includes-absolute() { |
430 | create_ml_includes-absolute() { |
| 419 | local dst="$(create_ml_includes-tidy_path ${1})" |
431 | local dst="$(create_ml_includes-tidy_path $1)" |
| 420 | |
432 | |
| 421 | dst=(${dst//\// }) |
433 | dst=(${dst//\// }) |
| 422 | |
434 | |
| 423 | local i |
435 | local i |
| 424 | for ((i=0; i<${#dst[*]}; i++)); do |
436 | for ((i=0; i<${#dst[*]}; i++)); do |
| … | |
… | |
| 434 | echo -n ${dst[i]} |
446 | echo -n ${dst[i]} |
| 435 | } |
447 | } |
| 436 | |
448 | |
| 437 | # Helper function for create_ml_includes |
449 | # Helper function for create_ml_includes |
| 438 | create_ml_includes-tidy_path() { |
450 | create_ml_includes-tidy_path() { |
| 439 | local removed="${1}" |
451 | local removed=$1 |
| 440 | |
452 | |
| 441 | if [ -n "${removed}" ]; then |
453 | if [ -n "${removed}" ]; then |
| 442 | # Remove multiple slashes |
454 | # Remove multiple slashes |
| 443 | while [ "${removed}" != "${removed/\/\//\/}" ]; do |
455 | while [ "${removed}" != "${removed/\/\//\/}" ]; do |
| 444 | removed=${removed/\/\//\/} |
456 | removed=${removed/\/\//\/} |
| … | |
… | |
| 461 | # Remove trailing .. |
473 | # Remove trailing .. |
| 462 | [ "${removed##*/}" = ".." ] && removed=${removed%/*/*} |
474 | [ "${removed##*/}" = ".." ] && removed=${removed%/*/*} |
| 463 | |
475 | |
| 464 | # Remove trailing / |
476 | # Remove trailing / |
| 465 | [ "${removed##*/}" = "" ] && removed=${removed%/*} |
477 | [ "${removed##*/}" = "" ] && removed=${removed%/*} |
| 466 | |
478 | |
| 467 | echo ${removed} |
479 | echo ${removed} |
| 468 | fi |
480 | fi |
| 469 | } |
481 | } |
| 470 | |
482 | |
| 471 | # Helper function for create_ml_includes |
483 | # Helper function for create_ml_includes |
| 472 | create_ml_includes-listdirs() { |
484 | create_ml_includes-listdirs() { |
| 473 | local dirs |
485 | local dirs |
| 474 | local data |
486 | local data |
| 475 | for data in ${@}; do |
487 | for data in "$@"; do |
| 476 | dirs="${dirs} ${data/*:/}" |
488 | dirs="${dirs} ${data/*:/}" |
| 477 | done |
489 | done |
| 478 | echo ${dirs:1} |
490 | echo ${dirs:1} |
| 479 | } |
491 | } |
| 480 | |
492 | |
| 481 | # Helper function for create_ml_includes |
493 | # Helper function for create_ml_includes |
| 482 | create_ml_includes-makedestdirs() { |
494 | create_ml_includes-makedestdirs() { |
| 483 | local dest=${1} |
495 | local dest=$1 |
| 484 | shift |
496 | shift |
| 485 | local basedirs=${@} |
497 | local basedirs=$@ |
| 486 | |
498 | |
| 487 | dodir ${dest} |
499 | dodir ${dest} |
| 488 | |
500 | |
| 489 | local basedir |
501 | local basedir |
| 490 | for basedir in ${basedirs}; do |
502 | for basedir in ${basedirs}; do |
| … | |
… | |
| 495 | done |
507 | done |
| 496 | } |
508 | } |
| 497 | |
509 | |
| 498 | # Helper function for create_ml_includes |
510 | # Helper function for create_ml_includes |
| 499 | create_ml_includes-allfiles() { |
511 | create_ml_includes-allfiles() { |
| 500 | local basedirs=${@} |
|
|
| 501 | |
|
|
| 502 | local basedir |
512 | local basedir file |
| 503 | for basedir in ${basedirs}; do |
513 | for basedir in "$@" ; do |
| 504 | local file |
|
|
| 505 | for file in $(find ${D}/${basedir} -type f); do |
514 | for file in $(find "${D}"/${basedir} -type f); do |
| 506 | echo ${file/${D}\/${basedir}\//} |
515 | echo ${file/${D}\/${basedir}\//} |
| 507 | done |
516 | done |
| 508 | done | sort | uniq |
517 | done | sort | uniq |
| 509 | } |
518 | } |
| 510 | |
519 | |
| 511 | # Helper function for create_ml_includes |
520 | # Helper function for create_ml_includes |
| 512 | create_ml_includes-sym_for_dir() { |
521 | create_ml_includes-sym_for_dir() { |
| 513 | local dir="${1}" |
522 | local dir=$1 |
| 514 | shift |
523 | shift |
| 515 | local data |
524 | local data |
| 516 | for data in ${@}; do |
525 | for data in "$@"; do |
| 517 | if [ "${dir}" = "${data/*:/}" ]; then |
526 | if [[ ${data} == *:${dir} ]] ; then |
| 518 | echo ${data/:*/} |
527 | echo ${data/:*/} |
| 519 | return 0 |
528 | return 0 |
| 520 | fi |
529 | fi |
| 521 | done |
530 | done |
| 522 | echo "Shouldn't be here -- create_ml_includes-sym_for_dir ${1} ${@}" |
531 | echo "Shouldn't be here -- create_ml_includes-sym_for_dir $1 $@" |
| 523 | # exit because we'll likely be called from a subshell |
532 | # exit because we'll likely be called from a subshell |
| 524 | exit 1 |
533 | exit 1 |
| 525 | } |
534 | } |
|
|
535 | |
|
|
536 | get_libname() { |
|
|
537 | local ver=$1 |
|
|
538 | if use userland_Darwin ; then |
|
|
539 | if [ -z ${ver} ] ; then |
|
|
540 | echo ".dylib" |
|
|
541 | else |
|
|
542 | echo ".${ver}.dylib" |
|
|
543 | fi |
|
|
544 | else |
|
|
545 | if [ -z ${ver} ] ; then |
|
|
546 | echo ".so" |
|
|
547 | else |
|
|
548 | echo ".so.${ver}" |
|
|
549 | fi |
|
|
550 | fi |
|
|
551 | } |
|
|
552 | |
|
|
553 | # This is for the toolchain to setup profile variables when pulling in |
|
|
554 | # a crosscompiler (and thus they aren't set in the profile) |
|
|
555 | multilib_env() { |
|
|
556 | local CTARGET=$1 |
|
|
557 | local CTARGET_post=${CTARGET#*-} |
|
|
558 | |
|
|
559 | case $(tc-arch ${CTARGET}) in |
|
|
560 | amd64) |
|
|
561 | export CFLAGS_x86=${CFLAGS_x86--m32} |
|
|
562 | export CHOST_x86=i686-${CTARGET_post} |
|
|
563 | export CTARGET_x86=i686-${CTARGET_post} |
|
|
564 | export CDEFINE_x86="__i386__" |
|
|
565 | export LIBDIR_x86="lib" |
|
|
566 | |
|
|
567 | export CFLAGS_amd64=${CFLAGS_amd64--m64} |
|
|
568 | export CHOST_amd64=x86_64-${CTARGET_post} |
|
|
569 | export CTARGET_amd64=x86_64-${CTARGET_post} |
|
|
570 | export CDEFINE_amd64="__x86_64__" |
|
|
571 | export LIBDIR_amd64="lib64" |
|
|
572 | |
|
|
573 | export MULTILIB_ABIS="amd64 x86" |
|
|
574 | export DEFAULT_ABI="amd64" |
|
|
575 | ;; |
|
|
576 | mips) |
|
|
577 | export CFLAGS_o32=${CFLAGS_o32--mabi=32} |
|
|
578 | export CHOST_o32=mips-${CTARGET_post} |
|
|
579 | export CTARGET_o32=mips-${CTARGET_post} |
|
|
580 | export CDEFINE_o32="_MIPS_SIM == _ABIO32" |
|
|
581 | export LIBDIR_o32="lib" |
|
|
582 | |
|
|
583 | export CFLAGS_n32=${CFLAGS_n32--mabi=n32} |
|
|
584 | export CHOST_n32=mips64-${CTARGET_post} |
|
|
585 | export CTARGET_n32=mips64-${CTARGET_post} |
|
|
586 | export CDEFINE_n32="_MIPS_SIM == _ABIN32" |
|
|
587 | export LIBDIR_n32="lib32" |
|
|
588 | |
|
|
589 | export CFLAGS_n64=${CFLAGS_n64--mabi=64} |
|
|
590 | export CHOST_n64=mips64-${CTARGET_post} |
|
|
591 | export CTARGET_n64=mips64-${CTARGET_post} |
|
|
592 | export CDEFINE_n64="_MIPS_SIM == _ABI64" |
|
|
593 | export LIBDIR_n64="lib64" |
|
|
594 | |
|
|
595 | export MULTILIB_ABIS="n64 n32 o32" |
|
|
596 | case ${CTARGET} in |
|
|
597 | mips64*) export DEFAULT_ABI="n32" ;; |
|
|
598 | *) export DEFAULT_ABI="o32" ;; |
|
|
599 | esac |
|
|
600 | ;; |
|
|
601 | ppc64) |
|
|
602 | export CFLAGS_ppc=${CFLAGS_ppc--m32} |
|
|
603 | export CHOST_ppc=powerpc-${CTARGET_post} |
|
|
604 | export CTARGET_ppc=powerpc-${CTARGET_post} |
|
|
605 | export CDEFINE_ppc="!__powerpc64__" |
|
|
606 | export LIBDIR_ppc="lib" |
|
|
607 | |
|
|
608 | export CFLAGS_ppc64=${CFLAGS_ppc64--m64} |
|
|
609 | export CHOST_ppc64=powerpc64-${CTARGET_post} |
|
|
610 | export CTARGET_ppc64=powerpc64-${CTARGET_post} |
|
|
611 | export CDEFINE_ppc64="__powerpc64__" |
|
|
612 | export LIBDIR_ppc64="lib64" |
|
|
613 | |
|
|
614 | export MULTILIB_ABIS="ppc64 ppc" |
|
|
615 | export DEFAULT_ABI="ppc64" |
|
|
616 | ;; |
|
|
617 | sparc) |
|
|
618 | export CFLAGS_sparc32=${CFLAGS_sparc32--m32} |
|
|
619 | export CHOST_sparc32=sparc-${CTARGET_post} |
|
|
620 | export CTARGET_sparc32=sparc-${CTARGET_post} |
|
|
621 | export CDEFINE_sparc32="!__arch64__" |
|
|
622 | export LIBDIR_sparc32="lib" |
|
|
623 | |
|
|
624 | export CFLAGS_sparc64=${CFLAGS_sparc64--m64} |
|
|
625 | export CHOST_sparc64=sparc64-${CTARGET_post} |
|
|
626 | export CTARGET_sparc64=sparc64-${CTARGET_post} |
|
|
627 | export CDEFINE_sparc64="__arch64__" |
|
|
628 | export LIBDIR_sparc64="lib64" |
|
|
629 | |
|
|
630 | export MULTILIB_ABIS="sparc64 sparc32" |
|
|
631 | case ${CTARGET} in |
|
|
632 | sparc64*) export DEFAULT_ABI="sparc64" ;; |
|
|
633 | *) export DEFAULT_ABI="sparc32" ;; |
|
|
634 | esac |
|
|
635 | ;; |
|
|
636 | *) |
|
|
637 | export MULTILIB_ABIS="default" |
|
|
638 | export DEFAULT_ABI="default" |
|
|
639 | ;; |
|
|
640 | esac |
|
|
641 | } |