很长时间没搞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)
文章评论(0条评论)
登录后参与讨论