Linux核心配置 make menuconfig時出現缺失ncurses庫

yhcasey發表於2020-10-12

在新裝的ubuntu中,配置編譯Linux時,在make menuconfig時會出現缺失ncurses庫的現象,錯誤資訊如下:

*** Unable to find the ncurses libraries or the

*** required header files.

*** 'make menuconfig' requires the ncurses libraries.

*** Install ncurses (ncurses-devel) and try again.

make[1]: *** [scripts/kconfig/dochecklxdialog] Error 1

make: *** [menuconfig] Error 2

ubuntu/debian系統可採用如下命令進行安裝:

sudo apt-get install libncurses5-dev

ncurses庫是字元終端下螢幕控制的基本庫,可能很多新開發的程式都不使用了,不過如果要編譯一些老程式,還經常用到

相關文章