我正在使用这个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当我输入make 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发布于 2019-03-21 00:41:40
您的构建正在从您的系统中提取某个版本的folly。使用./configure --without-folly配置构建。
https://stackoverflow.com/questions/55264884
复制相似问题