Feature #5512 2012-04-06 00:16
ollydbg
break filename:line regex for gdb 7.5
The regex should be adjusted to the new linespec feature in GDB CVS HEAD.
See: http://forums.codeblocks.org/index.php/topic,16116.0.html
- Category
- Debugging
- Status
- Closed
- Close date
- 2012-04-11 00:15
- Assigned to
- ollydbg
History
ollydbg 2012-04-08 07:20
Index: E:/code/cb/cb_trunk/src/plugins/debuggergdb/gdb_commands.h =================================================================== --- E:/code/cb/cb_trunk/src/plugins/debuggergdb/gdb_commands.h (revision 7925) +++ E:/code/cb/cb_trunk/src/plugins/debuggergdb/gdb_commands.h (working copy) @@ -131,7 +131,7 @@ // Breakpoint 1 at 0x4013d6: file main.cpp, line 8. static wxRegEx reBreakpoint(_T("Breakpoint ([0-9]+) at (0x[0-9A-Fa-f]+)")); // Breakpoint 1 ("/home/jens/codeblocks-build/codeblocks-1.0svn/src/plugins/debuggergdb/gdb_comm ands.h:125) pending. -static wxRegEx rePendingBreakpoint(_T("Breakpoint ([0-9]+)[ \t]\\(\\\"(.+):([0-9]+)\\)[ \t]pending\\.")); +static wxRegEx rePendingBreakpoint(_T("Breakpoint ([0-9]+)[ \t]\\(\\\"(.+):([0-9]+)(\\\")?\\)[ \t]pending\\.")); // Hardware assisted breakpoint 1 at 0x4013d6: file main.cpp, line 8. static wxRegEx reHWBreakpoint(_T("Hardware assisted breakpoint ([0-9]+) at (0x[0-9A-Fa-f]+)")); // Hardware watchpoint 1: expr
ollydbg 2012-04-11 00:15
This feature has been implemented in SVN. Thank you.