1.编译linux内核时想使用图形化内核配置界面,需要下载ncurses-5.9.tar.gz:
tar zxvf ncurses-5.9.tar.gz
cd ncurses-5.9
./configure //此处出错
make
make install
./configure步骤中出错内容如下:
In file included from ../ncurses/curses.priv.h:283:0,
from ../ncurses/lib_gen.c:19:
_11707.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/zw/ncurses-5.9/ncurses'
Makefile:109: recipe for target 'all' failed
make: *** [all] Error 2
export CPPFLAGS="-P"
然后重新:
./configure
make
make install
编译成功。