From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ian Lance Taylor To: joel@OARcorp.com Cc: gas2@cygnus.com Subject: Re: source of powerpc-rtems failure Date: Thu, 16 Apr 1998 11:46:00 -0000 Message-id: <199804161846.OAA23028@subrogation.cygnus.com> References: X-SW-Source: 1998/msg00139.html Date: Thu, 16 Apr 1998 12:56:10 -0500 (CDT) From: Joel Sherrill Then clean the build directory and try this one: ../binutils-2.9/bfd/configure --target=powerpc-rtems --enable-targets=all And the definition of tdefaults is changed to: tdefaults = -DDEFAULT_VECTOR=bfd_elf32_powerpc_vec That by itself is not a bug. If you configure with --enable-targets=all, SELECT_VECS is not supposed to be defined. SELECT_VECS is only defined if you have a list of selected vectors. The bug would seem to be that bfd_elf32_powerpcle_vec is not in the default list of targets in targets.c. Ian Index: targets.c =================================================================== RCS file: /cvs/cvsfiles/devo/bfd/targets.c,v retrieving revision 1.250 diff -u -r1.250 targets.c --- targets.c 1998/02/12 23:03:24 1.250 +++ targets.c 1998/04/16 18:46:09 @@ -676,6 +676,7 @@ &bfd_elf32_m88k_vec, &bfd_elf32_sparc_vec, &bfd_elf32_powerpc_vec, + &bfd_elf32_powerpcle_vec, &bfd_elf32_v850_vec, #ifdef BFD64 /* No one seems to use this. */ &bfd_elf64_big_generic_vec,