Hi
I am really new to Mac, and I have a quick question about Eclipse.
So I downloaded the latest version, and then I started a C++ project.
However, when I compile it, is says:
make:*** no rule to make target 'all'
Why?
Thanks
Alright, I fixed that problem. When I created a project, I used Advance setting, and selected an automatic makefile creation.
However, now that I compile the program, I get the following 2 errors:
make:***[Test] Error 1
symbol(s) not found
What's up with that now?!
#include <iostream.h>
int main()
{
std::cout << "Hello World!";
}