Best C++ development environment in Linux

后端 未结 7 1049
庸人自扰
庸人自扰 2021-02-06 18:43

I have some experience with Eclipse and Qt creator and am somewhat disappointed in their debuggers, less so in their editors. On Windows, I like Visual Studio for debugging and

相关标签:
7条回答
  • 2021-02-06 19:22

    Emacs + Emacs Code Browser + g++(from gcc). GCCSense in also pretty cool.

    This is a lightweight, slick and extremely powerful environment. Not everybody like Emacs though. NetBeans is a good alternative for people accustomed to traditional IDEs.

    0 讨论(0)
  • 2021-02-06 19:23

    KDevelop 4 (kde-4.4 branch), built in cmake support, git, subversion, addon to add php support.

    0 讨论(0)
  • 2021-02-06 19:29

    Geany, QT Creator, or Eclipse CDT. If you don't need a full IDE learn emacs, it's not only an editor, but a full desktop environment, browser, terminal, and more, on its own.

    0 讨论(0)
  • 2021-02-06 19:42

    nano (with syntax highlighting) + make + gcc + gdb + valgrind

    Who needs anything else? ;)

    0 讨论(0)
  • 2021-02-06 19:43

    I definitely recommend Eclipse and the CDT plugin. Emacs would be my preferred choice if you only need a good editor and not a full IDE.

    I use Eclipse almost every day on Linux, mostly for C++ programming these days. The CDT plugin is really good because it is very well integrated with the g++ compiler and the gdb debugger. On top of that, the really strong feature of CDT is the code indexer - i.e. what Microsoft calls "intellisense" for Visual Studio. The CDT Indexer is so sophisticated it is almost like a compiler, in that it really understands your code as you type it. Very often it allows me to find errors even before I build my project. Also Eclipse can handle very large source trees, especially if you run it with a 64-bit JVM.

    Eclipse is a great IDE with a lot of users, and if you don't know any other IDE you may want to start with it. Because it supports many languages and has so many tools, even if you switch to another project with different technologies you can still keep your IDE. So you only need to learn one tool (the same can be said for Emacs).

    0 讨论(0)
  • 2021-02-06 19:43

    I used Code::Blocks and it works flawlessly and it's great if you come from Visual Studio IDE.

    0 讨论(0)
提交回复
热议问题