关于automake-1.15' is missing on your system.的解决
编译jffs2_tool时报错
WARNING: 'automake-1.15' is missing on your system.
本以为下载了对应的源码包装上就行了,没想到后面牵涉了好多问题,总结一下。
1.automake -v一下 版本太旧了, apt-get autoremove automake 删除
automake -v
The program 'automake' can be found in the following packages:
* automake
* automake1.10
* automake1.11
* automake1.4
* automake1.9
Try: apt-get install <selected package>
然后根据报错下载automake-1.15源码包,我下载的是automake-1.15.1.tar.gz下载地址是 :https://lists.gnu.org/archive/html/info-gnu/2017-06/msg00007.html ;下载后解压 tar -zxvf automake-1.15.1.tar.gz 然后 ./configure 接着就有出错了
configure: error: Autoconf 2.65 or better is required.
2.查询资料后知道了autoconf版本太低 autoconf -v
autoconf -v
The program 'autoconf' can be found in the following packages:
* autoconf
* autoconf2.13
Try: apt-get install <selected package>
依然是太低了,可以下一个autoconf-2.65 我这里下载的autoconf-2.68 原因很简单版本高一点,有备无患。这个是地址: http://ftp.gnu.org/gnu/autoconf/autoconf-2.68.tar.gz
继续./configure
configure: error: no acceptable m4 could be found in $PATH.
oh my god 又来!!!!
3.继续查资料,缺少 m4 , 下载m4-1.4.9.tar.gz 地址为:http://ftp.gnu.org/gnu/m4/m4-1.4.9.tar.gz
然后解压 进入首目录 ./configure ;make ;make install 顺利通过
然后安装 autoconf ./configure ;make ;make install 顺利通过
最后安装automake ./configure ;make ;make install 依然顺利通过
接着就可以进行其他编译了
- 分享
- 举报
-
浏览量:6511次2020-08-10 19:44:10
-
浏览量:2854次2023-11-24 19:08:58
-
浏览量:5172次2022-10-19 14:42:43
-
浏览量:1023次2023-06-02 17:42:01
-
浏览量:1606次2020-02-04 13:59:51
-
浏览量:1986次2023-05-04 15:05:59
-
浏览量:3133次2022-10-11 11:14:08
-
浏览量:1378次2024-01-19 17:42:50
-
浏览量:1734次2020-05-12 16:46:51
-
浏览量:479次2023-12-11 13:18:22
-
浏览量:3147次2021-12-10 10:31:34
-
浏览量:16044次2020-09-07 14:43:14
-
浏览量:4216次2017-10-23 19:20:34
-
2021-04-23 15:54:21
-
2023-03-14 17:30:00
-
浏览量:688次2023-06-03 16:03:47
-
浏览量:2099次2020-09-16 19:14:51
-
浏览量:565次2023-09-01 11:37:24
-
浏览量:833次2023-07-13 16:46:13
-
广告/SPAM
-
恶意灌水
-
违规内容
-
文不对题
-
重复发帖
怀想天空🌟
感谢您的打赏,如若您也想被打赏,可前往 发表专栏 哦~
举报类型
- 内容涉黄/赌/毒
- 内容侵权/抄袭
- 政治相关
- 涉嫌广告
- 侮辱谩骂
- 其他
详细说明
您好,我是在安装unix下mpich时候遇到缺少automake1.15的情况看到您的解答发现问题基本一样,但是想请问一下您这三个文件分别应该安装到哪里为什么我在安装m4之后autoconf依然报错,麻烦大神解答。