码迷,mamicode.com
首页 > 其他好文 > 详细

cscope使用技巧

时间:2018-02-16 16:53:13      阅读:181      评论:0      收藏:0      [点我收藏+]

标签:gpo   返回   gnu   path   搜索   find   div   alias   files   

1、执着cscope.files文件,对源码目前全文件搜索

find `pwd` -type f > cscope.files

`pwd`生成当前目录的绝对路径,这样在cs命令里面就可以不用写那个pre-path了

2、对一些返回数量过多的函数,可以搜索它的隐藏函数

比如:weak_alias这个宏,如果直接搜的话,哇,返回好多好多

:cs find g weak_alias    //返回大量定义,真相被隐藏在海量垃圾中。

:cs find g _weak_alias    //根据gnu约定,搜索他的隐藏函数,呵呵,只有3条。

cscope使用技巧

标签:gpo   返回   gnu   path   搜索   find   div   alias   files   

原文地址:https://www.cnblogs.com/litifeng/p/8450272.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!