From mboxrd@z Thu Jan 1 00:00:00 1970 From: Stan Shebs To: jauming@yahoo.com Cc: gdb@cygnus.com Subject: Re: newbie question Date: Mon, 19 Apr 1999 12:56:00 -0000 Message-id: <199904191956.MAA18773@andros.cygnus.com> References: <19990419081407.2019.rocketmail@send102.yahoomail.com> X-SW-Source: 1999-q2/msg00048.html Date: Mon, 19 Apr 1999 01:14:07 -0700 (PDT) From: JauMing Tseng 1)is [gdb stub] needed by [pmon of mips]? No. 2)which protocol is better? a)pmon mips remote debugging protocol b)native gdb remote debugging protocol GDB's native protocol, of course. :-) But seriously, the mips protocol is less efficient, requiring more line traffic, and it's binary, which makes debugging harder. It's also a little more complicated, which likely means more target-side code to write. All in all, I would recommend the use of GDB's own protocol, unless you have some other reason to use PMON in your target. Stan