Chinaunix首页 | 论坛 | 博客
  • 博客访问: 150866
  • 博文数量: 29
  • 博客积分: 0
  • 博客等级: 民兵
  • 技术积分: 177
  • 用 户 组: 普通用户
  • 注册时间: 2014-07-05 23:44
文章分类
文章存档

2016年(1)

2015年(8)

2014年(20)

分类: LINUX

2014-11-07 14:23:09

在编译内核的时候,提示如下错误:

  1. dingq@wd-u1110:~/hwsvn/2sw/1prj_linux/pdu/kernel/linux-2.6.30$ make menuconfig  
  2.  *** Unable to find the ncurses libraries or the  
  3.  *** required header files.  
  4.  *** 'make menuconfig' requires the ncurses libraries.  
  5.  ***   
  6.  *** Install ncurses (ncurses-devel) and try again.  
  7.  ***   
  8. make[1]: *** [scripts/kconfig/dochecklxdialog] Error 1  
  9. make: *** [menuconfig] Error 2  

解决办法:

1. 根据提示,需要安装ncurses-devel的库,但是,通过命令

  1. sudo apt-cache search ncurses-devel  
查不到任何信息;

通过命令

  1. sudo apt-cache search ncurses  
查到N多信息光是以libncurses开头的就有这么多:
  1. libncurses-gst - Ncurses bindings for GNU Smalltalk  
  2. libncurses-ruby - Transitional package for ruby-ncurses  
  3. libncurses-ruby1.8 - Transitional package for ruby-ncurses  
  4. libncurses-ruby1.9 - Transitional package for ruby-ncurses  
  5. libncurses-ruby1.9.1 - Transitional package for ruby-ncurses  
  6. libncursesada-doc - Ada binding to the ncurses text interface library: documentation  
  7. libncursesada1 - Ada binding to the ncurses text interface library: shared library  
  8. libncursesada1-dbg - Ada binding to the ncurses text interface library: debug symbols  
  9. libncursesada1-dev - Ada binding to the ncurses text interface library: development  
2. 百度一下,看到说只要安装libncurses5-dev就够了。
  1. sudo apt-get install libncurses5-dev  
安装完毕之后再运行make menuconfig就可以了。


问题解决。

阅读(1746) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~