summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakub Jelinek <jakub@redhat.com>2003-04-01 14:08:00 +0000
committerJakub Jelinek <jakub@redhat.com>2003-04-01 14:08:00 +0000
commitc828ed7ef40828cf4580dff0d4e9013a00e91598 (patch)
treeceebcf8d6ddbdd9c21621390247e2a4cbbeaf1f5
parentc45397fa60d7e24749bd0b7b6096cd5fb4f9e9d5 (diff)
downloadbinutils-redhat-c828ed7ef40828cf4580dff0d4e9013a00e91598.tar.gz
* configure.tgt (powerpc*-*-linux*): Add elf32ppc to ppc64
targ_extra_libpath. Add elf64ppc to ppc targ_extra_libpath if --enable-64-bit-bfd.
-rw-r--r--ld/ChangeLog6
-rw-r--r--ld/configure.tgt3
2 files changed, 8 insertions, 1 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog
index 31d33fe00c..9836da4001 100644
--- a/ld/ChangeLog
+++ b/ld/ChangeLog
@@ -1,3 +1,9 @@
+2003-04-01 Jakub Jelinek <jakub@redhat.com>
+
+ * configure.tgt (powerpc*-*-linux*): Add elf32ppc to ppc64
+ targ_extra_libpath. Add elf64ppc to ppc targ_extra_libpath
+ if --enable-64-bit-bfd.
+
2003-04-01 Nick Clifton <nickc@redhat.com>
* emulparams/armelf.sh (OTHER_READONLY_SECTIONS): Change name of
diff --git a/ld/configure.tgt b/ld/configure.tgt
index 42c997fe51..3e4fa2567b 100644
--- a/ld/configure.tgt
+++ b/ld/configure.tgt
@@ -464,7 +464,7 @@ powerpc*-*-linux*)
case "${targ}" in
*64*) targ_emul=elf64ppc
targ_extra_emuls="elf32ppclinux elf32ppc elf32ppcsim"
- targ_extra_libpath=elf32ppclinux
+ targ_extra_libpath="elf32ppclinux elf32ppc"
tdir_elf32ppc=`echo "${targ_alias}" | sed -e 's/64//'`
tdir_elf32ppclinux=$tdir_elf32ppc
tdir_elf32ppcsim=$tdir_elf32ppc ;;
@@ -473,6 +473,7 @@ powerpc*-*-linux*)
targ_extra_libpath=elf32ppc
if test "${want64}" = "true"; then
targ_extra_emuls="$targ_extra_emuls elf64ppc"
+ targ_extra_libpath="$targ_extra_libpath elf64ppc"
fi
;;
esac ;;