Good C++ Debugging/IDE Environment for Linux?

前端 未结 12 1643
我在风中等你
我在风中等你 2021-02-02 13:17

I have a friend who is trying to make the switch to Linux, but is hung up on the apparent lack of debugging/IDE environments for C++, especially as they relate to template progr

相关标签:
12条回答
  • 2021-02-02 13:32

    How about Eclipse + CDT ?

    0 讨论(0)
  • 2021-02-02 13:34

    I havn't explored it personally, but Emacs has a C++ development addon that looks very much like a full IDE.

    0 讨论(0)
  • 2021-02-02 13:35

    Have a look at CodeLite. It's available for Ubuntu and Fedora out of the box and even for Windows and Mac. So you can have the same IDE on different platforms.

    We tried Eclipse and NetBeans but left them due to their huge CPU and memory usage. We have a development server and all the developers connect to it via RDC. Thats why these IDEs miserably failed in our model.

    So, we looked for some native IDE. Found CodeBlocks to be very good and super fast. We sort of settled on it but later found CodeLite and liked it better than CodeBlocks.

    0 讨论(0)
  • 2021-02-02 13:38

    I've used Eclipse for C/C++ and it's pretty useful. It's also used at ACM ICPC World Finals http://cm.baylor.edu/welcome.icpc

    0 讨论(0)
  • 2021-02-02 13:40

    Many of the IDE features you listed were debugger features. The ffffd (Data Display Debugger) debugger is quite a nice GUI wrapper for gdb, allowing graphical representation of data structures, a non-crappy source listing window (ie. unlike the l command of gdb where you don't get context), and also allows you to use any and all native gdb commands directly if desired.

    0 讨论(0)
  • 2021-02-02 13:42

    I'd recommand Code::Blocks (but use a nighty build). It can be coupled with gdb to enable step by step debugging and all that stuff.

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