Documenting an odd XCode 4 Error here for future reference:

"one or more PCH files were found, but they were invalid"

Cleaning does not fix the issue, you need to clean the Build Folder by holding down ALT and selecting Product from the menu. The "Clean" entry will now have changed to "Clean Build Folder" which will wipe the bad PCH duplicates and compile without errors.

link|improve this question
Thanks for contributing, one thing that you may want to do is rephrase or your original post as a question then post the solution as an answer (You wont be able to accept your own answer for a couple of days). This way some one looking for an answer for this issue will be able to find it and see that there is an accepted answer right away. meta.stackoverflow.com/questions/17463/… – Joe May 19 '11 at 19:06
1  
This would be the "option" key. (Some 3rd party keyboards don't label the option key as "ALT"). – Robert Altman Jun 8 '11 at 17:45
feedback

2 Answers

I had to read this a few times to get what was going on. The original poster answered his own question. To fix:

Clean the Build Folder by holding down ALT and selecting Product from the menu. The "Clean" entry will now have changed to "Clean Build Folder" which will wipe the bad PCH duplicates and compile without errors.

link|improve this answer
This would be the "option" key. (Some 3rd party keyboards don't label the option key as "ALT"). – Robert Altman Jun 8 '11 at 17:45
@dnstevenson: Thanks it worked! :-) – Harsh Mehrotra Jul 20 '11 at 10:12
feedback

I was experiencing another problem where this solution helped. After updating an external library I rely on, I got this message:

fatal error: file '/path/to/SomeHeaderFile.h' has been modified since the precompiled header was built

Using a "normal" clean already helped getting rid of it for Debug builds. But when I wanted to use Archive in order to create a new build for the AppStore, the error message remained.

Using that "Clean Build Folder" now finally solved the problem for 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.