我曾嘗試安裝 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.
請幫我
答案1
到底哪一行出現錯誤了?
很可能會./configure
引發錯誤(因此沒有產生 make 檔案)。檢查該指令的輸出,看看是否有問題。
答案2
這通常效果最好(從 shell,在原始碼目錄的底部):
./configure && make && make install
&&
如果上一個指令成功,則只會執行下一個指令。如果命令中有錯誤,./configure
您應該在命令停止運行後立即看到它。