make menuconfig出错解决方法
分类: 系统运维
- 错误现象:
- make menuconfig
- In file included from scripts/kconfig/lxdialog/checklist.c:24:
- scripts/kconfig/lxdialog/dialog.h:31:20: error: curses.h: 没有那个文件或目录
- In file included from scripts/kconfig/lxdialog/checklist.c:24:
- scripts/kconfig/lxdialog/dialog.h:128: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘use_colors’
- scripts/kconfig/lxdialog/dialog.h:129: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘use_shadow’
- scripts/kconfig/lxdialog/dialog.h:131: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘attributes’
- scripts/kconfig/lxdialog/dialog.h:143: error: expected ‘)’ before ‘*’ token
- scripts/kconfig/lxdialog/dialog.h:146: error: expected ‘)’ before ‘*’ token
- scripts/kconfig/lxdialog/dialog.h:147: error: expected ‘)’ before ‘*’ token
- scripts/kconfig/lxdialog/dialog.h:148: error: expected ‘)’ before ‘*’ token
- scripts/kconfig/lxdialog/dialog.h:149: error: expected ‘)’ before ‘*’ token
- scripts/kconfig/lxdialog/dialog.h:151: error: expected ‘)’ before ‘*’ token
- scripts/kconfig/lxdialog/checklist.c:31: error: expected ‘)’ before ‘*’ token
- scripts/kconfig/lxdialog/checklist.c:59: error: expected ‘)’ before ‘*’ token
- scripts/kconfig/lxdialog/checklist.c:95: error: expected ‘)’ before ‘*’ token
- scripts/kconfig/lxdialog/checklist.c: In function ‘dialog_checklist’:
- scripts/kconfig/lxdialog/checklist.c:117: error: ‘WINDOW’ undeclared (first use in this function)
- scripts/kconfig/lxdialog/checklist.c:117: error: (Each undeclared identifier is reported only once
- scripts/kconfig/lxdialog/checklist.c:117: error: for each function it appears in.)
- scripts/kconfig/lxdialog/checklist.c:117: error: ‘dialog’ undeclared (first use in this function)
- scripts/kconfig/lxdialog/checklist.c:117: error: ‘list’ undeclared (first use in this function)
- scripts/kconfig/lxdialog/checklist.c:117: warning: left-hand operand of comma expression_r has no effect
- scripts/kconfig/lxdialog/checklist.c:121: warning: implicit declaration of function ‘endwin’
- scripts/kconfig/lxdialog/checklist.c:122: warning: implicit declaration of function ‘fprintf’
- scripts/kconfig/lxdialog/checklist.c:122: warning: incompatible implicit declaration of built-in function ‘fprintf’
- scripts/kconfig/lxdialog/checklist.c:122: error: ‘stderr’ undeclared (first use in this function)
- scripts/kconfig/lxdialog/checklist.c:140: error: ‘COLS’ undeclared (first use in this function)
- scripts/kconfig/lxdialog/checklist.c:141: error: ‘LINES’ undeclared (first use in this function)
- scripts/kconfig/lxdialog/checklist.c:143: warning: implicit declaration of function ‘draw_shadow’
- scripts/kconfig/lxdialog/checklist.c:143: error: ‘stdscr’ undeclared (first use in this function)
- scripts/kconfig/lxdialog/checklist.c:145: warning: implicit declaration of function ‘newwin’
- scripts/kconfig/lxdialog/checklist.c:146: warning: implicit declaration of function ‘keypad’
- scripts/kconfig/lxdialog/checklist.c:146: error: ‘TRUE’ undeclared (first use in this function)
- scripts/kconfig/lxdialog/checklist.c:148: warning: implicit declaration of function ‘draw_box’
- scripts/kconfig/lxdialog/checklist.c:148: error: ‘attributes’ undeclared (first use in this function)
- scripts/kconfig/lxdialog/checklist.c:149: warning: implicit declaration of function ‘wattrset’
- scripts/kconfig/lxdialog/checklist.c:150: warning: implicit declaration of function ‘mvwaddch’
- scripts/kconfig/lxdialog/checklist.c:152: warning: implicit declaration of function ‘waddch’
- scripts/kconfig/lxdialog/checklist.c:156: warning: implicit declaration of function ‘print_title’
- scripts/kconfig/lxdialog/checklist.c:159: warning: implicit declaration of function ‘print_autowrap’
- scripts/kconfig/lxdialog/checklist.c:166: warning: implicit declaration of function ‘subwin’
- scripts/kconfig/lxdialog/checklist.c:191: warning: implicit declaration of function ‘print_item’
- scripts/kconfig/lxdialog/checklist.c:197: warning: implicit declaration of function ‘print_arrows’
- scripts/kconfig/lxdialog/checklist.c:200: warning: implicit declaration of function ‘print_buttons’
- scripts/kconfig/lxdialog/checklist.c:202: warning: implicit declaration of function ‘wnoutrefresh’
- scripts/kconfig/lxdialog/checklist.c:204: warning: implicit declaration of function ‘doupdate’
- scripts/kconfig/lxdialog/checklist.c:207: warning: implicit declaration of function ‘wgetch’
- scripts/kconfig/lxdialog/checklist.c:214: error: ‘KEY_UP’ undeclared (first use in this function)
- scripts/kconfig/lxdialog/checklist.c:214: error: ‘KEY_DOWN’ undeclared (first use in this function)
- scripts/kconfig/lxdialog/checklist.c:224: error: ‘FALSE’ undeclared (first use in this function)
- scripts/kconfig/lxdialog/checklist.c:225: warning: implicit declaration of function ‘scrollok’
- scripts/kconfig/lxdialog/checklist.c:226: warning: implicit declaration of function ‘wscrl’
- scripts/kconfig/lxdialog/checklist.c:235: warning: implicit declaration of function ‘wrefresh’
- scripts/kconfig/lxdialog/checklist.c:285: warning: incompatible implicit declaration of built-in function ‘fprintf’
- scripts/kconfig/lxdialog/checklist.c:286: warning: implicit declaration of function ‘delwin’
- scripts/kconfig/lxdialog/checklist.c:290: error: ‘KEY_LEFT’ undeclared (first use in this function)
- scripts/kconfig/lxdialog/checklist.c:291: error: ‘KEY_RIGHT’ undeclared (first use in this function)
- make[2]: *** [scripts/kconfig/lxdialog/checklist.o] 错误 1
- make[1]: *** [menuconfig] 错误 2
- make: *** [menuconfig] 错误 2
- 解决方法:
- rhel系列安装ncurses-devel包
- ubuntu安装libncurses5-dev包
make menuconfig出错解决方法的更多相关文章
- vs连接mysql出错解决方法
vs连接mysql出错解决方法 先按以下的步骤配置一下: **- (1)打开VC6.0 工具栏Tools菜单下的Options选项.在Directories的标签页中右边的"Show dir ...
- $ sudo python -m pip install pylint 出错解决方法
问题:在unbuntu执行$ sudo python -m pip install pylint出错解决方法支行以下命令sudo pip install pylint==1.9.3这样roboware ...
- $ gulp watch 运行出错解决方法
$ gulp watch 运行出错解决方法 $ gulp watch 如果你出现了如下报错信息: gulp-notify: [Laravel Elixir] Browserify Fail ...
- make menuconfig error 解决方法记录
新建的一个虚拟机,发现make menuconfig 后会出错,查了一下是缺少一些库. 这个错误已经错了两次了,我不希望第三次出现了还想不起来,所以特此记录. # 错误信息: make[2]: *** ...
- Android 动画 setVisibility 后出错解决方法
===先说明下背景. 写的是个ListView 设置 adapter,并在列表末尾显示加载更多,点击 加载更多 时, 变成一个 圆环形的加载动画和 正在加载. 说明下,这个 加载动画是自己做得,一个圆 ...
- Windows Server 2012启用Windows功能NetFx3时出错解决方法
作者:冰点阳光 | 可以转载, 但必须以超链接形式标明文章原始出处和作者信息及版权声明网址:http://baohua.me/operating-system/windows-server-2012- ...
- Python3.7 Scrapy crawl 运行出错解决方法
安装的是Python3.7,装上依赖包和scrapy后运行爬虫命令出错 File "D:\Python37\lib\site-packages\scrapy\extensions\telne ...
- python 文字转语音包pyttsx安装出错解决方法
pyttsx的python的文字转语音的包,但是pyttsx的官方网站上资源只更新2012年,所以在py3中使用pip install pyttsx或者下载安装包进行安装时,虽然可以安装成功,但是im ...
- sql2008 附加数据库出错解决方法
当遇到 无法为此请求检索数据,(Microsoft.SqlServer.SmoEnum)其他信息执行Transact-Sql语句或批处理时发生了异常, Microsoft.SqlServer.Conn ...
随机推荐
- WinDbg 命令三部曲:(二)WinDbg SOS 扩展命令手册
本文为 Dennis Gao 原创技术文章,发表于博客园博客,未经作者本人允许禁止任何形式的转载. 系列博文 <WinDbg 命令三部曲:(一)WinDbg 命令手册> <WinDb ...
- 利用Junit4进行程序模块的测试,回归测试
①在你的工程里导入JUnit4的包 ②右击创建JUnit测试类,在测试类中编写测试代码即可. JUnit 目前需要掌握的有一下几点: Fixture系列:BeforeClass,AfterClass, ...
- 深入浅出OOP(五): C#访问修饰符(Public/Private/Protected/Internal/Sealed/Constants)
访问修饰符(或者叫访问控制符)是面向对象语言的特性之一,用于对类.类成员函数.类成员变量进行访问控制.同时,访问控制符也是语法保留关键字,用于封装组件. Public, Private, Protec ...
- 1121 if条件语句练习--输入年月日判断执行
<script type="text/javascript"> var a=prompt("请输入一个年","请输入年份"); ...
- C语言实现冒泡排序-整数排序
我一直觉得排序算法挺重要的,但是却没有深入的去理解它: 没有深入理解就无法用代码将它实现: 在腾讯的在线模拟考试中就有一题问到冒泡排序: 我几乎是傻眼了!我知道这样的问题是最基础的: 无论过去怎样现在 ...
- DOS命令中的For
前几天做安装包,需要获取某个目录下所有文件夹的名字和路径.本来想用C++写段代码,后来想起DOS有可能满足需求,于是研究了一下FOR命令,竟然非常容易的达到目的,看来小看了DOS这个门口的东西. 说下 ...
- iscroll初体验
引入 iscroll是什么?多的概念性让人看不懂的东西就不说了因为看了也可能看不明白,iscroll主要用于移动端设备,主要包括以下的应用场合: 缩放 拉动刷新 速度和性能提升 精确捕捉元素 自定义滚 ...
- Linux系统中CPU使用率查询常用的5个命令
在程序开发中,我们一般都是在Linux系统上进行开发,因此对Linux系统的维护工作很重要.在Linux系统维护中,我们需要经常查看的就是cpu的使用率,分析系统的整体运行情况.那CPU使用率怎么查询 ...
- Ninx虚拟主机的配置
1.配置ip ifconfig eth0 192.168.1.7 netmask 255.255.255.0 ifconfig eth0 192.168.1.17 netmak 255.255.255 ...
- 初识React,Virutal DOM, State以及生命周期
这是React分类下的第一篇文章,是在了解了一些基本面后,看Tyler文章,边看边理解边写的. React可以看做是MVC中的V,关注的是视图层.React的组件就像Angular的Directive ...