* configure.tgt (powerpc*-*-linux*): Add elf32ppc to ppc64

targ_extra_libpath.  Add elf64ppc to ppc targ_extra_libpath
	if --enable-64-bit-bfd.
This commit is contained in:
Jakub Jelinek 2003-04-01 14:08:00 +00:00
parent 394ce546ee
commit 276e509410
2 changed files with 8 additions and 1 deletions

View File

@ -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

View File

@ -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 ;;