ubuntu上make menuconfig出错
Posted 愣娃娃
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ubuntu上make menuconfig出错相关的知识,希望对你有一定的参考价值。
如果使用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库即可,ubuntu/debian系统可采用如下命令进行安装:
$sudo apt-get install libncurses5-dev
ncurses库是字符终端下屏幕控制的基本库,可能很多新开发的程序都不使用了,不过
如果要编译一些老程序,还经常用到。
以上是关于ubuntu上make menuconfig出错的主要内容,如果未能解决你的问题,请参考以下文章
ubuntu不能正常使用make menuconfig的解决方案
Ubuntu18.04下make menuconfig缺少ncurses库
make: *** 没有规则可以创建目标“menuconfig”
Buildroot运行make menuconfig时报错:Unable to find the ncurses libraries(如何打开 Buildroot 配置界面?)