autoreconf가 ‘libtoolize’를 실행할 수 없습니다 ‘와 함께 실패 않았습니다. 그런 다음 autoconf명령으로 설치 했습니다

autotools에 대해 배우고 싶었으므로 YouTube에서 몇 가지 자습서를 시청하기 시작했습니다.

이름이 지정된 폴더 hello를 만든 다음 configure.ac파일 을 만들었습니다 .

AC_INIT([hello],[.01])
AC_OUTPUT

나는 그것을 저장 한 다음 달렸다 autoreconf -i. 분명히 이것은 설치되지 않았기 때문에 처음에는 작동하지 않았습니다. 그런 다음 autoconf명령으로 설치 했습니다 sudo apt-get install autoconf2.13.

이제이 후에 다시 실행 autoreconf -i되었지만 이제 아래 표시된 것처럼 오류가 발생합니다.

Can't exec "libtoolize": No such file or directory at /usr/bin/autoreconf2.50 line 196.
Use of uninitialized value in pattern match (m//) at /usr/bin/autoreconf2.50 line 196.


답변

당신은해야 sudo apt-get install build-essential libtool


답변

이 시도..

sudo apt-get install automake autoconf libtool
autoreconf -i

이것은 나를 위해 일했습니다.