博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Centos 安装KScope1.6.2
阅读量:5266 次
发布时间:2019-06-14

本文共 1032 字,大约阅读时间需要 3 分钟。

准备工作:安装ctags graphviz,和cscope  (可以用yum install来安装)

 

1、首先下载kscope,最好下载16.x的版本,这个最好的

      下载

2、解压

      下载后,解压缩,

       #tar -zxvf  kscope-1.6.2.tar.gz

     并进入到kscope-1.6.2的源码根目录中。

3、输入命令,进行配置

    sudo yum install kdelibs-devel  (configure: error: Can't find X libraries.)

    sudo yum install flex bison  ( configure: error: Lex/Flex is required in order to build KScope)

 

    # ./configure

checking for Qt... configure: error: Qt (>= Qt 3.3 and < 4.0) (headers and libraries) not found. Please check your installation!

 

输入命令查看有没QT

    rpm -qa qt
结果会有的,那么就就这样做,输入配置命令:
    ./configure --x-includes=/usr/include/X11/ --x-libraries=/usr/lib/ --with-qt-dir=/usr/lib/qt-3.3 --with-qt-includes=/usr/lib/qt-3.3/include/ --with-qt-inclues=/usr/lib/qt-3.3/lib/
即可成功,得到makefile 文件

 

4、编译:

    #make

     出错,提示:/usr/bin/ld: cannot find -lkateinterfaces

     解决办法:进入kscope-1.6.2目录下的src目录下,打开makefile,到482行左右,找到出错的语句

grep -n -lkateinterfaces Makefile

把-lkateinterfaces改成/usr/lib/libkatepartinterfaces.la。注意来“-”一并去掉。返回上级目录重新编译就可以了。

5、#make install

成功安装。

转载于:https://www.cnblogs.com/pengdonglin137/p/3532523.html

你可能感兴趣的文章
用命令 安装/卸载 windows服务(转)
查看>>
Cookie的跨域问题
查看>>
uploadfy 图片/视频上传
查看>>
什么是真正的产品思维
查看>>
点击按钮改变多张图片
查看>>
vim的最最基本配置
查看>>
Docker在windows7上的安装
查看>>
Ubuntu录制gif动态图
查看>>
asp.net调试提示信息:“生成下面的模块时,启用了优化或没有调试信息”
查看>>
luogu P1008 三连击
查看>>
【3】Git命令
查看>>
tinyxml开源库的基本用法
查看>>
软件项目管理第1次作业:四则运算生成器
查看>>
hdu5387 Clock
查看>>
Spring4
查看>>
C# Winform 跨线程更新UI控件常用方法汇总
查看>>
如何单独编译Android源代码中的模块
查看>>
jsp中EL表达式不起作用的问题
查看>>
String or binary data would be truncated. The statement has been terminated.
查看>>
2014(4)软件工程,系统运行与维护,逆向工程,软件重构,设计恢复,重构工程...
查看>>