Changeset 609 for branches/GNU/src/binutils/libiberty/config.table
- Timestamp:
- Aug 16, 2003, 6:59:22 PM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/GNU/src/binutils/libiberty/config.table
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.1.1.2
r608 r609 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) … … 7 13 i370-*-opened*) frag=mh-openedition ;; 8 14 i[345]86-*-windows*) frag=mh-windows ;; 9 *-*-beos*) frag=mh-beos ;;10 15 esac 11 16 12 frags=$frag 17 if [ -n "${frag}" ]; then 18 frags=${libiberty_topdir}/libiberty/config/$frag 19 else 20 frags= 21 fi 13 22 14 23 # If they didn't specify --enable-shared, don't generate shared libs. … … 20 29 esac 21 30 if [ "${shared}" = "yes" ]; then 31 frag= 22 32 case "${host}" in 23 33 *-*-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 ;; 28 39 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 ;; 32 44 esac 45 if [ -n "${frag}" ]; then 46 frags="${frags} ${libiberty_topdir}/config/${frag}" 47 fi 33 48 fi 34 49 … … 36 51 37 52 for frag in ${frags}; do 38 case ${frag} in39 ../* )40 if [ ${srcdir} = . ]; then41 [ -n "${with_target_subdir}" ] && frag=../${frag}42 [ -n "${with_multisrctop}" ] && frag=${with_multisrctop}${frag}43 fi44 ;;45 esac46 frag=${srcdir}/${xsrcdir}config/$frag47 53 if [ -f ${frag} ]; then 48 54 echo "Appending ${frag} to xhost-mkfrag" -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.