News:

The new Release 25.03 is out! You can download binaries for Windows and many major Linux distros here .

Main Menu

Compiler Errors on first Start-Up!

Started by Confor_MIDI, September 22, 2010, 10:54:34 AM

Previous topic - Next topic

Confor_MIDI

I am a huge noob, and I just got in to C++ a few days ago.  I really just wanted to dig in to the C++ language because I got a whole C++ video tutorial package from a friend, but I can't debug. It says the debugger executable is not set, but I clearly have the GCC and Intel C/C++ Compiilers installed.

I am running Ubuntu 10.04 64-bit.

Thanks in advance!

killerbot

because you ave a compiler, doesn't mean you have the debugger installed. In case of the gnu tooclhains you want the gdb debugger. Search on your system for gdb.exe, and make CB point to it in its settings as suggested by the message box.

kencamargo

Quote from: Confor_MIDI on September 22, 2010, 10:54:34 AM
I am a huge noob, and I just got in to C++ a few days ago.  I really just wanted to dig in to the C++ language because I got a whole C++ video tutorial package from a friend, but I can't debug. It says the debugger executable is not set, but I clearly have the GCC and Intel C/C++ Compiilers installed.

I am running Ubuntu 10.04 64-bit.

Thanks in advance!

Make sure you have installed the build-essentials package. For debugging you need a *debugger*, gcc is the *compiler*. You need gdb as well, and I don't think it's packaged with the compiler.

Ken

kencamargo