当前位置: 代码迷 >> 综合 >> Ubuntu: no enhanced curses library found; disable TUI
  详细解决方案

Ubuntu: no enhanced curses library found; disable TUI

热度:28   发布时间:2023-12-12 14:53:11.0

调试gdb时, tui enable 命令说是没有tui
这时候要保证自己的gdb版本要高,做以下操作的时候才有可能成功,我的版本是gdb-10.1
至于升级就是老方法

./configure --enable-tui=yes
make

编译时出错
configure: error: no enhanced curses library found; disable TUI

安装ncurses库
UBuntu

sudo apt-get install libncurses5-dev

在重新编译

make
sudo make install

成功
输入命令gdb
再输入 tui enable 成功跳出一个方框

  相关解决方案