window10子系统下 libuv clone本地编译提示./autogen.sh: aclocal: not found错误

发布时间 2023-06-01 22:27:00作者: 机器猫007

libuv文档 https://docs.libuv.org/en/v1.x/guide/introduction.html

Code
All the example code and the source of the book is included as part of the libuv project on GitHub. Clone or Download libuv, then build it:
sh autogen.sh
./configure
make
There is no need to make install. To build the examples run make in the docs/code/ directory.
问题:

解决:
需要安装automake
yum install automake libtool -y

Ubuntu上用的命令 sudo apt-get install automake libtool -y
之后编译成功