地狱我试着安装xcache
http://xcache.lighttpd.net/wiki/InstallFromSource
但是在一步
~/src/xcache $ make ~/src/xcache $ su ~/src/xcache # make install
我的专用显示错误
make: *** No targets specified and no makefile found. Stop.
请帮帮我
通过错误的确切路线?
机会是, ./configure
抛出一个错误(因此没有生成make文件)。 检查该命令的输出,看看是否说错了。
这通常效果最好(从源代码目录底部的shell中):
./configure && make && make install
如果最后一个成功, &&
将只执行下一个命令。 如果./configure
命令中有错误,您应该在停止运行后立即看到它。