When i build the application the gcc compiler is not found:
-------------- Build: Debug in FirstTry ---------------
Compiling: main.cpp
/bin/sh: g++: not found
Process terminated with status 127 (0 minutes, 0 seconds)
0 errors, 0 warnings
however in the terninal window:
gcc -v gives gcc version 4.4.5.
g++ -v
gives what?
Did you install the C++ and C Compilers? Or, only C Compiler?
Tim S.
I installed the g++, do I need more? (debugger)
Quote from: GiuliaReis on January 24, 2011, 08:25:26 PM
I installed the g++, do I need more? (debugger)
Depends on your distro. Sometimes the debugger is bundled, sometimes not. Just search for "gdb" through the packages and decide upon the result. If you plan to develop with special libraries in mind, install these as well.
Quote from: GiuliaReis on January 24, 2011, 08:25:26 PM
I installed the g++, do I need more? (debugger)
Do you instal gcc or also g++.
g++ has an own package and is not automatically installed with gcc .
Quote from: jens on January 24, 2011, 09:48:48 PM
Quote from: GiuliaReis on January 24, 2011, 08:25:26 PM
I installed the g++, do I need more? (debugger)
Do you instal gcc or also g++.
g++ has an own package and is not automatically installed with gcc .
I believe the build-essentials package installs all the necessary stuff.
Quote from: jens on January 24, 2011, 09:48:48 PM
Quote from: GiuliaReis on January 24, 2011, 08:25:26 PM
I installed the g++, do I need more? (debugger)
Do you instal gcc or also g++.
g++ has an own package and is not automatically installed with gcc .
Yes, that did the trick. thanks Rob