Author Topic: [Solved] GDB Debugger Command Line  (Read 3120 times)

Offline idhan

  • Multiple posting newcomer
  • *
  • Posts: 26
[Solved] GDB Debugger Command Line
« on: March 30, 2009, 09:25:02 pm »
Hi,

I was wondering, in gdb is a command line cheat sheet where I can try to get some information in some breakpoints,
is available in codeblocks as cheat sheet or only trought the codeblocks graphical interface?

I am new in codeblocks and I have try (unsuccessfully) to find this feature... sorry if is a dummy question...

Thanks in advance..
« Last Edit: March 31, 2009, 01:29:32 pm by idhan »

Offline Jenna

  • Administrator
  • Lives here!
  • *****
  • Posts: 7255
Re: GDB Debugger Command Line
« Reply #1 on: March 30, 2009, 10:55:41 pm »
If the program is stopped (at a breakpoint), you can send commands to gdb via "Debug -> Senduser command to debugger".

To see the output, you have to enable the debuggers debug-log: Check "Settings -> Compiler and debugger... ->  Debugger settings ... -> Display debugger's log"

Offline idhan

  • Multiple posting newcomer
  • *
  • Posts: 26
Re: GDB Debugger Command Line
« Reply #2 on: March 31, 2009, 01:29:19 pm »
Thank you Jens.