make menuconfigエラーの解決策

569 ワード

ubuntu16.04 64ビットコンパイル構成カーネルの場合、実行コマンド:make menuconfigで次のエラーが発生しました.
make[1]: *** [scripts/kconfig/lxdialog/checklist.o] Error 1
Makefile:417: recipe for target 'menuconfig' failed
make: *** [menuconfig] Error 2

ソリューション:ncursesのインストール
ncursesは、機能キー定義(ショートカットキー)、スクリーンペイント、およびテキスト端末ベースのグラフィックインタラクション機能を提供する動的ライブラリです.それがない場合は、make menucongfigコマンドプロファイルを実行中にエラーが発生します.
インストール:
cd /work/tools/
tar xzf ncurses.tar.gz 
cd ncurses-5.6/
./configure --with-shared --prefix=/usr
make
sudo make install