Good C++ Debugging/IDE Environment for Linux?

可紊 提交于 2019-12-02 20:39:21

Although many people think of it as a Java IDE, he could try NetBeans. I've used it on Windows for C and C++ development without a problem, and I know NetBeans is supported on Linux, so it would be worth a shot.

It looks like most of the features he wants are included in the C/C++ development toolkit, including integration with GDB, a profiler, and more.

How about Eclipse + CDT ?

Visual Studio is good, indeed.

On the free side:

Qt Creator is getting quite good too, it's worth a try. There are advantageous by-products coming from the Qt framework:

  • huge library - not only to build GUI applications but for other domains as well
  • portability on multiple platforms

A version 1.3 beta is available as a preview of the upcoming release but the current 1.2.1 is already all you need to manage projects.

Eclipse has already been mentioned, it's a very good environment offering many plug-ins (Mylyn, SVN, ...).

MonoDevelop somewhat supports C++ (more and more, I didn't check the latest version).

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

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.

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

hiwaylon

Not exactly an IDE but SublimeText 2/3 is available on Linux now. There may be a debugger plugin for it too, who knows.

Edit

Here's a gdb plugin for SublimeText

About 7 years ago I used KDevelop that was shipped with KDE. I found it quite good back than, and I hope it also improved with the time. I found it quite comparable to VC++ 6 at this time.

It also contains Qt support, if you are in need for some GUI toolkit.

Depends, Code::Blocks is good, Eclipse is very nice too, but you will need a very good computer. In my opinion the best choice iss gcc, gdb and ViM or Gedit.

My buddies from work use Eclipse + Scons, they also use Valgrind(spelling?) for tracking memory leaks and such.

Many of the IDE features you listed were debugger features. The ddd (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.

Hashim Saleem

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.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!