Thu, 07 Jun 2018 10:11:07 +0100 Fixed `GDBThreadGroup >> #executable` for case where executable ir not known (reported) stx-8.0.0
Jan Vrany <jan.vrany@fit.cvut.cz> [Thu, 07 Jun 2018 10:11:07 +0100] rev 124
Fixed `GDBThreadGroup >> #executable` for case where executable ir not known (reported) such as when debugging bare-metal code or the target does not report it (may happen, for example wine's winedbg GDB proxy does not report executable names.
Mon, 04 Jun 2018 15:12:54 +0100 Fixed `GDBVariableObject >> #duplicate` for children od dynamic varobjs
Jan Vrany <jan.vrany@fit.cvut.cz> [Mon, 04 Jun 2018 15:12:54 +0100] rev 123
Fixed `GDBVariableObject >> #duplicate` for children od dynamic varobjs For children of **dynamic** varobjs we cannot duplicate them just by evaluation their "path" (fully rooted expression) since they have none. Thus, we first duplicate the parent and then return child of the just duplicated parent at corresponding index. It'd be nice if GDB supports that via, say, `-var-clone` command, but at the time of writing, there's no such support.
Mon, 04 Jun 2018 14:34:44 +0100 Added support for dynamic varobjs
Jan Vrany <jan.vrany@fit.cvut.cz> [Mon, 04 Jun 2018 14:34:44 +0100] rev 122
Added support for dynamic varobjs
Mon, 28 May 2018 23:18:45 +0100 Pass MI trace in the exit event
Jan Vrany <jan.vrany@fit.cvut.cz> [Mon, 28 May 2018 23:18:45 +0100] rev 121
Pass MI trace in the exit event This allows users to inspect the trace when GDB terminates abnormally (i.e., crashes).
Wed, 23 May 2018 10:22:36 +0100 Added support for breakpoints with multiple locations
Jan Vrany <jan.vrany@fit.cvut.cz> [Wed, 23 May 2018 10:22:36 +0100] rev 120
Added support for breakpoints with multiple locations ...such as breakpoints on inlined functions.
Tue, 03 Apr 2018 21:19:35 +0100 Fixed `GDBDebugger >> directories` to work on Windows
Jan Vrany <jan.vrany@fit.cvut.cz> [Tue, 03 Apr 2018 21:19:35 +0100] rev 119
Fixed `GDBDebugger >> directories` to work on Windows
Tue, 27 Mar 2018 09:01:01 +0100 Removed workaround for GDB bug 18077
Jan Vrany <jan.vrany@fit.cvut.cz> [Tue, 27 Mar 2018 09:01:01 +0100] rev 118
Removed workaround for GDB bug 18077 ...which has been fixed in GDB 7.11. https://sourceware.org/bugzilla/show_bug.cgi?id=18077
Tue, 27 Mar 2018 08:57:13 +0100 Fix: do not try to retrieve executable path if inferior is running and async mode is available
Jan Vrany <jan.vrany@fit.cvut.cz> [Tue, 27 Mar 2018 08:57:13 +0100] rev 117
Fix: do not try to retrieve executable path if inferior is running and async mode is available ...since it would block.
Tue, 27 Mar 2018 08:55:29 +0100 Fix: initialize debugger features early during initialization
Jan Vrany <jan.vrany@fit.cvut.cz> [Tue, 27 Mar 2018 08:55:29 +0100] rev 116
Fix: initialize debugger features early during initialization The frontend or `stx:libgdbs` may need to query features to conditionally perform some logic, however, if the target does not support async mode (such as Windows), it would block. The GDB documentation says: Whenever a target can change, due to commands such as -target-select, -target-attach or -exec-run, the list of target features may change, and the frontend should obtain it again. The problem is, however, that on a target that does not support, once `-exec-run` is issued, the inferior runs so GDB does not accept any commands until inferior stops. To workaround this until a better solution is found, initialize target features on first stopped event and until initialized, use "default natives features", a hard-coded set. Ugly, but we should move on.
Tue, 27 Mar 2018 08:50:56 +0100 API: improved `GDBFrame >> #file`
Jan Vrany <jan.vrany@fit.cvut.cz> [Tue, 27 Mar 2018 08:50:56 +0100] rev 115
API: improved `GDBFrame >> #file` ...to try to resolve relative paths using source directories. GDB should do that but somethimes it gets confused so try ourselves in that case.
(0) -100 -10 +10 +100 tip