* configure.in: Link with the PIC version of libiberty on

Linux/MIPS hosts.
	* configure: Regenerate.
This commit is contained in:
Thiemo Seufer 2008-04-14 19:58:48 +00:00
parent aa11fd3fc4
commit c5cb844243
3 changed files with 14 additions and 28 deletions

View File

@ -1,3 +1,9 @@
2008-04-14 Aurelien Jarno <aurelien@aurel32.net>
* configure.in: Link with the PIC version of libiberty on
Linux/MIPS hosts.
* configure: Regenerate.
2008-04-14 Edmar Wienskoski <edmar@freescale.com>
* archures.c: Add bfd_mach_ppc_e500mc.

18
bfd/configure vendored
View File

@ -18909,20 +18909,10 @@ case "${host}" in
*-*-linux*)
# We borrow WIN32LIBADD so that the shared libbfd won't depend on
# libiberty.a.
case "${host}" in
mips*-*-linux*)
# Linux/MIPS uses PIC by default.
if test "$enable_shared" = "yes"; then
WIN32LIBADD="-L../libiberty -liberty"
fi
;;
*)
x=`sed -n -e 's/^[ ]*PICFLAG[ ]*=[ ]*//p' < ../libiberty/Makefile | sed -n '$p'`
if test -n "$x"; then
WIN32LIBADD="-L../libiberty/pic -liberty"
fi
;;
esac
x=`sed -n -e 's/^[ ]*PICFLAG[ ]*=[ ]*//p' < ../libiberty/Makefile | sed -n '$p'`
if test -n "$x"; then
WIN32LIBADD="-L../libiberty/pic -liberty"
fi
;;
esac

View File

@ -492,22 +492,12 @@ case "${host}" in
*-*-linux*)
# We borrow WIN32LIBADD so that the shared libbfd won't depend on
# libiberty.a.
case "${host}" in
mips*-*-linux*)
# Linux/MIPS uses PIC by default.
if test "$enable_shared" = "yes"; then
WIN32LIBADD="-L../libiberty -liberty"
fi
;;
*)
changequote(,)dnl
x=`sed -n -e 's/^[ ]*PICFLAG[ ]*=[ ]*//p' < ../libiberty/Makefile | sed -n '$p'`
x=`sed -n -e 's/^[ ]*PICFLAG[ ]*=[ ]*//p' < ../libiberty/Makefile | sed -n '$p'`
changequote([,])dnl
if test -n "$x"; then
WIN32LIBADD="-L../libiberty/pic -liberty"
fi
;;
esac
if test -n "$x"; then
WIN32LIBADD="-L../libiberty/pic -liberty"
fi
;;
esac
AC_SUBST(WIN32LDFLAGS)