* GDB remote user interface 0.0.0 release
@ 2006-05-18 16:37 teawater
2006-05-18 16:54 ` Bob Rossi
2006-05-18 22:52 ` Daniel Jacobowitz
0 siblings, 2 replies; 6+ messages in thread
From: teawater @ 2006-05-18 16:37 UTC (permalink / raw)
To: gdb
Hi all,
I add a new interpreter that called GDB remote user interface(GDBRUI)
to the GDB.
After add this interpreter, GDB can be controlled by the other
programe(such as an IDE) via TCP.
Now, I have already added this interpreter to the GDB-6.3 and GDB-6.4.
And I have wrotten a little command line test program called ruictl
that can control GDB via TCP.
You can get these codes from http://sourceforge.net/projects/gdbrui/
To use GDBRUI, you can execute "gdb --rui port" to make a port listen
the connection and execute "ruictl addr port" to connect with GDB.
After that, you can control GDB with ruictl like in GDB command line.
Now, I'm writting the DOC and a VIM plug-in to make VIM can support GDBRUI.
How do you think about it?
Thanks,
teawater
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: GDB remote user interface 0.0.0 release
2006-05-18 16:37 GDB remote user interface 0.0.0 release teawater
@ 2006-05-18 16:54 ` Bob Rossi
2006-05-19 1:41 ` teawater
2006-05-18 22:52 ` Daniel Jacobowitz
1 sibling, 1 reply; 6+ messages in thread
From: Bob Rossi @ 2006-05-18 16:54 UTC (permalink / raw)
To: teawater; +Cc: gdb
On Thu, May 18, 2006 at 11:59:31PM +0800, teawater wrote:
> Hi all,
>
> I add a new interpreter that called GDB remote user interface(GDBRUI)
> to the GDB.
> After add this interpreter, GDB can be controlled by the other
> programe(such as an IDE) via TCP.
> Now, I have already added this interpreter to the GDB-6.3 and GDB-6.4.
> And I have wrotten a little command line test program called ruictl
> that can control GDB via TCP.
> You can get these codes from http://sourceforge.net/projects/gdbrui/
> To use GDBRUI, you can execute "gdb --rui port" to make a port listen
> the connection and execute "ruictl addr port" to connect with GDB.
> After that, you can control GDB with ruictl like in GDB command line.
> Now, I'm writting the DOC and a VIM plug-in to make VIM can support GDBRUI.
> How do you think about it?
Do you still use the -i=mi or --annotate protocol to communicate with
GDB over the port? or have you written an entirely new protocol?
Bob Rossi
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: GDB remote user interface 0.0.0 release
2006-05-18 16:54 ` Bob Rossi
@ 2006-05-19 1:41 ` teawater
2006-05-19 2:31 ` Bob Rossi
0 siblings, 1 reply; 6+ messages in thread
From: teawater @ 2006-05-19 1:41 UTC (permalink / raw)
To: Bob Rossi; +Cc: gdb
I wrote an entirely new protocol.
teawater
2006/5/19, Bob Rossi <bob_rossi@cox.net>:
> On Thu, May 18, 2006 at 11:59:31PM +0800, teawater wrote:
> > Hi all,
> >
> > I add a new interpreter that called GDB remote user interface(GDBRUI)
> > to the GDB.
> > After add this interpreter, GDB can be controlled by the other
> > programe(such as an IDE) via TCP.
> > Now, I have already added this interpreter to the GDB-6.3 and GDB-6.4.
> > And I have wrotten a little command line test program called ruictl
> > that can control GDB via TCP.
> > You can get these codes from http://sourceforge.net/projects/gdbrui/
> > To use GDBRUI, you can execute "gdb --rui port" to make a port listen
> > the connection and execute "ruictl addr port" to connect with GDB.
> > After that, you can control GDB with ruictl like in GDB command line.
> > Now, I'm writting the DOC and a VIM plug-in to make VIM can support GDBRUI.
> > How do you think about it?
>
> Do you still use the -i=mi or --annotate protocol to communicate with
> GDB over the port? or have you written an entirely new protocol?
>
> Bob Rossi
>
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: GDB remote user interface 0.0.0 release
2006-05-18 16:37 GDB remote user interface 0.0.0 release teawater
2006-05-18 16:54 ` Bob Rossi
@ 2006-05-18 22:52 ` Daniel Jacobowitz
2006-05-19 2:33 ` teawater
1 sibling, 1 reply; 6+ messages in thread
From: Daniel Jacobowitz @ 2006-05-18 22:52 UTC (permalink / raw)
To: teawater; +Cc: gdb
On Thu, May 18, 2006 at 11:59:31PM +0800, teawater wrote:
> How do you think about it?
I don't understand why you needed it. Why is this better than talking
the existing GDB/MI protocol over a pipe?
--
Daniel Jacobowitz
CodeSourcery
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: GDB remote user interface 0.0.0 release
2006-05-18 22:52 ` Daniel Jacobowitz
@ 2006-05-19 2:33 ` teawater
0 siblings, 0 replies; 6+ messages in thread
From: teawater @ 2006-05-19 2:33 UTC (permalink / raw)
To: teawater, gdb
GDB/MI is good interface. But I think it's not very easy to support.
Sometimes, the coder only need a interface that can send some command
to GDB & get the return. I think support GDBRUI is easy.
teawater
2006/5/19, Daniel Jacobowitz <drow@false.org>:
> On Thu, May 18, 2006 at 11:59:31PM +0800, teawater wrote:
> > How do you think about it?
>
> I don't understand why you needed it. Why is this better than talking
> the existing GDB/MI protocol over a pipe?
>
> --
> Daniel Jacobowitz
> CodeSourcery
>
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2006-05-19 1:41 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2006-05-18 16:37 GDB remote user interface 0.0.0 release teawater
2006-05-18 16:54 ` Bob Rossi
2006-05-19 1:41 ` teawater
2006-05-19 2:31 ` Bob Rossi
2006-05-18 22:52 ` Daniel Jacobowitz
2006-05-19 2:33 ` teawater
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox