set up trace code tool
這以 GNU GLOBAL 6.5.6 為示範
1:
install GNU GLOBAL
https://www.gnu.org/software/global/download.html
sudo ./configure;
若有以下 error,請看更下方的 Q5 說明。
configure: checking "location of ncurses.h file"...
configure: error: curses library is required but not found.
If you are not going to use gtags-cscope, please try ./configure --disable-gtagscscope
sudo make;
sudo make install
----------------------------------------------------------------------------------------------------
Q5. What is the message? What should I do?
'configure: error: curses library is required but not found."
A5. gtags-cscope(1) requires curses library. There are two choices of yours.
If you use gtags-cscope(1)
Please install curses library. You can get it here:
http://www.gnu.org/software/ncurses/
else
You can install GLOBAL without gtags-cscope(1) like follows:
$ ./configure --disable-gtagscscope
$ make
因為這裡要使用 gtags-cscope,
所以要 install curses library. 參考下方
-------------------------------------------------------------------------------------------------------
2:
install curses library
http://www.gnu.org/software/ncurses/
sudo ./configure; sudo make; sudo make install;
3 :
install vundle
https://github.com/VundleVim/Vundle.vim
sudo apt-get install git curl
git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim
請看 https://github.com/VundleVim/Vundle.vim 的 Quick Start 的 第3步驟 Configure Plugins:
4 :
以下要依照 user 當時所安裝的 gnu global 版本,plugin 對應版本的 gtags.vim、gtags-cscope.vim,
可以下載 gnu global source code,裡面就有對應版本的 gtags.vim、gtags-cscope.vim
或是在網路上搜尋對應版本的 gtags.vim,gtags-cscope.vim 並使用以下的 Vundle plugin 方式
Plugin 'bbchung/gtags.vim'
Plugin 'multilobyte/gtags-cscope'
5:
在您要 tag 的 source code 的資料夾下,
執行
gtags
6:
假如您在 source code 找一個定義,
:cs find g the_definition_you_want_find
若出現以下訊息
E567: no cscope connections
需在 ~/.vimrc 加入以下
let g:GtagsCscope_Auto_Load =
若需要使用 cscope 的快捷鍵, ===〉 注意,VirtualBox 4.3.36 無法使用組合鍵,如 ctrl 加上 \ 再加上 s
快捷鍵在 gtags-cscope.vim 有說明,
需在 ~/.vimrc 加入以下 code 。
let g:GtagsCscope_Auto_Map =
cscope command
" explanation command
" ----------------------------------------------------------
" Find symbol :cs find 0 or s
" Find definition :cs find 1 or g
" Find functions called by this function (not implemented)
" Find reference :cs find 3 or c
" Find text string :cs find 4 or t
" Find egrep pattern :cs find 6 or e
" Find path :cs find 7 or f ===> 跳至 include 的 file。如:#include "t.h",跳至 t.h
" Find include file :cs find 8 or i ===> 找尋有那些 source code 有 include 這個 文件。 如: a.c b.c 都有 include "c.h"
快捷鍵
ctrl + \ + s | g | c | t | e | f | i
" normal command
:nmap <C-\>s :cs find s <C-R>=expand("<cword>")<CR><CR>
:nmap <C-\>g :cs find g <C-R>=expand("<cword>")<CR><CR>
:nmap <C-\>c :cs find c <C-R>=expand("<cword>")<CR><CR>
:nmap <C-\>t :cs find t <C-R>=expand("<cword>")<CR><CR>
:nmap <C-\>e :cs find e <C-R>=expand("<cword>")<CR><CR>
:nmap <C-\>f :cs find f <C-R>=expand("<cfile>")<CR><CR>
:nmap <C-\>i :cs find i <C-R>=expand("<cfile>")<CR><CR>
Gnu Global :
好用功能
1。尋找在一個 Project中 被 Gnu Global tag 的檔案。
global -P file_name
若有加入 Unite 相關的 plugins
Plugin 'Shougo/unite.vim'
Plugin 'hewes/unite-gtags'
則可在 .vimrc 加入以下的快速鍵。
key : control + g (gnu global) + f (file)
:nmap <C-g>f :Unite gtags/path:
示範:
vim 按下 control + g + f,
若輸入 battery。
如下
:Unite gtags/path:battery
顯示搜尋到的結果

看到好多的搜尋結果,
如何縮小範圍呢?
按下 i,
鍵入您的 keyword 即可。

若不輸入,直接 press enter,
:Unite gtags/path:
則列出所有被 tag 的 file,並且可以輸入 keyword,從中搜尋您所要編輯的 file 。
set up trace code tool的更多相关文章
- Service Trace Viewer Tool (SvcTraceViewer.exe)
Service Trace Viewer Tool <?xml version="1.0" encoding="utf-8" ?> <conf ...
- Trace & Error log in file
1. Log机制 做一些大型项目的时候,对代码的调试最有效的办法往往是最直接.最简单的log机制: 即对可以出设置打印店,对应打印信息进行调试(当然是有gdb也许你会觉得很高大上,但是实际项目中,gd ...
- How to anti-Obfuscated code
Author:jin can zhu from China Source:http://blog.csdn.net/clever101 Now many software makers have us ...
- 微信网页授权报code been used, hints: [ req_id: XYv1Ha07042046 ]
先贴上代码: public function index() { $code = input('get.code'); $tool = new Wxtool(); if (empty($code)) ...
- Analyzing UI Performance with Systrace 使用systrace工具分析ui性能
While developing your application, you should check that user interactions are buttery smooth, runni ...
- graphterm 0.40.1 : Python Package Index
graphterm 0.40.1 : Python Package Index graphterm 0.40.1 Downloads ↓ A Graphical Terminal Interface ...
- Get started with Google Analytics
What is Google Analytics Google Analytics is a Google official analytics tool that is primarily used ...
- 内核调试神器SystemTap — 更多功能与原理(三)
a linux trace/probe tool. 官网:https://sourceware.org/systemtap/ 用户空间 SystemTap探测用户空间程序需要utrace的支持,3.5 ...
- 内核调试神器SystemTap — 探测点与语法(二)
a linux trace/probe tool. 官网:https://sourceware.org/systemtap/ 探测点 SystemTap脚本主要是由探测点和探测点处理函数组成的,来看下 ...
随机推荐
- c内置数据类型
参考 C与指针 第三章 类型 类型标识符 字节 表示数值范围 备注 整型 [signed] int 2* -32768~32767 -2^15 ~ (2^15 -1) 无符号整型 unsigned [ ...
- 【上下界网络流】bzoj2502: 清理雪道
模型:无源汇有上下界可行流 LJN:模板题吧 Description 滑雪场坐落在FJ省西北部的若干座山上. 从空中鸟瞰,滑雪场可以看作一个有向无环图,每条弧代表一个斜坡(即雪道),弧的 ...
- [BZOJ] 5415: [Noi2018]归程
在做Kruskal求最小生成树时,假设要通过边权\(w\)的边合并子树\(x\)和\(y\),我们新建一个方点,把两个子树接到这个方点上,并将方点的点权赋为\(w\),最终形成的二叉树就是\(Krus ...
- 【Git版本控制】Git的merge合并分支命令
1.实例 git checkout master git merge dev merge合并分支只对当前分支master产生影响,被合并的分支dev不受影响. 假设你有两个分支,“stable” 和 ...
- Thinkhphp5控制器调用的Model层的方法总结
控制器器里: <?php /** * Created by PhpStorm. * User: Haima * Date: 2018/7/8 * Time: 15:58 */ namespace ...
- 1、python-初探
语言包括编译型语言和解释型语言编译型:全部翻译,再执行:c.c++解释型:边执行边翻译:python.php.java.c#.perl.ruby.javascript 一.系统位数32位系统内存的最大 ...
- python hashlib模块学习
目录 hashlib 模块 破解密码 hmac 模块 hashlib 模块 1.干嘛用的: 对字符进行加密,其实就是一个自定义的字符编码表,我们原来接触的是计算机语言0和1然后转化成字符,而hashl ...
- CodeForces - 948C Producing Snow(优先队列)
题意: n天. 每天你会堆一堆雪,体积为 v[i].每天都有一个温度 t[i] 所有之前堆过的雪在第 i 天体积都会减少 t[i] . 输出每天融化了的雪的体积. 这个题的正解我怎么想都很难理解,但是 ...
- Solution: 最近公共祖先·一 [hiho一下 第十三周]
题目1 : 最近公共祖先·一 时间限制:10000ms 单点时限:1000ms 内存限制:256MB 描述 小Ho最近发现了一个神奇的网站!虽然还不够像58同城那样神奇,但这个网站仍然让小Ho乐在其中 ...
- No identifier specified for entity: XXXX 错误
在运行项目的时候报了下面的错误: by: org.hibernate.AnnotationException: No identifier specified for entity: com.exam ...