Ignore:
Timestamp:
Aug 16, 2003, 6:59:22 PM (22 years ago)
Author:
bird
Message:

binutils v2.14 - offical sources.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/GNU/src/binutils/libiberty/config.table

    • Property cvs2svn:cvs-rev changed from 1.1 to 1.1.1.2
    r608 r609  
     1# Don't build the shared library for build.
     2if [ -n "${with_build_subdir}" ]; then
     3  enable_shared=no
     4fi
     5
     6frag=
    17case "${host}" in
    28  rs6000-ibm-aix3.1 | rs6000-ibm-aix)
     
    713  i370-*-opened*)       frag=mh-openedition ;;
    814  i[345]86-*-windows*)  frag=mh-windows ;;
    9   *-*-beos*)            frag=mh-beos ;;
    1015esac
    1116
    12 frags=$frag
     17if [ -n "${frag}" ]; then
     18  frags=${libiberty_topdir}/libiberty/config/$frag
     19else
     20  frags=
     21fi
    1322
    1423# If they didn't specify --enable-shared, don't generate shared libs.
     
    2029esac
    2130if [ "${shared}" = "yes" ]; then
     31  frag=
    2232  case "${host}" in
    2333    *-*-cygwin*)        ;;
    24     alpha*-*-linux*)    frags="${frags} ../../config/mh-elfalphapic" ;;
    25     arm*-*-*)           frags="${frags} ../../config/mh-armpic" ;;
    26     hppa*-*-*)          frags="${frags} ../../config/mh-papic" ;;
    27     i[3456]86-*-*)      frags="${frags} ../../config/mh-x86pic" ;;
     34    alpha*-*-linux*)    frag=mh-elfalphapic ;;
     35    arm*-*-*)           frag=mh-armpic ;;
     36    hppa*-*-*)          frag=mh-papic ;;
     37    i[3456]86-*-* | x86_64-*-*)
     38                        frag=mh-x86pic ;;
    2839    powerpc*-*-aix*)    ;;
    29     powerpc*-*-*)       frags="${frags} ../../config/mh-ppcpic" ;;
    30     sparc*-*-*)         frags="${frags} ../../config/mh-sparcpic" ;;
    31     *-*-*)              frags="${frags} ../../config/mh-${host_cpu}pic" ;;
     40    powerpc*-*-*)       frag=mh-ppcpic ;;
     41    sparc*-*-*)         frag=mh-sparcpic ;;
     42    s390*-*-*)          frag=mh-s390pic ;;
     43    *)                  frag=mh-${host_cpu}pic ;;
    3244  esac
     45  if [ -n "${frag}" ]; then
     46    frags="${frags} ${libiberty_topdir}/config/${frag}"
     47  fi
    3348fi
    3449
     
    3651
    3752for frag in ${frags}; do
    38   case ${frag} in
    39     ../* )
    40       if [ ${srcdir} = . ]; then
    41         [ -n "${with_target_subdir}" ] && frag=../${frag}
    42         [ -n "${with_multisrctop}" ] && frag=${with_multisrctop}${frag}
    43       fi
    44       ;;
    45   esac
    46   frag=${srcdir}/${xsrcdir}config/$frag
    4753  if [ -f ${frag} ]; then
    4854    echo "Appending ${frag} to xhost-mkfrag"
Note: See TracChangeset for help on using the changeset viewer.