Closed jeissonh closed 7 years ago
start
is not available in machine interface. botNeumann inherits the GDB policy: set breakpoints in C++ constructors if user wants to debug them.
Issue reopened: start
is available in machine interface as a parameter:
-exec-run --start
Implemented in b4b1ffae165d521b53f7081755c2c50d784c1fb4
GDB has the
start
command that stops at the program entry point, which is independent of the programming language. botNeumann is setting a breakpoint atmain
. Change it to the MI correspondent ofstart
.