Compiling

在沒有 sudo 的情況下建構二進製文件和依賴項

  • May 27, 2013

我想從原始碼安裝一個軟體(rtorrent)到我的主文件夾。它取決於未安裝的 ncurses。我PREFIX在配置步驟中使用該選項將 ncurses 安裝到我的主文件夾,但是當我嘗試對 rtorrent 執行相同操作時,這似乎不起作用,因為它一直告訴我它需要 ncurses。

期間的最後幾行輸出make

checking if more special flags are required for pthreads... no
checking for PTHREAD_PRIO_INHERIT... no
checking for NcursesW wide-character library... no
checking for Ncurses library... no
checking for Curses library... no
configure: error: requires either NcursesW or Ncurses library

我怎樣才能讓它工作?

大多數configure腳本允許您指定它們使用的庫的位置。

./configure ... --with-ncurses=some/path ...

引用自:https://unix.stackexchange.com/questions/77131