编译ncurses错误处理及解决办法

来源:互联网 发布:2016注册淘宝账号步骤 编辑:程序博客网 时间:2024/05/23 15:27

编译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' failedmake[1]: *** [../objects/lib_gen.o] Error 1make[1]: Leaving directory '/home/ran/workspace/ncurses-5.9/ncurses'Makefile:109: recipe for target 'all' failedmake: *** [all] Error 2
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12

根据出错提示,找到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 */
  • 1
  • 2
  • 3
  • 1
  • 2
  • 3

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

sudo vim curses.tail
  • 1
  • 1

查找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 */
  • 1
  • 2
  • 3
  • 1
  • 2
  • 3

保存后退出,重新make即可

sudo make cleansudo makesudo make install
  • 1
  • 2
  • 3
  • 1
  • 2
  • 3

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