Jun 13, 2013 at 6:22pm Jun 13, 2013 at 6:22pm UTC
I am just beginning and was doing the "Hello World" project. I have even copy and pasted the example from the tutorial, but everytime I try to compile, I get an error that reads
[Build Error] No rule to make target 'Hello World.cpp' needed by '"Hello World.o"'. Stop.
I have been having trouble finding a solution for such a basic problem. Any advice is appreciated.
1 2 3 4 5 6 7 8 9 10
// Katie Conway - Hello World! - 6/13/2013 - (First Program)
#include <iostream>
using namespace std;
int main ()
{
cout << "Hello World!" ;
return 0;
}
Last edited on Jun 13, 2013 at 6:22pm Jun 13, 2013 at 6:22pm UTC
Jun 13, 2013 at 6:28pm Jun 13, 2013 at 6:28pm UTC
Would you happen to be using Dev C++?
Jun 13, 2013 at 6:29pm Jun 13, 2013 at 6:29pm UTC
What IDE / Compiler are you using? maybe try to rename the file by removing the space to say hello_world.cpp
Jun 13, 2013 at 6:31pm Jun 13, 2013 at 6:31pm UTC
no problem in the code.
what: << hello world.o>>?
maybe you have the wrong file extension in which you saved the code
Jun 13, 2013 at 6:33pm Jun 13, 2013 at 6:33pm UTC
> but everytime I try to compile ...
How are you trying to compile the program?
Windows or Unix or Unix clone?
In an IDE (Visual Studio / CodeBlocks / XCode / Eclipse)?
or from the command Line (g++ / cl / make / gmake)?
Jun 13, 2013 at 6:43pm Jun 13, 2013 at 6:43pm UTC
I'm sorry for not including enough information, but thank you all very much!
I'm using Dev C++, and when I renamed the file by removing the space, it worked fine.
Thank you!
Jun 13, 2013 at 6:51pm Jun 13, 2013 at 6:51pm UTC
Alright, thank you for the link