This is the mail archive of the
gdb-patches@sources.redhat.com
mailing list for the GDB project.
Re: [patch/rfc,rfa:ppc64] Add osabi wildcard support
- From: Andrew Cagney <cagney at gnu dot org>
- To: Andrew Cagney <ac131313 at redhat dot com>
- Cc: gdb-patches at sources dot redhat dot com
- Date: Fri, 24 Oct 2003 10:31:11 -0400
- Subject: Re: [patch/rfc,rfa:ppc64] Add osabi wildcard support
- References: <3F986371.9060708@redhat.com>
and the second is to explicitly register both of these architecture variants vis:
gdbarch_register_osabi (bfd_arch_powerpc, bfd_mach_ppc, ...
gdbarch_register_osabi (bfd_arch_powerpc, bfd_mach_ppc64, ...
plus, I believe, either
+ gdbarch_register_osabi (bfd_arch_rs6000, bfd_mach_rs6k);
or:
+ gdbarch_register_osabi (bfd_arch_powerpc, bfd_mach_rs6k);
Per this post:
http://sources.redhat.com/ml/binutils/2003-10/msg00543.html
rs6000:6000 isn't considered compatible with the generic PPC, and hence
the OSABI code couldn't find a match. That lead to the warning.
Andrew