Eclipse CDT 5.0.1 (Ganymede) 索引器缓慢问题
我正在尝试使用 Ganymede CDT 来索引我们的大型代码库。 它非常慢,可能需要一整夜才能索引 C++ 文件。 使用丰富的 ctags 5.7 索引同一项目只需 5 秒。
有什么方法可以找到问题的根源并加快解决速度吗? 也许打开 CDT 中的日志记录,或者我错过的某个晦涩的选项?
I am trying to use Ganymede CDT to index our large codebase. It is painfully slow, can take a whole night to index the C++ files. Same project takes only 5 seconds to index with exuberant ctags 5.7.
Is there some way to find what the root of the problem is and to speed it up?
Maybe turn on logging in CDT, or some obscure option somewhere that I missed?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果您使用“完整索引器”,这不会令我感到惊讶。 我正在使用“快速索引器”,它非常快并且工作得很好(即使使用 wxWidgets)。
您可以在“窗口”->“首选项”->“C/C++”->“索引器”中更改索引器设置。
If you use the "full indexer" this would not surprise me. I'm using the "fast indexer", it is very fast and works pretty well (even with wxWidgets).
You can change your indexer settings in Window->Preferences->C/C++->Indexer.
你知道这是否是 5.0.0 的回归吗? 在这种情况下,您绝对应该打开错误报告。
您的所有代码都在同一个项目中吗? 这可能会产生影响。
Do you know if this is a regression from 5.0.0? In that case you should definitely open a bugreport.
Is all of your code in the same project? That may have an impact.
Windows 下的 Eclipse 也有类似的问题; 在我们的例子中,这是因为旧版本的 cygwin。
要了解您是否遇到同样的问题,只需检查 Process Explorer如果 Eclipse 生成 cygpath.exe,并且它没有在合理的时间内完成。
如果这是问题的原因,那么只需将最新版本的 cygpath.exe 和 cygwin1.dll 放在 eclipse 目录中即可。
祝你好运!
We have a similar problem with Eclipse under Windows; in our case, it is because of an old version of cygwin.
To know if you have the same issue, just check with Process Explorer if Eclipse spawns cygpath.exe, and it does not complete in a reasonable time.
In case this is the cause of the problem, then it is enough to just put the last version of cygpath.exe and cygwin1.dll in eclipse directory, and then you are done.
Good luck!