Developer forums (C::B DEVELOPMENT STRICTLY!) > Plugins development
someone working on CDB debugger?
Martin K.:
rev 13:
- run to cursor works (on running and stopped debugger)
- a little profile to measure the performance of the debugger plugin
have fun
Martin
Bat:
Good work !
I've compiled and installed it. It's even as good as current plugin in CodeBlock trunks.
I will try to add some missing things in my use.
For information, I use it with C compiler LCC-Win32. (it's enhanced C, so there is some common C++ feature include in it)
This compiler produce CodeView debugging symbol, that seem not well understood by CDB. So I use an open source tool cv2pdb http://dsource.org/projects/cv2pdb to do conversion. So missing can come from cv2pdb or cdb plugin ...
So, question :
with :
struct bob{
char str[200];
};
struct bob a_bob;
strcpy(a_bob,"data");
what look like :
a_bob.str
here I have only first char str 'd'
Martin K.:
--- Quote from: Bat on December 23, 2012, 11:15:36 am ---Good work !
I've compiled and installed it. It's even as good as current plugin in CodeBlock trunks.
I will try to add some missing things in my use.
For information, I use it with C compiler LCC-Win32. (it's enhanced C, so there is some common C++ feature include in it)
This compiler produce CodeView debugging symbol, that seem not well understood by CDB. So I use an open source tool cv2pdb http://dsource.org/projects/cv2pdb to do conversion. So missing can come from cv2pdb or cdb plugin ...
So, question :
with :
struct bob{
char str[200];
};
struct bob a_bob;
strcpy(a_bob,"data");
what look like :
a_bob.str
here I have only first char str 'd'
--- End quote ---
Thank you, the first response to my plugin :-)
It is not complete now, but i think that it offers more functionality as the "trunk" Plugin.
Feel free to enhance whatever you like and send me patches for it.
Martin
Bat:
Here a patch to add "Breakpoint at main entry"
oBFusCATed:
--- Quote from: Bat on December 29, 2012, 06:12:43 pm ---Here a patch to add "Breakpoint at main entry"
--- End quote ---
Isn't this the same as using the step-into command instead of debug->start?
Navigation
[0] Message Index
[#] Next page
[*] Previous page
Go to full version