Reputation: 11
I am working on thr react-native platform. I am using iOS. After creating project, the following error found:
config.h file not found mutex.h
Please help me resolve this issue.
Upvotes: 1
Views: 1773
Reputation: 37
Run the following commands in the project directory. Helped me resolve my config.h not found issue
Upvotes: 1
Reputation: 3142
The solution works for me is:
Quit your Xcode
Navigate to
cd node_modules/react-native/third-party/glog-0.3.4/
Then execute command:
./configure && make && make install
Now open project in Xocde, Build and Run.
Upvotes: 1