Good C++ Debugging/IDE Environment for Linux?

前端 未结 12 1647
我在风中等你
我在风中等你 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: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.

提交回复
热议问题