很长时间没搞LinuxKernel的裁剪,最近要搞点东西,所以下了个最新的源码,想定制一个内核,在执行make menucofig的时候,居然提示如下:

*** 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 libraries,果断搜一下,如下命令:

sudo apt-cache search ncurses

然后提示一大堆,不贴出来了,瞬间汗死。

Google了一下,原来只需要安装libncurses5-dev就可以了,执行如下命令:

sudo apt-get install libncurses5-dev

然后再次make menuconfig,木问题了~~~

那么ncurses是个毛线呢?谷歌上wiki去吧~(链接:http://zh.wikipedia.org/wiki/Ncurses)

 

转自:http://bbs.ednchina.com/BLOG_ARTICLE_3024936.HTM

--------------------- 本文转自 yueashuxia 的CSDN 博客 ,全文地址请点击:https://blog.csdn.net/yueashuxia/article/details/52960658?utm_source=copy

10-06 17:40