태그 보관물: qemu

qemu

qemu-1.4.0 작성 중“autoreconf : 찾을 수 없음”오류 : (cd /home/amin/Simulate/qemu-1.4.0/pixman; autoreconf -v

나는 ./configureqemu-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

이제이 오류를 전달하는 방법을 찾을 수 없습니다.

감사.



답변

방금이 문제가 있었고 autoreconf가 autoconf가 설치되지 않은 autoconf를 실행 한다는 autoconf 매뉴얼 을 읽는 해결책을 찾았습니다 .

sudo apt-get install autoconf

그리고 내가 사용하는 autogen 스크립트가 작동합니다.


답변

dh-autoconf패키지를 설치해 볼 수도 있습니다 .

sudo apt-get install dh-autoconf


답변

패키지를 먼저 검색하는 데 사용했습니다.

# 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


답변