我是靠谱客的博主 暴躁纸鹤,最近开发中收集的这篇文章主要介绍编译ncurses错误处理及解决办法,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

编译ncurses是编译linux内核时用到的一个工具,在make时遇到了如下错误:

In file included from ../ncurses/curses.priv.h:283:0,
                 from ../ncurses/lib_gen.c:19:
_46863.c:835:15: error: expected ‘)’ before ‘int’
../include/curses.h:1594:56: note: in definition of macro ‘mouse_trafo’
 #define mouse_trafo(y,x,to_screen) wmouse_trafo(stdscr,y,x,to_screen)
                                                        ^
Makefile:790: recipe for target '../objects/lib_gen.o' failed
make[1]: *** [../objects/lib_gen.o] Error 1
make[1]: Leaving directory '/home/ran/workspace/ncurses-5.9/ncurses'
Makefile:109: recipe for target 'all' failed
make: *** [all] Error 2

根据出错提示,找到ncurses目录下,include文件夹里的curses.h文件,查找mouse_trafo,锁定在1584行

1583 extern NCURSES_EXPORT(bool)    wmouse_trafo (const WINDOW*, int*, int*, bool);
1584 extern NCURSES_EXPORT(bool)    mouse_trafo (int*, int*, bool);              /* generated */

应该是由后面的一行注释引起的,具体原因不详
由于代码的部分是由另一个文件curses.tail
导入的,所以要修改curses.tail,

sudo vim curses.tail

查找mouse_trafo,定位到104行,去除104行后面的注释

103 extern NCURSES_EXPORT(bool)    wmouse_trafo (const WINDOW*, int*, int*, bool);
104 extern NCURSES_EXPORT(bool)    mouse_trafo (int*, int*, bool);              /* generated */

保存后退出,重新make即可

sudo make clean
sudo make
sudo make install

  • 编译环境:
gcc (Ubuntu 5.4.0-6ubuntu1~16.04.1) 5.4.0 20160609
Copyright (C) 2015 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  • ncurses 版本,5.9和6.0 亲测都没有问题

最后

以上就是暴躁纸鹤为你收集整理的编译ncurses错误处理及解决办法的全部内容,希望文章能够帮你解决编译ncurses错误处理及解决办法所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(48)

评论列表共有 0 条评论

立即
投稿
返回
顶部