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