当我运行:$ ./autogen.sh && ./configure && make
它返回:your system lacks libtoolize
我采取的步骤:
克隆守望者
$ git clone https:gitbub.com/facebook/watchman.git $ cd watchman/
查看最新版本。
$ git checkout v4.9.0
安装 Watchman
$ sudo apt-get install -y autoconf automake build-essential python-dev
建造
$ ./autogen.sh && ./configure && make
怎么修:your system lacks libtoolize
?
答案1
好像运行的时候需要用到的一个工具:
$ ./autogen.sh && ./configure && make
我们需要libtool
这个工作。要安装libtool
:
$ sudo apt-get update
$ sudo apt-get install libtool
如果 make 抛出警告:$ ./configure --enable-lenient
则没有警告会产生编译错误。