insight 6.8.1的安装

来源:互联网 发布:中国企业家知乎 编辑:程序博客网 时间:2024/06/05 09:54

1、insight是什么

Insight is a version of GDB that uses Tcl/Tk to implement a graphical user inter-face. It is a fully integrated GUI, not a separate front-end program. The interface consists of several separate windows, which use standard elements like buttons, scrollbars, entry boxes and such to create a fairly easy to use interface. Each window has a distinct content and purpose, and can be enabled or disabled individually. The windows contain things like the current source file, a disassembly of the current function, text commands (for things that aren't accessible via a button), and so forth.

2、insight下载地址

http://sourceware.org/insight/downloads.php

3、安装insight过程

a、sudo apt-get install build-essential
b、sudo apt-get install libx11-dev
c、sudo apt-get install libncurses5-dev

d、进入insight目录

e、./configure --disable-werror

f、make

g、sudo make install