Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

IDE for debugging 'C source in linux

Recently I am developing using 'C in Linux platforms, the tools like gcc are fast. But I wish it would be great to have an IDE like the VC++ IDE for windows.

like image 532
Alphaneo Avatar asked Mar 27 '09 01:03

Alphaneo


People also ask

Which software is used for C programming in Linux?

GCC compiler is used to compile and run a C program on the Linux operating system. We can use the in-build text editor or other editors like Visual Studio Code or Sublime Text to write our C Programs.

What IDE should I use for Linux?

Apache Netbeans It is a cross-platform IDE; it can be installed easily on any operating system running Java, such as Windows, Mac OSX, and Linux.

Which IDE has best debugger?

Visual Studio Code One of the best smart code completion is based on various factors. Git integration. Code debugging within the editor. It provides an extension to add additional features like code linting, themes, and other services.


3 Answers

  • Code::Blocks
  • Anjuta
  • KDevelop
  • Or check on StackOverflow
like image 66
Brian Campbell Avatar answered Nov 01 '22 11:11

Brian Campbell


There are Eclipse CDT (http://www.eclipse.org) and NetBeans C++ (http://www.netbeans.org), both great IDEs with pretty much same features as Visual Studio. If you are starting developing for Linux and Windows, you might want to get a deep look into CMake (http://www.cmake.org) which will automate all your project files generation for all C/C++ IDEs.

like image 39
Everton Avatar answered Nov 01 '22 09:11

Everton


There's a nice survey of the options on wikipedia:

http://en.wikipedia.org/wiki/Comparison_of_integrated_development_environments

If using Qt for development, the new Qt Creator IDE is quite nice, I find.

like image 43
Brian Mitchell Avatar answered Nov 01 '22 11:11

Brian Mitchell