-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
131 lines (98 loc) · 3.4 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8' />
<meta http-equiv="X-UA-Compatible" content="chrome=1" />
<meta name="description" content="cgdb : the curses debugger" />
<link rel="stylesheet" type="text/css" media="screen" href="stylesheets/stylesheet.css">
<title>cgdb</title>
</head>
<body>
<!-- HEADER -->
<div id="header_wrap" class="outer">
<header class="inner">
<a id="forkme_banner" href="https://github.com/cgdb">View on GitHub</a>
<h1 id="project_title">cgdb</h1>
<h2 id="project_tagline">the curses debugger</h2>
</header>
</div>
<!-- MAIN CONTENT -->
<div id="main_content_wrap" class="outer">
<section id="main_content" class="inner">
<h3>Welcome</h3>
<p>cgdb is a lightweight curses (terminal-based) interface to the GNU Debugger
(GDB). In addition to the standard gdb console, cgdb provides a split screen
view that displays the source code as it executes. The keyboard interface is
modeled after vim, so vim users should feel at home using cgdb.</p>
<h3>Screenshot</h3>
<img src="images/screenshot_debugging.png"
alt="Screenshot" width="508" height="498" />
<h3>Features</h3>
<ul>
<li>Syntax-highlighted source window</li>
<li>Assembly view</li>
<li>Visual breakpoint setting</li>
<li>Keyboard shortcuts for common functions</li>
<li>Searching source window (using regexp)</li>
<li>Scrollable gdb history of entire session</li>
<li>Tab completion</li>
<li>Key mappings (macros)</li>
</ul>
<h3>Stable Release</h3>
Download source package: <a href="https://cgdb.me/files/cgdb-0.8.0.tar.gz">cgdb-0.8.0.tar.gz</a>
(<a href="https://raw.github.com/cgdb/cgdb/v0.8.0/NEWS">changes</a>)
<div style="font-size: 12px">
MD5 checksum:
<code style="font-size: 12px">180c1c7100bd9591b0d29e46896b5092</code>
</div>
<h4>Older Releases</h4>
Older source packages can be found at: <a
href="https://cgdb.me/files">https://cgdb.me/files</a>
<h3>Latest Sources</h3>
<pre><code>$ git clone git://github.com/cgdb/cgdb.git
$ cd cgdb
$ ./autogen.sh
</code></pre>
(a prebuilt <code>configure</code> script is not included in the git
repository, so it must be generated with the autogen.sh script.)
<h3>Installing</h3>
<p>cgdb depends on libreadline and ncurses development libraries.</p>
<pre><code>$ ./configure --prefix=/usr/local
$ make
$ sudo make install
</code></pre>
<h3>Documentation</h3>
Online documentation:
<ul>
<li><a href="docs/cgdb-split.html">HTML</a> (multiple pages)</li>
<li><a href="docs/cgdb.html">HTML</a> (single page)</li>
<li><a href="docs/cgdb.pdf">PDF</a></li>
</ul>
<h3>Support or Contact</h3>
<p>Get help on our mailing lists:</p>
<ul>
<li>
<a href="https://groups.google.com/group/cgdb-users">cgdb:</a>
User discussion, Q&A, bug reports, feature requests, etc.
</li>
<li>
<a href="https://groups.google.com/group/cgdb-dev">cgdb-dev:</a>
Developer discussion, patches, etc.
</li>
<li>
<em>Archived discussions are also available in the old
<a href="http://sourceforge.net/mail/?group_id=72581">Sourceforge
project</a>.</em>
</li>
</ul>
<p>Or find us on IRC channel <code>#cgdb</code> on liberachat.</p>
</section>
</div>
<!-- FOOTER -->
<div id="footer_wrap" class="outer">
<footer class="inner">
<p>Published with <a href="http://pages.github.com">GitHub Pages</a></p>
</footer>
</div>
</body>
</html>