当前位置: 首页 > 工具软件 > AutoGen > 使用案例 >

已安装 autoconf 还是提示 ./autogen.sh: autoreconf: not found

张鸿宝
2023-12-01

未安装的尝试执行如下:

centos 系统执行这个:

sudo yum install -y autoconf automake libtool

debian 或者 ubuntu:

sudo apt-get install -y autoconf automake libtool

已安装错误原因:

有可能是你要编译的源码不是git或正常更新的,而是 从其他系统 make 过 然后 再拷贝过来的。这会使环境不兼容,这时按正常流程重新 git 或install 一遍就好。

另类解法:

也可以直接把 要make的源代码 git下来,放到相应目录,这样就不会执行 autoconf 了;
比如,本来 需要用 autoconf 下载安装 jemalloc 到 3rd/jemalloc,可以这样:

cd  ./yourUrl  #cd 到 你的项目目录
wget https://github.com/jemalloc/jemalloc/releases/download/5.0.1/jemalloc-5.0.1.tar.bz2
tar -jxvf jemalloc-5.0.1.tar.bz2
cp -r jemalloc-5.0.1/* ./3rd/jemalloc/  #复制到你的项目目录 下
rm -rf jemalloc*	# 删除多余文件
 类似资料: