When I build in Xcode, any errors or warnings are being duplicated. So in the IDE, I get twice the number near the icons in the status bar, and where the yellow or red bubbles show up in the editor, there are two warning lines (or error lines) below the line where the warning (or error) occurred. Anyone else have this problem, or know how to fix it?

link|improve this question

75% accept rate
Are you sure that it isn't due to the error that the compiler is thrown off, and generating multiple errors due to that one error? Could you give some example of this? – Andy Jan 19 '09 at 2:32
feedback

3 Answers

up vote 10 down vote accepted

Are you doing a release build? If so, it may be hitting the errors once while doing the PPC build, and again for the intel build.

link|improve this answer
Exactly this. My current project builds for 4 different architectures, so all of my error counts are multiplied by four. – e.James Jan 19 '09 at 3:45
4  
Turns out the same thing happens when building a universal iPhone/iPad app. – Shaun Inman Apr 20 '10 at 14:45
feedback

When GCC is run with multiple -arch flags, it will produce a warning and/or error for each architecture because the compiler is essentially being run multiple times.

If you have set your project to be a Universal app containing both PPC and i386 binaries then you will get two errors/warnings, provided that the error/warning applies to both architectures.

link|improve this answer
feedback

The above answers are correct but don't tell how to fix it. Go to Project -> Edit Project Settings, and check the "Build Active Architecture Only" button in the Architectures section. Why Apple doesn't check this by default for debug projects is beyond me.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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