Quote Originally Posted by SkripT
how to run the debugger in the commad line to obtain the backtrace?
If you use MinGW, it should be:
shell Code:
  1. C:\...> gdb prog.exe
  2. (gdb) run
  3. <program crashes>
  4. (gdb) bt
  5. <backtrace>
  6. (gdb) quit
To copy to clipboard, switch view to plain text mode