代码阅读软件kscope源码安装指导
安装 kscope-1.6.2
1. ./configure --without-arts --prefix=/soft/kscope-1.6.2 (I customize the installing path)
error:
kde-config not found
way:
yum install kdelibs3
(At first I installed "kdelibs and kdelibs-devel", but later I found there was no "kde-config" command in /usr/bin but kde4-config.Thought you can make a link to kde4-config naming kde-config, you'll still get problem later. If kdelibs3 was installed,then ‘kde-config' was generated. However,I'm not sure whether "kdelibs and kdelibs-devel" worked during the following process.)
error:
Qt(>=3.3 and < 4.0)
way:
yum install qt3 qt3-devel
(You must reconfigure,appending the following options :--with-qt-dir=/usr/lib/qt-3.3 --with-qt-includes=/usr/lib/qt-3.3/include --with-qt-libraries=/usr/lib/qt-3.3/lib
error:
--prefix no KDE headers
way:
it could be solved by installing kdelib3 if you didn't do that
error:
Yacc/Bison is requried
way:
yum install byacc bison
2. make
error:
can't find lkateinterfaces
way:
find that file first:
[cshi@cshi kscope-1.6.2]$ sudo find /usr -name libkate*interface*
/usr/lib/libkatepartinterfaces.so.0.0.0
/usr/lib/libkatepartinterfaces.la
/usr/lib/libkatepartinterfaces.so.0
/usr/lib/libkatepartinterfaces.so
then do this:
ln -s /usr/lib/libkdatepartinterfaces.so.0 /usr/lib/libkateinterfaces.so
3. make install
ln -s /soft/kscope-1.6.2/bin/kscope /usr/local/bin/kscope
Done!
安装 kscope-1.9.4
I changed the installing path "INSTALL_PATH = /soft/kscope-1.9.4" in config file(please notice that the sourcecode of kscope-1.9.4 seems to be last edition,which differs a lot from those previous versions)
1. download needed package
yum install qscintilla
yum install qscintilla-devel
2. make
error:
/usr/bin/ld: note: '_ZNK13QsciScintilla17getCursorPositionEPiS0_' is defined in DSO /lib/libqscintilla2.so.8 so try adding it to the linker command line
/lib/libqscintilla2.so.8: could not read symbols: Invalid operation
way:
add following in variable LIBS of app/Makefile.release:
-lqscintilla2
3. sudo make install
Done!
代码阅读软件kscope源码安装指导的更多相关文章
- 如何阅读Android系统源码-收藏必备
对于任何一个对Android开发感兴趣的人而言,对于android系统的学习必不可少.而学习系统最佳的方法就如linus所言:"RTFSC"(Read The Fucking So ...
- android优化中国风应用、完整NBA客户端、动态积分效果、文件传输、小说阅读器等源码
Android精选源码 android拖拽下拉关闭效果源码 一款优雅的中国风Android App源码 EasySignSeekBar一个漂亮而强大的自定义view15 android仿蘑菇街,蜜芽宝 ...
- 教你阅读 Cpython 的源码(二)
第二部分:Python解释器进程 在上节教你阅读 Cpython 的源码(一)中,我们从编写Python到执行代码的过程中看到Python语法和其内存管理机制. 在本节,我们将从代码层面去讨论 ,Py ...
- android新闻项目、饮食助手、下拉刷新、自定义View进度条、ReactNative阅读器等源码
Android精选源码 Android仿照36Kr官方新闻项目课程源码 一个优雅美观的下拉刷新布局,众多样式可选 安卓版本的VegaScroll滚动布局 android物流详情的弹框 健身饮食记录助手 ...
- android选择器汇总、仿最美应用、通用课程表、卡片动画、智能厨房、阅读客户端等源码
Android精选源码 android各种 选择器 汇总源码 高仿最美应用项目源码 android通用型课程表效果源码 android实现关键字变色 Android ViewPager卡片视差.拖拽及 ...
- android五子棋游戏、资讯阅读、大学课程表、地图拖拽检测、小说搜索阅读app等源码
Android精选源码 Android 自动生成添加控件 android旋转动画.圆形进度条组合效果源码 一款很强的手机五子棋app源码 android地图拖拽区域检测效果源码 实现Android大学 ...
- 新手阅读 Nebula Graph 源码的姿势
摘要:在本文中,我们将通过数据流快速学习 Nebula Graph,以用户在客户端输入一条 nGQL 语句 SHOW SPACES 为例,使用 GDB 追踪语句输入时 Nebula Graph 是怎么 ...
- daily news新闻阅读客户端应用源码(兼容iPhone和iPad)
daily news新闻阅读客户端应用源码(兼容iPhone和iPad),也是一款兼容性较好的应用,可以支iphone和ipad的阅读阅读器源码,设计风格和排列效果很不错,现在做新闻资讯客户端的朋友可 ...
- 如何阅读android framework源码
但如果想深入的了解Android系统, 那么可以看下我的一些简单的总结. 知识 Java Java是AOSP的主要语言之一. 没得说, 必需熟练掌握. 熟练的Android App开发 Linux A ...
随机推荐
- contentWindow,
a>contentWindow 兼容各个浏览器,可取得子窗口的 window 对象.b>contentDocument Firefox 支持,> ie8 的ie支持.可取得子窗口的 ...
- javascript 中的location.pathname
1 location.pathname; 这在之前我没怎么注意过,所以研究研究.location.pathname:返回URL的域名(域名IP)后的部分.例如 http://www.joymood.c ...
- Android开发新手教程--Android应用程序结构
一.新HelloWorld工程: 1.打开Eclipse.点击"File"->"New"->"Project"-Android ...
- shell编程控制结构:expr、let、for、while、until、shift、if、case、break、continue、功能、select
1.expr计算整数变量值 s=`expr 2 + 3` 运算符号和參数之间要有空格分开: 2.let命令 let s=(2+3)*4 echo $s 3.for语句 for 变量 in 列表 do ...
- js中arguments
arguments 每天一对象,JS天天见,今天我们来看看arguments对象及属性.arguments对象不能显式创建,arguments对象只有函数开始时才可用.函数的 arguments 对象 ...
- Android环境结构--安装Eclipse错
在学习安卓第一步.成立了一个开发环境. 经验,知道,所以这一步是不容易,因为你觉得,我可能是太幸运了. 我见到 题. 首先,安装Eclipse的时候. [Problem 1] [问题原因]: (1) ...
- 使用ArcGIS API for Silverlight + Visifire绘制地图统计图
原文:使用ArcGIS API for Silverlight + Visifire绘制地图统计图 最近把很久之前做的统计图又拿出来重新做了一遍,感觉很多时候不复习,不记录就真的忘了,时间是最好的稀释 ...
- jsp的<%%>
于jsp于 可以使用<% %> 嵌入java代码,简称jsp文字. 可以使用<% -- -- %> 凝视,这是jsp注视 可以使用<%! %> 声明全局变量 版权声 ...
- Ubuntu 12.04 64bit 安装编译GCC 4.1.2 绝对原创
1. 下载并解压源代码: wget http://mirrors.ustc.edu.cn/gnu/gcc/gcc-4.1.2/gcc-4.1.2.tar.bz2 tar jxvf gcc-4.1.2. ...
- code forces 148D Bag of mice (概率DP)
time limit per test 2 seconds memory limit per test 256 megabytes input standard input output standa ...