This is the mail archive of the gdb-patches@sources.redhat.com mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [RFA] Add support for 64-bit MIPS GNU/Linux targets


On Dec 24,  9:53am, Daniel Jacobowitz wrote:

> > I'll fix the GDBSERVER_DEPFILES and tm-linux64 nits, but the
> > supply_gregset issue will require further discussion.  In the interim,
> > how would you like to proceed?
> 
> Since it won't affect thread support for 32-bit MIPS, I've no objection
> to committing it now.

Okay, it's in.  In addition to fixing the problems previously discussed,
I found it necessary to change the osabi registration (in mips-linux-tdep.c)
from:

  gdbarch_register_osabi (bfd_arch_mips, 0, GDB_OSABI_LINUX,
                          mips_linux_init_abi);

to:

  for (arch_info = bfd_lookup_arch (bfd_arch_mips, 0);
       arch_info != NULL;
       arch_info = arch_info->next)
    {
      gdbarch_register_osabi (bfd_arch_mips, arch_info->mach, GDB_OSABI_LINUX,
                              mips_linux_init_abi);
    }

I'm not entirely happy with this change, but I see no way around it
due to the recent changes to osabi.c.  (I'm open to suggestions for
better ways to do it...)

Kevin


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]