Problem with vocabulary or processor: boost / config / user.hpp file not found

When I run my own native application in Xcode, it shows the error β€œboost / config / user.hpp file not found.” Also, when I launch the application using the command β€œresponse-native run-ios”, I got an error in terminal

"Command failed: /usr/libexec/PlistBuddy -c Print:CFBundleIdentifier build/Build/Products/Debug-iphonesimulator/sample2.app/Info.plist" Print: Entry, ":CFBundleIdentifier", Does Not Exist " . 

How can i solve this. I am an application developer for developing my own applications.

+2
source share
3 answers

This is due to this enhancement package: ./node_modules/react-native/third-party/boost_1_63_0/boost/config

  • Remove the third-party folder from the path: /node_modules/react-native/third-party/

  • Restart the Xcode project.

+1
source

Do you have updates to work on your computer / xcode? I had this problem when I had pending macOS Sierra updates for installation.

I installed the updates that caused my mac to reboot, then I ran npm install and tried to build again, and it succeeded.

Versions:

  • macOS Sierra: 10.12.6
  • Xcode: 8.3.3
  • reaction: 16.0.0-alpha.12
  • response-native: 0.47.1
0
source

Some packages are not installed correctly. Just remove the node-modules forder with rm-rf node modules and run again (npm installation or yarn).

0
source

Source: https://habr.com/ru/post/1270117/


All Articles