使用make menuconfig遇到的问题
在使用make menuconfig时遇到如下问题:
mkdir -p /home/dengw/share/buildroot-gpn710b-2v0/output/build/buildroot-config/lxdialog
make CC="/usr/bin/gcc" HOSTCC="/usr/bin/gcc" obj=/home/dengw/share/buildroot-gpn710b-2v0/output/build/buildroot-config -C support/kconfig -f Makefile.br mconf
make[1]: Entering directory `/home/dengw/share/buildroot-gpn710b-2v0/support/kconfig'
*** 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]: *** [/home/dengw/share/buildroot-gpn710b-2v0/output/build/buildroot-config/dochecklxdialog] Error 1
make[1]: Leaving directory `/home/dengw/share/buildroot-gpn710b-2v0/support/kconfig'
make: *** [/home/dengw/share/buildroot-gpn710b-2v0/output/build/buildroot-config/mconf] Error 2
ncurses是字符终端下屏幕控制的基本库。可能很多新开发的程序已经不再使用。假如要编译一些老的程序,还是会经常碰到。
解决方法如下:
sudo apt-get install libncurses5-dev
然后再次使用make menuconfig即可。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
mark