Changeset 1394 for trunk/src/gcc/libiberty/config.table
- Timestamp:
- Apr 28, 2004, 6:58:06 AM (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/gcc/libiberty/config.table
-
Property cvs2svn:cvs-rev
changed from
1.3
to1.4
r1393 r1394 1 # Don't build the shared library for build. 2 if [ -n "${with_build_subdir}" ]; then 3 enable_shared=no 4 fi 5 6 frag= 1 7 case "${host}" in 2 8 rs6000-ibm-aix3.1 | rs6000-ibm-aix) … … 10 16 esac 11 17 12 frags=$frag 18 if [ -n "${frag}" ]; then 19 frags=${libiberty_topdir}/libiberty/config/$frag 20 else 21 frags= 22 fi 13 23 14 24 # If they didn't specify --enable-shared, don't generate shared libs. … … 20 30 esac 21 31 if [ "${shared}" = "yes" ]; then 32 frag= 22 33 case "${host}" in 23 34 *-*-cygwin*) ;; 24 35 *-*-*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 ;; 29 41 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 ;; 33 46 esac 47 if [ -n "${frag}" ]; then 48 frags="${frags} ${libiberty_topdir}/config/${frag}" 49 fi 34 50 fi 35 51 … … 37 53 38 54 for frag in ${frags}; do 39 case ${frag} in40 ../* )41 if [ ${srcdir} = . ]; then42 [ -n "${with_target_subdir}" ] && frag=../${frag}43 [ -n "${with_multisrctop}" ] && frag=${with_multisrctop}${frag}44 fi45 ;;46 esac47 frag=${srcdir}/${xsrcdir}config/$frag48 55 if [ -f ${frag} ]; then 49 56 echo "Appending ${frag} to xhost-mkfrag" -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.