美文网首页工作生活
Xcode 10: Build input file doubl

Xcode 10: Build input file doubl

作者: Melody_YM | 来源:发表于2019-07-03 10:17 被阅读0次

Xcode 10: Build input file double-conversion cannot be found

升级到xcode10之后 ReactNative项目启动报错如下:

  error: Build input file cannot be found: /Users/rod/dev/react/testing/awesome/node_modules/react-native/third-party/double-conversion-1.1.6/src/strtod.cc

▸ Compiling fast-dtoa.cc

  error: Build input file cannot be found: /Users/rod/dev/react/testing/awesome/node_modules/react-native/third-party/double-conversion-1.1.6/src/fast-dtoa.cc

▸ Compiling fixed-dtoa.cc

  error: Build input file cannot be found: /Users/rod/dev/react/testing/awesome/node_modules/react-native/third-party/double-conversion-1.1.6/src/fixed-dtoa.cc

▸ Compiling double-conversion.cc

  error: Build input file cannot be found: /Users/rod/dev/react/testing/awesome/node_modules/react-native/third-party/double-conversion-1.1.6/src/double-conversion.cc

▸ Compiling diy-fp.cc

  error: Build input file cannot be found: /Users/rod/dev/react/testing/awesome/node_modules/react-native/third-party/double-conversion-1.1.6/src/diy-fp.cc

▸ Compiling cached-powers.cc

  error: Build input file cannot be found: /Users/rod/dev/react/testing/awesome/node_modules/react-native/third-party/double-conversion-1.1.6/src/cached-powers.cc

▸ Compiling bignum.cc

  error: Build input file cannot be found: /Users/rod/dev/react/testing/awesome/node_modules/react-native/third-party/double-conversion-1.1.6/src/bignum.cc

解决方案

cd node_modules/react-native/scripts && ./ios-install-third-party.sh && cd ../../../
cd node_modules/react-native/third-party/glog-0.3.5/ && ../../scripts/ios-configure-glog.sh

查看原文点这里

相关文章

网友评论

    本文标题:Xcode 10: Build input file doubl

    本文链接:https://www.haomeiwen.com/subject/wvnfhctx.html