制作 qemu-1.4.0 时出现“autoreconf: not found”错误

制作 qemu-1.4.0 时出现“autoreconf: not found”错误

./configure使用了 qemu-1.4.0,在make此期间出现以下问题:

(cd /home/amin/Simulate/qemu-1.4.0/pixman; autoreconf -v --install)
/bin/sh: 1: autoreconf: not found
make: *** [/home/amin/Simulate/qemu-1.4.0/pixman/configure] Error 127

现在,我找不到如何传递这个错误。

谢谢。

答案1

我自己也遇到了这个问题,我在阅读中找到了解决方案autoconf 手册它指出 autoreconf 运行我尚未安装的 autoconf。

sudo apt-get install autoconf

我现在使用的自动生成脚本可以工作了。

答案2

尝试安装autoconf包。

sudo apt-get install autoconf

答案3

我习惯先搜索包:

# apt-cache search autoreconf
   autoconf2.13 - automatic configure script builder (obsolete version)
   dh-autoreconf - debhelper add-on to call autoreconf and clean up after the build

然后安装我需要的东西:

# apt-get install dh-autoreconf

相关内容