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
これでうまくいきました。