From 4a6e30002583b42388ab5672b1eeadf4f1c8f0a3 Mon Sep 17 00:00:00 2001 From: Franz Sirl Date: Thu, 11 Mar 1999 00:09:24 +0000 Subject: [PATCH] configure.in: cleanup, add mh-*pic handling for arm, special case powerpc*-*-aix* MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit � * configure.in: cleanup, add mh-*pic handling for arm, special case powerpc*-*-aix* From-SVN: r25687 --- ChangeLog | 5 +++++ configure.in | 22 ++++++++++++++-------- 2 files changed, 19 insertions(+), 8 deletions(-) diff --git a/ChangeLog b/ChangeLog index 41c48ef871ec..76a160938f47 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Thu Mar 11 01:07:55 1999 Franz Sirl + + * configure.in: cleanup, add mh-*pic handling for arm, special + case powerpc*-*-aix* + 1999-03-02 Nick Clifton * config.sub: Rename CYGNUS LOCAL to EGCS LOCAL diff --git a/configure.in b/configure.in index f1181a30c76b..2fb19bf3cd10 100644 --- a/configure.in +++ b/configure.in @@ -283,25 +283,31 @@ esac if [ x${shared} = xyes ]; then case "${host}" in - hppa*) + alpha*-*-linux*) + host_makefile_frag="${host_makefile_frag} config/mh-elfalphapic" + ;; + arm*-*-*) + host_makefile_frag="${host_makefile_frag} config/mh-armpic" + ;; + hppa*-*-*) host_makefile_frag="${host_makefile_frag} config/mh-papic" ;; i[3456]86-*-cygwin32*) # We don't want -fPIC on cygwin32. ;; - i[3456]86-*) + i[3456]86-*-*) host_makefile_frag="${host_makefile_frag} config/mh-x86pic" ;; - sparc64-*) + sparc64-*-*) host_makefile_frag="${host_makefile_frag} config/mh-sparcpic" ;; - powerpc*-*) + powerpc*-*-aix*) + # We don't want -fPIC on AIX. + ;; + powerpc*-*-*) host_makefile_frag="${host_makefile_frag} config/mh-ppcpic" ;; - alpha*-*-linux*) - host_makefile_frag="${host_makefile_frag} config/mh-elfalphapic" - ;; - *) + *-*-*) if test -f ${srcdir}/config/mh-${host_cpu}pic; then host_makefile_frag="${host_makefile_frag} config/mh-${host_cpu}pic" fi