Iphone: Error creating precompiling app_prefix.pch

Hi guys, I don’t know what happened with Xcode. I was debugging my application when after a while I wrote code that I tried to compile and an error message appeared ...

Error creating precompilation app_prefix.pch

arm-apple-darwin9-gcc-4.2.1: te: no such file or directory

I have never had this error before, and I'm not sure how to solve it ...

+6
iphone build
source share
2 answers

Have you moved the [Project Name] _prefix.pch file? If you move it to say the subdirectory of the project’s parent, you need to open the assembly target for each of your goals, double-clicking on it, search for “pch” in the assembly settings and update the path to the .pch file.

For example, if you moved your .pch file to the "Core" subdirectory located in the parent project, then you will change "[Project Name] _prefix.pch" in the build settings to "Core / [Project Name] _prefix.pch".

+20
source share

Try changing the target buid setting in the project properties:

Change the Precpile prefix header parameter to "NO"

+2
source share

All Articles