diff options
author | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-03-11 00:10:20 +0000 |
---|---|---|
committer | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-03-11 00:10:20 +0000 |
commit | eb39c024e3da3153453ab1936a21bd0406d1e75f (patch) | |
tree | f755d969d9b1d1fed6553fffef790b55392b99be /libiberty/config.table | |
parent | 904059504d2dfcb3cb85e97393981d15a93ff149 (diff) | |
download | gcc-eb39c024e3da3153453ab1936a21bd0406d1e75f.tar.gz |
H
* config.table: Cleanup and add mh-*pic handling for alpha, arm, powerpc
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@25689 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libiberty/config.table')
-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 00944f319e8..4b8384b483e 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 |