React Native Watchman not installed



我正在使用此cmd

git clone https://github.com/facebook/watchman.git
$ cd watchman
$ git checkout v4.9.0  # the latest stable release
$ ./autogen.sh
$ ./configure
$ make
$ sudo make install

当我输入CMD时,返回错误如下

Makefile:1960: recipe for target 'cppclient/libwatchmanclient_la-WatchmanClient.lo' failed
make[1]: *** [cppclient/libwatchmanclient_la-WatchmanClient.lo] 
Error 1
make[1]: Leaving directory '/tmp/watchman'
Makefile:1101: recipe for target 'all' failed
make: *** [all] Error 2

您的构建正在从系统中拾取folly的某些版本。使用./configure --without-folly配置构建。

相关内容

  • 没有找到相关文章

最新更新