Code::Blocks Forums
User forums => Help => Topic started by: GiuliaReis on January 24, 2011, 08:06:27 pm
-
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.
-
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)
-
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.
-
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 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.
-
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