I am getting an error like this,

[WARN]Warning: Multiple build commands for output file /Developer/B/Be/build/Release-iphonesimulator/BB.app/no.png

[WARN]Warning: Multiple build commands for output file /Developer/B/Be/build/Release-iphonesimulator/BB.app/d.png

[WARN]Warning: Multiple build commands for output file /Developer/B/Be/build/Release-iphonesimulator/BB.app/n.png

but i have checked the xcode and i dont see any duplicates of such files at all.

As the apple lists says : http://lists.apple.com/archives/xcode-users/2006/Dec/msg00276.html

there are no duplicates.

Please help.

link|improve this question

feedback

11 Answers

This is easily caused when you add git based subprojects. Xcode isn't smart enough to ignore the .git subfolder even though you can't see it from finder, so it will get very confused that there are multiple files named "master" or "exclude", (standard git repo files). With Xcode4, go to the project (root of the left tree) then click your app target and expand "Copy Bundle Resources", then remove all the references to .git, you shouldn't need them baked into your app anyway.

link|improve this answer
Hidden place to look for a file, but that helped. Works in XCode Version 3.2.5 too – Tudorizer Mar 19 '11 at 3:31
19  
I fumbled about for a second, so this may help someone: app target -> build phases -> copy bundle resources – jaime Apr 14 '11 at 16:42
This solved my issue. Thanks! – markdorison May 3 '11 at 1:55
me too. Thanks! – ggould75 May 6 '11 at 6:57
feedback

Go to the target you are building and look in the "Copy Bundle Resources" Build Phase. You should find the offending files in that list twice. Delete the duplicate reference.

Xcode is complaining that you are trying to bundle the same file with your application two times.

link|improve this answer
8  
+1: This is the best and easiest solution. – FreeAsInBeer Aug 2 '11 at 14:29
How to "Go to the target you are building" – Jim Thio Apr 23 at 9:25
In the Project Navigator, select your Xcode Project file. This will show you the project settings as well as the targets in the project. – Mark Suman Apr 27 at 22:41
feedback
up vote 34 down vote accepted

Actually The answer to this is very simple.

In your xcode search for the files which raises the warning, and just delete it.

The Xcode will show only one reference of that file in the search results, but dont stop there, go ahead and delete it. (better make a back up to your project file before delete operation)

Now do a build, you will see the warning removed. (this answer is for a previous version of xcode)

link|improve this answer
But the files don't come up in XCode's groups and files pane any more. What's the deal with this? – Tejaswi Yerukalapudi Oct 7 '10 at 14:52
Ya xcode doesnt shows this up in the list. In Xcode search, the search should be probably executed over the physical project folder instead of project group tree. Maybe this shall be considered as a simple bug in xcode – Futur Oct 7 '10 at 15:17
Perfect solution, the warning was simply caused by duplicate references. – XenElement Jun 3 '11 at 18:25
The most funny thing is the issue is fixed in xcode 4, but not fully. just that this error is not popped up.. file reference issues are not fixed yet.. – Futur Jun 8 '11 at 7:58
1  
You're right Futur, and I'm trying to upgrade my vote. There needs to be an edit for me to able to upvote it again. Thanks. – icnivad Dec 14 '11 at 17:54
show 2 more comments
feedback

This is not an XCode Bug. Though the warning message is not helpful enough to describe the real cause.

This error message shows when you have several files in your project that has the same name. you just have to delete one of those and problem is solved.

link|improve this answer
This is the correct answer. – Moshe Mar 23 '11 at 3:32
Yes, this is the correct answer. And the situation can easily arrive when you have resource files, e.g. pngs with the same name but in separate dirs on your file system - during the build process they all get copied to 1 dir, namely the app bundle. – Brynjar Nov 23 '11 at 11:49
feedback

This happens if you have 2 files with the same name in the project. Even though files are in groups in XCode when the project is compiled all of the files end up in the same directory. In other words if you have /group1/image.jpg and /group2/image.jpg the compiled project will only have one of the two image.jpg files.

link|improve this answer
@ kevin - hav any one answered for your comment – siva Jan 25 '11 at 6:39
yes, this is exactly my experience when I see this error. – user786383 Feb 15 at 21:29
feedback

I'm pretty sure this can be caused by an XCode 4 bug, at least in the cases that I've encountered it in.

It happens if you add multiple language dependent files to the project at the same time. I found this out by looking through the git differences. I did nothing in the commit but add some new localized nib files. But looking back at the difference of the project.pbxproj file it showed a bunch of new duplicate references added for files that were already in the project before. The files it did this too seemed random to me.

I reproduced this same exact behavior multiple times.

Deleting these files from the project does not fix the problem because it only deletes the original reference and leaves the duplicates. The only way to fix it is to go back a commit and start over, or hand edit the project file, which is a really good way to screw it up even more since it's hard to tell which duplicates to remove and you have to do it in a ton of different places.

Xcode 4 is just a huge disappointment for me.

link|improve this answer
Did you report this bug? I was able to reproduce it, "works" exactly as you say! – Pascal May 27 '11 at 19:24
Same behavior for me. You need to add the localized files one by one... – CedricSoubrie Jun 21 '11 at 16:26
3 month later, still got the same error... – CedricSoubrie Sep 21 '11 at 16:21
Looks like this is fixed in XCode 4.2. In earlier versions you can avoid this bug by first placing the file you're about to add localizations for into it's own "Group" (virtual folder in the project). Once you're done adding localizations you can put it back where it was and delete the temp Group you created. – Steve Oct 26 '11 at 20:04
1  
This isn't fixed in 4.2. It just happend to me. – Brandon O'Rourke Jan 6 at 20:10
show 2 more comments
feedback

In my case the issue was caused by the same name of target and folder inside a group.

Just rename conflicted file or folder to resolve the issue.

link|improve this answer
feedback

This happends because ur "no.png" "d.png" and "n.png" are duplicated in resources . Just look for delete dublicated files and delete.

link|improve this answer
feedback

The error seem to appear when u have more than one reference of the same file. I had 2 files of the same name and got this error. When I delete one of them the error disappear..

link|improve this answer
feedback

This is not a bug. Xcode assists You. Click on "Validate settings". Xcode will check the settings and removes duplicates if possible.

link|improve this answer
feedback

Yet another variation on this issue. I had the same message come up none of the previously suggested solutions solved the problem (I definitely only had one copy of the offending file for instance).

My solution was to edit the project.pbxproj file in a text editor (after quitting XCode and backing up the file of course) and remove all references to the offending file. Then, after starting XCode again, I manually added the file back into the project and everything was ok.

(My suspicion is that this problem happened to me because of a manual, ie: non-XCode, merge of the project file.)

link|improve this answer
feedback

protected by Community Mar 16 at 10:00

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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