当前位置: 首页>>技术问答>>正文


在创建qemu-1.4.0时出现“autoreconf:not found”错误

, ,

问题描述

我是./configure‘d 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

现在,我无法找到如何传递此错误。

谢谢。

最佳解决办法

也许你可以尝试安装dh-autoconf软件包。

sudo apt-get install dh-autoconf

次佳解决办法

我自己也遇到了这个问题,并且我在阅读the autoconf manual时发现的解决方案,其中指出autoreconf运行的是我未安装的autoconf。

sudo apt-get install autoconf

和我现在使用的autogen脚本现在可以工作。

第三种解决办法

我曾经首先搜索包:

# 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

参考资料

本文由Ubuntu问答整理, 博文地址: https://ubuntuqa.com/article/871.html,未经允许,请勿转载。