如何使用不在源代码目录中的cscope.out?
我有一个源代码目录,但无法向该目录添加任何内容。
/source/mysource
然后我使用 cscope 生成一个索引 db:cscope.out。因此,我必须将该数据库保存在除 /source/mysource 之外的其他目录中。如果我将该 cscope.out 保存在我的主目录中
~/cscope.out
,我如何告诉 emacs 获取对我的主目录中的 cscope.out 的引用?
I have a source code directory, and I cannot add anything to that directory.
/source/mysource
Then I generate a index db : cscope.out using cscope. Thus I have to save that db in other directories but /source/mysource. If I save that cscope.out in my home directory
~/cscope.out
, how can I tell emacs to get reference to the cscope.out in my home directory?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这里有很好的信息: http://linux.die.net/man/1/xcscope
cscope 将自动查找 /source/mysource 中的所有父目录,但我认为问题意味着您无法写入 /source
"cscope-initial-directory" 执行您需要的操作(可从 GUI cscope 菜单获取或参见上面的内容有关如何设置键盘的说明页面绑定),但您必须为每个 emacs 会话执行此操作。
“cscope-database-regexps”可能是执行此操作的自动方法,但我还没有尝试过。
There is good info here: http://linux.die.net/man/1/xcscope
cscope will automatically look in all parent directories from /source/mysource, but I think the question implies you cannot write to /source
"cscope-initial-directory" does what you need (available from the GUI cscope menu or see the above page for instructions on how to setup a keyboard binding), but you would have to do this for each emacs session.
"cscope-database-regexps" might be an automatic way to do this but I have not tried it.