You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You're using this in order to drive a script through gdb since you need to generate the output automatically rather than immediately interacting with the debugger.
The shell script is silly and needless overhead.
Instead of system("silly shell script"), use this;
You're using this in order to drive a script through gdb since you need to generate the output automatically rather than immediately interacting with the debugger.
The shell script is silly and needless overhead.
Instead of system("silly shell script"), use this;
FILE *gdbin = popen(gdbcmd, "w");
fprintf(gdbin, "set height 0\nbt full\n....");
pclose(gdbin);
The text was updated successfully, but these errors were encountered: