使用CScope查找函数调用(NOT定义)(C / C ++)

时间:2016-03-23 12:22:29

标签: c++ c cscope

我需要在我的C和C ++代码中找到函数调用。当我在寻找合适的软件时,我找到了CScope。它看起来很好,唯一的问题是,我找不到如何用它来找到函数调用的方法。

 0 Find this C symbol:
 1 Find this function definition:
 2 Find functions called by this function:
 3 Find functions calling this function:
 4 Find this text string:
 5 Change this text string:
 6 Find this egrep pattern:
 7 Find this file:
 8 Find files

我想找到所有符号(cscope -L0),然后删除定义(cscope -L1),但这意味着,代码将被解析2次,我担心它会太慢。

使用CScope有没有更好的“原创”方法呢?

1 个答案:

答案 0 :(得分:1)

使用选项-L3来询问调用特定功能的函数。