Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to run my cocos2d application and facing this error, as I have recently upgraded my sdk to 4.2 and my cocos2d to 0.99.5.

I tried to clean my project even change the Target ios Deployment but error remains the same. Also rename the className aswell in order to avoid duplication from Library classes names of cocos2d.

ld: duplicate symbol _OBJC_METACLASS_$_MenuSceneNew in /Users/umaidsaleem/Desktop/functionalityTest/build/Debug-iphonesimulator/libcocos2d libraries.a(MenuScene.o) and /Users/umaidsaleem/Desktop/functionalityTest/build/functionalityTest.build/Debug-iphonesimulator/functionalityTest.build/Objects-normal/i386/MenuScene.o

share|improve this question

7 Answers

up vote 16 down vote accepted

You are linking the file MenuScene.m twice. You apparently have it in a static library and also in your main application.

share|improve this answer
1  
I even changed the name previously aswell to MenuSceneNew and whole class name has been changed to MenuSceneNew.h, MenuSceneNew.m but error remains the same. – user366584 Mar 18 '11 at 7:07
@user366584: It doesn't matter that you rename the class or the file, the fact is, it is being linked twice. – JeremyP Mar 18 '11 at 10:16

Another rather simple thing to check is that you did not accidentally #import a .m file instead of a .h header file.

Happened to me.

share|improve this answer
1  
Aha! That's exactly what got me just now. Thanks for the comment. I knew I was tracking a foolish mistake, but wasn't sure which one and sure enough..! – Mark Sands Sep 19 '11 at 19:50
Haha! it helped me as well! – iOS Monster Feb 15 '12 at 7:49
1  
Me too. Much thanks! – Christine Jul 20 '12 at 18:08
You just saved me a lot of time haha – Alex L Oct 18 '12 at 5:28
Life saver! Thanks a lot man! – RynoB Oct 18 '12 at 14:42

Another reason for this, for those out there who did the same as I just did, might be that you re-created a managed object class. By doing that and choosing another group in the project structure, you accidentally create another reference to the same files.

I ended up with two references for header and implementation in both the root of the project and in my model group. Removing the topmost references to .h and .m files got rid of the linking failure.

share|improve this answer

I have also had this particular error occur when a file that has not been added to the project, is referenced somewhere in the project. The two cases where I have experienced this are where I have deleted/removed files from the project without removing references to them, and when working cooperatively on a project where a teammate added the reference but I have not added the file to my version of the project.

I know the OP has resolved their problem, but I felt this might help someone else who reads this question while looking for help.

share|improve this answer

I have figured out the solution myself, sorry for posting little delayed. All assistance are much appreciated the but problem arises when I add new CCLayer derived class and checkmark cocos2d 0.99.5 static library which was wrong. Then I re-Ad my class without checking and clean my targets and then build and go. Problem solved now.

share|improve this answer

XCode Beta crashed for me while deleting a reference to a class. This caused the problem described in the answer, the fix was different again.

In my Target's Build Phase, under "Compile Sources", the item giving me grief was red. I couldn't remove it with the minus button, but typing "skip" in the compiler flags caused the red class to disappear after reloading the project. I'm assuming you could type anything in there.

It took me two hours to find the solution to my prob, I put it in here for another option to those having this problem, although it is probably not going to be a common one.

share|improve this answer

Another thing to check for the double linking - its possible to have the same file in two different places in the file list on the left. Then the compiler compiles and links it twice.

This happens when playing with organizing your file hierarchy, for example.

You don't have to be making a library or anything fancy - just drag a .m in to two different locations in the project tree.

Remember to only remove the reference to one of them, no file trashing is needed.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.