Indeed, why does Xcode always report every compilation error twice?

So, get the following: since I started using Xcode to process my software (Objective-C), I have suffered the fact that every compilation error (each) is reported twice. I never had an error counter, it was a strange number!

So, if I have one syntax error, Xcode reports this twice. This is the same for static analyzer errors.

Any thoughts?

+4
source share
1 answer

Check out this answer . Basically, you are probably compiling more than one architecture (PPC and Intel or iPhone and iPad), which means that everything is counted once for each architecture.

Pleasures from me!

+4
source

All Articles