Hello all,
First and foremost I am completely, 100% new to programming. I am using Code::Blocks to try and learn C++ from a For Dummies (no smarmy comments please! ) book.
I am unable to even begin learning because after installing Code::Blocks I attempt to test a most basic project (details below), however when it comes to building it I encounter the following error:
"HelloWorld - Debug" uses an invalid compiler. Probably the toolchain path within the compiler options is not setup correctly?! Skipping...
Nothing to be done.
The project is written as follows:
#include <iostream>
using namespace std;
int main()
{
cout << "Hello world!" << endl;
return 0;
}
Please offer some assistance, I have ensured that the directory does not have a space in the name. I have also uninstalled and reinstalled Code::Blocks several times on two separate computers, one at work and one at home, both with no joy.
Any ideas? Any assistance is greatly appreciated!
First and foremost I am completely, 100% new to programming. I am using Code::Blocks to try and learn C++ from a For Dummies (no smarmy comments please! ) book.
I am unable to even begin learning because after installing Code::Blocks I attempt to test a most basic project (details below), however when it comes to building it I encounter the following error:
"HelloWorld - Debug" uses an invalid compiler. Probably the toolchain path within the compiler options is not setup correctly?! Skipping...
Nothing to be done.
The project is written as follows:
#include <iostream>
using namespace std;
int main()
{
cout << "Hello world!" << endl;
return 0;
}
Please offer some assistance, I have ensured that the directory does not have a space in the name. I have also uninstalled and reinstalled Code::Blocks several times on two separate computers, one at work and one at home, both with no joy.
Any ideas? Any assistance is greatly appreciated!