Reputation: 984
Here's the log from the build. This is a brand new project in Xcode 4, so the only non-regular things in it are as follows:
I've been playing with the build settings and searching for answers for a couple of hours now to see if it would go away, but it didn't. Any help you have would be appreciated.!
The output (click for a larger image):
Upvotes: 1
Views: 2975
Reputation: 224834
You have a duplicate symbol error - your program can't have two functions called main()
. Remove one of them, and you should be able to move forward.
Upvotes: 5