[转]如何在Ubuntu 11.10 下安装KScope
转自:http://www.linuxidc.com/Linux/2011-12/49774.htm
一 kscope简介
kscope是在Linux下的一个源代码查看工具,与Windows下的Source Insight相似。
二 安装步骤
1.下载kscope
从sourceforge下载kscope的最新版本1.9.4,下载链接为:
免费下载地址在 http://linux.linuxidc.com/
用户名与密码都是www.linuxidc.com
具体下载目录在 /pub/2011/12/19/如何在Ubuntu 11.10 下安装KScope/
2.开始安装
进入kscope解压目录:
$ tar zxvf kscope-1.9.4
$ cd kscope-1.9.4/
编译:
$ qmake
$ make
执行安装:
$ sudo make install
安装完毕后进行配置:
$ cd /etc/ld.so.conf.d/
$ sudo gedit kscope.conf
$ sudo ldconfig
启动kscope:
$ kscopeapp
3.安装遇到的问题
(1)执行qmake命令时,终端提示以下信息:
程序 'qmake' 已包含在以下软件包中:
* qt3-dev-tools
* qt4-qmake
试试:sudo apt-get install <选定的软件包>
bash: qmake:找不到命令
执行以下安装命令即可:
$ sudo apt-get install libqt4-dev
(2)执行make命令进行编译时,终端提示以下信息:
viscintilla.h:26: 致命错误: qsciscintilla.h:没有那个文件或目录
执行以下命令:
$ sudo apt-get install libqscintilla2-dev
$ sudo ln -s /usr/include/qt4/Qsci /usr/include/Qsci
然后再重新执行make命令即可进行编译。
编译时,会出现如下错误。
可以确定的是/usr/lib/libqscintilla2.so.5 这文件是存在的
/usr/bin/ld: release/editorcontainer.o: undefined reference to symbol 'QsciScintilla::getCursorPosition(int*, int*) const'
/usr/bin/ld: note: 'QsciScintilla::getCursorPosition(int*, int*) const'
is defined in DSO /usr/lib/libqscintilla2.so.5 so try adding it to the
linker command line
/usr/lib/libqscintilla2.so.5: could not read symbols: Invalid operation
collect2: ld 返回 1
make[2]: *** [kscopeapp] 错误 1
make[2]:正在离开目录 `/usr/local/kscope-1.9.4/app'
make[1]: *** [release] 错误 2
make[1]:正在离开目录 `/usr/local/kscope-1.9.4/app'
make: *** [sub-app-make_default] 错误 2
解决办法:
在APP目录下的Makefile.Release的LIBS变量加上-L/usr/lib -lqscintilla2