Difference between revisions of "C"

From WikEmacs
Jump to navigation Jump to search
Line 12: Line 12:
  
 
While browsing your project's code:
 
While browsing your project's code:
 +
* Run {{Command|gdb}} to stat a new gdb session
 +
* Specify gdb parameters for your project.
 +
* A new buffer "<code>*gud-xxx*</code>" for the gdb session is created.
  
# <code>M-x gdb</code>
 
# specify gdb parameters.
 
# use the <code>*gud-xxx*</code> buffer to control the gdb session.
 
  
 
[[Category:Programming languages]]
 
[[Category:Programming languages]]

Revision as of 14:45, 27 March 2012

C is a general-purpose computer programming language developed between 1969 and 1973 by Dennis Ritchie at the Bell Telephone Laboratories. It is one of the most widely used programming languages of all time. See Wikipedia article.

The default major mode associated with C files (.c and .h) is cc-mode.

Browsing code

Cscope is the de-facto tool for browsing C code. The package is bundled with xscope.el library which enables use of cscope from within Emacs.

Debugging

gdb -- the GNU Project Debugger -- can be embedded in Emacs.

While browsing your project's code:

  • Run M-x gdb to stat a new gdb session
  • Specify gdb parameters for your project.
  • A new buffer "*gud-xxx*" for the gdb session is created.