标签:pre 官方下载 mrc inux 编译安装 oba es5 nod --
sudo apt build-dep global
sudo apt install libncurses5-dev libncursesw5-dev
wget https://ftp.gnu.org/pub/gnu/global/global-6.6.5tar.gz
./configure --with-sqlite3 # gtags可以使用Sqlite3作为数据库, 在编译时需要加这个参数
make -j2
sudo make install
cp gtags-cscope.vim gtags.vim ~/.vim/plugin/
GPATH GRTAGS GTAGS
gtags
"gtags 设置项
set cscopetag " 使用 cscope 作为 tags 命令
set cscopeprg=‘gtags-cscope‘ " 使用 gtags-cscope 代替 cscope
let GtagsCscope_Auto_Load = 1
let CtagsCscope_Auto_Map = 1
let GtagsCscope_Quiet = 1
let gtags_file=findfile("GTAGS", ";") "查找 gtags 文件
if !empty(gtags_file)
exe "cs add" gtags_file
endif
xxf@ubuntu:/usr/src/linux-source-5.4.0/linux-source-5.4.0$ global -x fat_add_entries
fat_add_entries 1285 fs/fat/dir.c int fat_add_entries(struct inode *dir, void *slots, int nr_slots,
Ctrl+} 跳转到函数定义处
Ctrl+t 跳转回来
标签:pre 官方下载 mrc inux 编译安装 oba es5 nod --
原文地址:https://www.cnblogs.com/xxfblog/p/14370207.html