7

我正在开发一个需要了解llvm编译器源代码的项目。为了浏览 llvm 的源代码,我尝试在源的根目录中使用 cscope 和以下命令:

cscope -R *

但它不起作用。因为主要有 .cpp 和 .h 文件,但也有一些 .c 文件。所以现在我不知道如何让 cscope 工作?有人可以帮忙吗?

4

5 回答 5

11

您可以使用以下命令从 llvm 源代码树的根目录执行所需的任务:

touch tags.lst
find | grep "\.c$" >> tags.lst
find | grep "\.cpp$" >> tags.lst
find | grep "\.h$" >> tags.lst
cscope -i tags.lst

它将创建 cscope.out 文件,该文件与 cscope 一起用于浏览代码。希望能帮助到你!

于 2012-08-11T21:55:42.903 回答
7

列出项目中所有C++文件的一种便捷方法是使用ack工具:一个类似 grep 的命令,针对源代码搜索进行了优化(在某些发行版中,例如 Ubuntu,该工具称为ack-grep)。你可以像这样运行它:

ack -f --cpp > cscope.files

.cpp输出是所有, .h,.cc .hpp文件的路径

于 2014-08-22T15:58:49.497 回答
3

只是因为这仍然是最受欢迎的条目。在此期间可能已经添加了 stdin 的东西,但它使它有点优雅:

find -regex '.*\.\(c\|h\|cpp\|cxx\|hh\|hpp\|hxx\)$' | cscope -i- -b -q
于 2017-07-05T20:38:16.920 回答
3

我的 .bashrc 中有以下内容,这使事情变得更容易。运行cscope_build()以生成数据库并cscope启动 cscope 工具。

# Use vim to edit files
export CSCOPE_EDITOR=`which vim`

# Generate cscope database
function cscope_build() {
  # Generate a list of all source files starting from the current directory
  # The -o means logical or
  find . -name "*.c" -o -name "*.cc" -o -name "*.cpp" -o -name "*.h" -o -name "*.hh" -o -name "*.hpp" > cscope.files
  # -q build fast but larger database
  # -R search symbols recursively
  # -b build the database only, don't fire cscope
  # -i file that contains list of file paths to be processed
  # This will generate a few cscope.* files
  cscope -q -R -b -i cscope.files
  # Temporary files, remove them
  # rm -f cscope.files cscope.in.out cscope.po.out
  echo "The cscope database is generated"
}
# -d don't build database, use kscope_generate explicitly
alias cscope="cscope -d"
于 2017-09-24T05:55:06.953 回答
2

为了覆盖我们的大型代码库,我有一个看起来有点像这样的脚本来构建 cscope 索引。我更改为 / 的原因是我有源文件的完整文件路径,这使得工作更顺利一些。

cd /
find -L /home/adrianc/code -name "*.c" -o -name "*.cc" -o -name "*.h" > /home/adrianc/code/cscope.files
cd /home/adrianc/code
/usr/local/bin/cscope -b -icscope.files -q -u

也值得一试 http://cscope.sourceforge.net/cscope_vim_tutorial.html

于 2012-08-11T21:54:26.920 回答