Author Topic: Debugger !HELP!  (Read 3749 times)

Offline Mason.

  • Single posting newcomer
  • *
  • Posts: 2
Debugger !HELP!
« on: November 14, 2012, 08:23:03 pm »
What do I have to set the compiler/debugger under settings on the toolchain excessable tab (debbugger says gbd.exe)- What do I have to set this to so I can run code?
C++ And GNU GNC Compiler

Current settings are:

C Compiler: mingw32-gcc.exe
C++ Compiler: mingw32-g++.exe
Linker for dynamic libs: mingw32-g++.exe
linker for static libs: ar.exe
*WHAT I NEED HELP WITH* Debugger: gbd.exe
Resource Compiler: windres.exe
make program: mingw32-make.exe

I need help with the debugger so I can continue learning. Without being able to debugg the stuff, I can't continue.
« Last Edit: November 14, 2012, 08:40:31 pm by Mason. »

Offline oBFusCATed

  • Developer
  • Lives here!
  • *****
  • Posts: 13406
    • Travis build status
Re: Debugger !HELP!
« Reply #1 on: November 14, 2012, 08:46:02 pm »
You have to set it to gdb.exe or the debugger executable you've installed. It should be gdb release (MinGW, TDM or something else doesn't matter).
(most of the time I ignore long posts)
[strangers don't send me private messages, I'll ignore them; post a topic in the forum, but first read the rules!]

Offline Mason.

  • Single posting newcomer
  • *
  • Posts: 2
Re: Debugger !HELP!
« Reply #2 on: November 14, 2012, 09:01:32 pm »
Thanks