Commit 4a6e3000 by Franz Sirl Committed by Jeff Law

configure.in: cleanup, add mh-*pic handling for arm, special case powerpc*-*-aix*

�
        * configure.in: cleanup, add mh-*pic handling for arm, special
        case powerpc*-*-aix*

From-SVN: r25687
parent a0587d56
Thu Mar 11 01:07:55 1999 Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
* configure.in: cleanup, add mh-*pic handling for arm, special
case powerpc*-*-aix*
1999-03-02 Nick Clifton <nickc@cygnus.com>
* config.sub: Rename CYGNUS LOCAL to EGCS LOCAL
......
......@@ -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*-*)
host_makefile_frag="${host_makefile_frag} config/mh-ppcpic"
powerpc*-*-aix*)
# We don't want -fPIC on AIX.
;;
alpha*-*-linux*)
host_makefile_frag="${host_makefile_frag} config/mh-elfalphapic"
powerpc*-*-*)
host_makefile_frag="${host_makefile_frag} config/mh-ppcpic"
;;
*)
*-*-*)
if test -f ${srcdir}/config/mh-${host_cpu}pic; then
host_makefile_frag="${host_makefile_frag} config/mh-${host_cpu}pic"
fi
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment