Linux 上现有 Makefile 的 IDE
当我拥有带有多个 Makefile(库、可执行文件等)的现有 C/C++ 源代码时,进行 IDE 类型设置的最佳/最快方法是什么?
我需要处理 IDE 中的编译器错误,最好是导航代码。
过去我使用过 Emacs/Xemacs,它还不错,但我不确定设置它的最佳方法。
What would be the best/quickest way to have a IDE-type setup when I have existing C/C++ source with several Makefiles (library, executable etc.).
I need to work with compiler errors in the IDE and preferably navigate the code.
In the past I have used Emacs/Xemacs, and it is OKish, but I am not sure about the best way to set it up.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Eclipse CDT 插件 是一个相当不错的 C/C++ IDE。
我发现代码导航功能非常适合中小型项目(对于非常大的项目,索引器会变得更慢)。 Eclipse 因体积庞大且基于 Java 而受到批评,但它对我来说工作得很好。
如果您想要这种基于 GUI 的 IDE,KDevelop 和 Netbeans 可能值得考虑作为替代方案。正如您所说,通过正确的设置,Emacs(或 Vim)可以通过更多基于键盘的方法来获得相同的功能。
The Eclipse CDT plugin is a pretty decent IDE for C/C++.
I've found the code navigation features good for small-to-medium projects (the indexer becomes slower with very large projects). Eclipse has its share of detractors for being bulky and Java-based, but it works fine for me.
KDevelop and Netbeans might be worth looking at as alternatives, if you want this kind of GUI-based IDE. As you've said, Emacs (or Vim) can be used to get the same functionality with more of a keyboard-based approach, with the right setup.