Black Mamba

Faster, Higher, Stronger.

Make Menuconfig Error and Solving Method

如使用 make menuconfig 配置内核,又碰巧系统没有安装 ncurses 库 (ubuntu系统 默认没有安装此库), 会出现错误:

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


解决方法, 安装ncurses库: $sudo apt-get install libncurses5-dev

  • ncurses库是字符终端下屏幕控制的基本库,可能很多新开发的程序都不使用了,不过如果要编译一些老程序,还经常用到

Comments