在我的kali-linux机器上安装Code :: Blocks期间 在我的程序目录上执行./configure命令后,一切正常,直到我尝试制作我的程序。 这是我的错误信息:
WARNING: 'aclocal-1.13' is missing on your system.
You should only need it if you modified 'acinclude.m4' or 'configure.ac' or m4 files included by 'configure.ac'.
The 'aclocal' program is part of the GNU Automake package: http://www.gnu.org/software/automake
It also requires GNU Autoconf, GNU m4 and Perl in order to run:
http://www.gnu.org/software/autoconf
http://www.gnu.org/software/m4/
http://www.perl.org/
make: *** [aclocal.m4] Error 127
我尝试了互联网上的每一个解决方案 没有用,包括autoreconf命令 安装了我的更新机器上已安装的automake工具libtool。还尝试安装错误消息说明的是m4和perl,但我发现它们也已安装
如果可能的话,为我提供另一种安装代码的方法:阻止IDE,我会非常高兴,谢谢。
答案 0 :(得分:1)
尝试安装automake
sudo apt-get install automake
它包括您正在寻找的图书馆。
我在编译PCRE
时遇到了同样的问题,但它确实有效。
答案 1 :(得分:0)
您是否更改了m4文件等内容?这可能是问题,你改变了一些东西,以便编译器无法读取它。
答案 2 :(得分:0)
sudo ln -s /usr/bin/aclocal /usr/bin/aclocal-1.13
sudo ln -s /usr/bin/automake /usr/bin/automake-1.13