diff options
author | Franz Sirl <Franz.Sirl-kernel@lauterbach.com> | 1999-03-10 17:10:20 -0700 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1999-03-10 17:10:20 -0700 |
commit | 222ccb597f895930476db152bc1f1e7b09c07d7a (patch) | |
tree | f755d969d9b1d1fed6553fffef790b55392b99be | |
parent | 9346c8240ec8f8b390d281158ed22d0c15a6bff9 (diff) | |
download | gcc-222ccb597f895930476db152bc1f1e7b09c07d7a.zip gcc-222ccb597f895930476db152bc1f1e7b09c07d7a.tar.gz gcc-222ccb597f895930476db152bc1f1e7b09c07d7a.tar.bz2 |
config.table: Cleanup and add mh-*pic handling for alpha, arm, powerpc
H
* config.table: Cleanup and add mh-*pic handling for alpha, arm, powerpc
From-SVN: r25689
-rw-r--r-- | libiberty/config.table | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/libiberty/config.table b/libiberty/config.table index 00944f3..4b8384b 100644 --- a/libiberty/config.table +++ b/libiberty/config.table @@ -18,10 +18,14 @@ case "${enable_shared}" in esac if [ "${shared}" = "yes" ]; then case "${host}" in - *-*-cygwin32*) ;; - hppa*-*-*) frags="${frags} ../../config/mh-papic" ;; - i[3456]86-*-*) frags="${frags} ../../config/mh-x86pic" ;; - *-*-*) frags="${frags} ../../config/mh-${host_cpu}pic" ;; + *-*-cygwin32*) ;; + alpha*-*-linux*) frags="${frags} ../../config/mh-elfalphapic" ;; + arm*-*-*) frags="${frags} ../../config/mh-armpic" ;; + hppa*-*-*) frags="${frags} ../../config/mh-papic" ;; + i[3456]86-*-*) frags="${frags} ../../config/mh-x86pic" ;; + powerpc*-*-aix*) ;; + powerpc*-*-*) frags="${frags} ../../config/mh-ppcpic" ;; + *-*-*) frags="${frags} ../../config/mh-${host_cpu}pic" ;; esac fi |