将 cscope 与 VIM 结合使用:添加数据库返回 errno 75
我有一个相当大的 cscope.out 数据库(超过 2GB)和超过 1GB 的倒排索引,当我发出命令 :cscope add "path to database"
时,出现以下错误:
E563: stat("path to database") error: 75
查看源代码,它似乎返回errno,其中75表示值对于定义的数据类型来说太大。
我怎样才能让它加载我的数据库?
I've got a pretty large cscope.out database (over 2GB) and an inverted index of over 1GB, and when I issue the command :cscope add "path to database"
, I get the following error:
E563: stat("path to database") error: 75
Looking at the source code, it seems to return the errno, where 75 means value too large for defined data type.
How can I get it to load my db?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
32 位 vim 对 cscope 数据库施加 2GB 的限制。使用 64 位 vim 可以克服这个限制。
32 bit vim imposes a 2GB limit on cscope databases. Use 64 bit vim to overcome this limitation.