Mirror of the gdb mailing list
 help / color / mirror / Atom feed
* Cross-debugging interfaces known to still work?
@ 2005-06-23 22:51 Stan Shebs
  2005-06-23 23:56 ` Russell Shaw
  0 siblings, 1 reply; 5+ messages in thread
From: Stan Shebs @ 2005-06-23 22:51 UTC (permalink / raw)
  To: gdb

In digging through GDB sources trying to figure out which internal
APIs are OK for Apple's port (yes, yes, need to contribute :-) ),
I see that a number of the oddball-protocol remote interfaces
probably no longer work, and some, such as remote-mips.c, are going
unnoticed because they're not built into any config anymore. At the
same time, I'm not seeing very much mail traffic on anything besides
standard remote protocol, sim, and RDI for Arm.

So my question is, do we have any information about who is actually
using or testing any of these other targets, either with current or
older versions of GDBs?

Stan


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Cross-debugging interfaces known to still work?
  2005-06-23 22:51 Cross-debugging interfaces known to still work? Stan Shebs
@ 2005-06-23 23:56 ` Russell Shaw
  2005-06-24  3:21   ` Daniel Jacobowitz
  2005-06-24  5:34   ` Stan Shebs
  0 siblings, 2 replies; 5+ messages in thread
From: Russell Shaw @ 2005-06-23 23:56 UTC (permalink / raw)
  Cc: gdb

Stan Shebs wrote:
> In digging through GDB sources trying to figure out which internal
> APIs are OK for Apple's port (yes, yes, need to contribute :-) ),
> I see that a number of the oddball-protocol remote interfaces
> probably no longer work, and some, such as remote-mips.c, are going
> unnoticed because they're not built into any config anymore. At the
> same time, I'm not seeing very much mail traffic on anything besides
> standard remote protocol, sim, and RDI for Arm.
> 
> So my question is, do we have any information about who is actually
> using or testing any of these other targets, either with current or
> older versions of GDBs?
> 
> Stan

The "odd" protocols are used for adapting gdb to control a hardware
ICE. I made one for an atmel avr ICE, but it's not maintained in the
gdb sources yet.


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Cross-debugging interfaces known to still work?
  2005-06-23 23:56 ` Russell Shaw
@ 2005-06-24  3:21   ` Daniel Jacobowitz
  2005-06-24  5:34   ` Stan Shebs
  1 sibling, 0 replies; 5+ messages in thread
From: Daniel Jacobowitz @ 2005-06-24  3:21 UTC (permalink / raw)
  To: Russell Shaw; +Cc: gdb

On Fri, Jun 24, 2005 at 09:59:14AM +1000, Russell Shaw wrote:
> Stan Shebs wrote:
> >In digging through GDB sources trying to figure out which internal
> >APIs are OK for Apple's port (yes, yes, need to contribute :-) ),
> >I see that a number of the oddball-protocol remote interfaces
> >probably no longer work, and some, such as remote-mips.c, are going
> >unnoticed because they're not built into any config anymore. At the
> >same time, I'm not seeing very much mail traffic on anything besides
> >standard remote protocol, sim, and RDI for Arm.
> >
> >So my question is, do we have any information about who is actually
> >using or testing any of these other targets, either with current or
> >older versions of GDBs?
> >
> >Stan
> 
> The "odd" protocols are used for adapting gdb to control a hardware
> ICE. I made one for an atmel avr ICE, but it's not maintained in the
> gdb sources yet.
> 

But most people who want to control an ICE do it in a sensibly
componentized way nowadays, and just use remote.c.

Stan, no, we don't have much information about this.  The RDI bits
don't really work, but people may be using them anyway.  Beyond that I
strongly suspect the rest of the remote-* interfaces are dead.

-- 
Daniel Jacobowitz
CodeSourcery, LLC


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Cross-debugging interfaces known to still work?
  2005-06-23 23:56 ` Russell Shaw
  2005-06-24  3:21   ` Daniel Jacobowitz
@ 2005-06-24  5:34   ` Stan Shebs
  2005-06-24  5:48     ` Russell Shaw
  1 sibling, 1 reply; 5+ messages in thread
From: Stan Shebs @ 2005-06-24  5:34 UTC (permalink / raw)
  To: Russell Shaw; +Cc: gdb

Russell Shaw wrote:

> Stan Shebs wrote:
>
>> In digging through GDB sources trying to figure out which internal
>> APIs are OK for Apple's port (yes, yes, need to contribute :-) ),
>> I see that a number of the oddball-protocol remote interfaces
>> probably no longer work, and some, such as remote-mips.c, are going
>> unnoticed because they're not built into any config anymore. At the
>> same time, I'm not seeing very much mail traffic on anything besides
>> standard remote protocol, sim, and RDI for Arm.
>>
>> So my question is, do we have any information about who is actually
>> using or testing any of these other targets, either with current or
>> older versions of GDBs?
>>
>> Stan
>
>
> The "odd" protocols are used for adapting gdb to control a hardware
> ICE. I made one for an atmel avr ICE, but it's not maintained in the
> gdb sources yet.
>
Several of the ones I wrote were actually to talk to boards with
existing ROM monitors, so there's a variety. Some of the boards
targeted seem to have vanished pretty thoroughly - the only
references Google can find are the mentions of them in the GDB
documentation(!).

Stan


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Cross-debugging interfaces known to still work?
  2005-06-24  5:34   ` Stan Shebs
@ 2005-06-24  5:48     ` Russell Shaw
  0 siblings, 0 replies; 5+ messages in thread
From: Russell Shaw @ 2005-06-24  5:48 UTC (permalink / raw)
  Cc: gdb

Stan Shebs wrote:
> Russell Shaw wrote:
> 
>> Stan Shebs wrote:
>>
>>> In digging through GDB sources trying to figure out which internal
>>> APIs are OK for Apple's port (yes, yes, need to contribute :-) ),
>>> I see that a number of the oddball-protocol remote interfaces
>>> probably no longer work, and some, such as remote-mips.c, are going
>>> unnoticed because they're not built into any config anymore. At the
>>> same time, I'm not seeing very much mail traffic on anything besides
>>> standard remote protocol, sim, and RDI for Arm.
>>>
>>> So my question is, do we have any information about who is actually
>>> using or testing any of these other targets, either with current or
>>> older versions of GDBs?
>>>
>>> Stan
>>
>> The "odd" protocols are used for adapting gdb to control a hardware
>> ICE. I made one for an atmel avr ICE, but it's not maintained in the
>> gdb sources yet.
>>
> Several of the ones I wrote were actually to talk to boards with
> existing ROM monitors, so there's a variety. Some of the boards
> targeted seem to have vanished pretty thoroughly - the only
> references Google can find are the mentions of them in the GDB
> documentation(!).
> 
> Stan

One thing they're useful for is as a reference to write a new one, because
how to do them is not otherwise documented.


^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2005-06-24  5:48 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2005-06-23 22:51 Cross-debugging interfaces known to still work? Stan Shebs
2005-06-23 23:56 ` Russell Shaw
2005-06-24  3:21   ` Daniel Jacobowitz
2005-06-24  5:34   ` Stan Shebs
2005-06-24  5:48     ` Russell Shaw

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox