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