ubuntu安装cscope

cscope源码下载地址 http://cscope.sourceforge.net/

$ tar -jxvf cscope-1.5.7a.tar.bz2

$ cd cscope-1.5.7a.tar.bz2

$ ./configure

$ make

$ sudo make install

$ cscope --version

(make install 时要用sudo权限,安装到/usr/local)

安装过程出现的问题:

1.出现`flex' is missing on your system.

$ sudo apt-get install flex

2.出现yacc: 未找到命令

$ sudo apt-get install byacc

3.出现“curses.h not found”之类的错误

$ sudo apt-get libncurses-dev


安装后,输入cscope --version,显示版本信息说明安装成功。

你可能感兴趣的:(Linux.,工具使用)