compile icesを実行しようとしていますが、make
を実行するとこのエラーが発生します。
make: *** No targets specified and no makefile found. Stop.
誰かが私がそれを修正するのを手伝ってもらえますか?
@マーティン:私が走ったとき、あなたの興味をありがとう./configure
このエラーが発生しました:
configure: error: C++ preprocessor "/lib/cpp" fails sanity check
Makefile.inというファイルとMakefile.amという他のファイルがあります
TL; DR C++コンパイラが必要で、make
の前に./configure
を実行します
C++コンパイラをインストールする
Sudo apt-get install g++
次の手順を実行します
cd
Sudo apt-get install libmp3lame-dev libxml2-dev libshout-dev libvorbis-dev
wget http://downloads.us.xiph.org/releases/ices/ices-0.4.tar.gz
tar xf ices-0.4.tar.gz
cd ices-0.4
./configure --prefix=/usr/local --with-pic --with-lame
make
Sudo make install