我正在 Mac OS Mojave 和 Xcode 10 上测试 React Native 0.56.0-rc.2。
跑步:
react-native init TestProject --version="0.56.0-rc.2"
cd TestProject
npm run start
react-native run-ios
这产生了一些长错误。
输入 Xcodeconfig.h
时,我发现 glog 丢失失败,我发现它可以手动构建:
cd ./node_modules/react-native/third-party/glog-0.3.4
./configure && make && make install
它通过了那个阶段,但让我又遇到了另一个问题
(...)/node_modules/react-native/third-party/glog-0.3.4/src/glog/logging.h:85:10:
'gflags/gflags.h' file not found
我在 Google 或 Stack Overflow 上找不到任何与 RN 相关的内容,只能参考其他软件包和在基于 Debian 的系统上安装这些软件包的说明。
这是一个已知的问题?