XCode 5 says I got a duplicate, which I don't
- by GoodMove
The point is every time I try to run a C++ code in XCode 5 (the file s "File.cpp") xcode returns this:
duplicate symbol _main
ld: 1 duplicate symbol for architecture i386
clang: error: linker command failed with exit code 1 (use -v to see invocation)
And it only returns the error, when I got the following function whatever it contains:
int main()
{
}
I checked the folder, which XCode points to (where it says the duplicates are placed), but didn't find anything though. What am I supposed to do???
#include "File.h"
using namespace std;
void func (void){
cout << "Hello World!" << endl;
}