Ignore:
Timestamp:
Apr 28, 2004, 6:58:06 AM (21 years ago)
Author:
bird
Message:

#1040: Joined the GCC 3.3.3 with the trunk.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/gcc/libiberty/config.table

    • Property cvs2svn:cvs-rev changed from 1.3 to 1.4
    r1393 r1394  
     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)
     
    1016esac
    1117
    12 frags=$frag
     18if [ -n "${frag}" ]; then
     19  frags=${libiberty_topdir}/libiberty/config/$frag
     20else
     21  frags=
     22fi
    1323
    1424# If they didn't specify --enable-shared, don't generate shared libs.
     
    2030esac
    2131if [ "${shared}" = "yes" ]; then
     32  frag=
    2233  case "${host}" in
    2334    *-*-cygwin*)        ;;
    2435    *-*-*emx)           ;;
    25     alpha*-*-linux*)    frags="${frags} ../../config/mh-elfalphapic" ;;
    26     arm*-*-*)           frags="${frags} ../../config/mh-armpic" ;;
    27     hppa*-*-*)          frags="${frags} ../../config/mh-papic" ;;
    28     i[3456]86-*-*)      frags="${frags} ../../config/mh-x86pic" ;;
     36    alpha*-*-linux*)    frag=mh-elfalphapic ;;
     37    arm*-*-*)           frag=mh-armpic ;;
     38    hppa*-*-*)          frag=mh-papic ;;
     39    i[3456]86-*-* | x86_64-*-*)
     40                        frag=mh-x86pic ;;
    2941    powerpc*-*-aix*)    ;;
    30     powerpc*-*-*)       frags="${frags} ../../config/mh-ppcpic" ;;
    31     sparc*-*-*)         frags="${frags} ../../config/mh-sparcpic" ;;
    32     *-*-*)              frags="${frags} ../../config/mh-${host_cpu}pic" ;;
     42    powerpc*-*-*)       frag=mh-ppcpic ;;
     43    sparc*-*-*)         frag=mh-sparcpic ;;
     44    s390*-*-*)          frag=mh-s390pic ;;
     45    *)                  frag=mh-${host_cpu}pic ;;
    3346  esac
     47  if [ -n "${frag}" ]; then
     48    frags="${frags} ${libiberty_topdir}/config/${frag}"
     49  fi
    3450fi
    3551
     
    3753
    3854for frag in ${frags}; do
    39   case ${frag} in
    40     ../* )
    41       if [ ${srcdir} = . ]; then
    42         [ -n "${with_target_subdir}" ] && frag=../${frag}
    43         [ -n "${with_multisrctop}" ] && frag=${with_multisrctop}${frag}
    44       fi
    45       ;;
    46   esac
    47   frag=${srcdir}/${xsrcdir}config/$frag
    4855  if [ -f ${frag} ]; then
    4956    echo "Appending ${frag} to xhost-mkfrag"
Note: See TracChangeset for help on using the changeset viewer.