Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to resolve "PCH file not found" error coming in the code?

I just cloned a github code. When i tried to run it , it gave me no bridging header available isse, which i resolved by changing the folder name in "Build settings" . After that when i tried to build i am getting this issue as

"<unknown>:0: error: PCH file '/Users/iosdeveloper/Library/Developer/Xcode/DerivedData/Project-ebqolwjodqhfifemlvpiqcmkwmtt/Build/Intermediates.noindex/PrecompiledHeaders/Project_1CZ4Z98EHTKKG-clang_1PO86BEGEY3JE.pch' not found: module file not found
<unknown>:0: error: clang importer creation failed
"

Please help me on this.

like image 853
Mobile_Developer Avatar asked Jan 16 '18 21:01

Mobile_Developer


1 Answers

In my case I've not included .h extension at the end of App-Bridging-Header in Build Settings. After given App-Bridging-Header.h the error gone. Hope it will help to some one.

like image 159
MinnuKaAnae Avatar answered Oct 24 '22 20:10

MinnuKaAnae