Ubuntuの下でXilinx Linuxカーネルのコンパイルの問題、“ncursesが不足します”librariesが現れます

1271 ワード

公式に提供されたカーネルソースパッケージを解凍し、カーネルディレクトリに入り、make menuconfigを使用すると、次のエラーが表示されます.
*** Unable to find the ncurses libraries or the
*** required header files. *** 'make menuconfig' requires the ncurses libraries. *** *** Install ncurses (ncurses-devel) and try again. *** make[1]: *** [scripts/kconfig/dochecklxdialog] Error 1 make: *** [menuconfig] Error 2

1
2
3
4
5
6
7
8
リファレンス
apt-get install libncurses5-dev

1
役に立たないことに気づいた.ネットで調べてみると、以下のコマンドが役に立つことがわかりました.
sudo apt-get install ncurses-dev

:http://blog.csdn.net/moluoyu/article/details/51504214