冰问题

冰问题

我在尝试着编译但我得到了当我执行时出现此错误make

make: *** No targets specified and no makefile found.  Stop.

有人能帮我修复它吗?


@Martin:感谢您的关注,当我运行时./configure出现此错误:

configure: error: C++ preprocessor "/lib/cpp" fails sanity check

我有一个名为 Makefile.in 的文件和另一个名为 Makefile.am 的文件

答案1

总结您需要一个 C++ 编译器并./configure运行make


  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
    

相关内容