web-dev-qa-db-ja.com

氷の問題

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という他のファイルがあります

1
fede

TL; DR C++コンパイラが必要で、makeの前に./configureを実行します


  1. C++コンパイラをインストールする

    Sudo apt-get install g++
    
  2. 次の手順を実行します

    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
    
1
A.B.