source: general/prog/gdb.xml@ 7a34460d

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 7.10 7.9 8.0 8.1 8.2 8.3 8.4 9.0 9.1 basic bdubbs/svn elogind kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts lazarus lxqt nosym perl-modules plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition trunk upgradedb xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since 7a34460d was 7a34460d, checked in by Bruce Dubbs <bdubbs@…>, 8 years ago

Update to extra-cmake-modules-5.19.0
Tags

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@17016 af4574ff-66df-0310-9fd7-8a98e5e911e0

  • Property mode set to 100644
File size: 7.5 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6
7 <!ENTITY gdb-download-http "https://ftp.gnu.org/gnu/gdb/gdb-&gdb-version;.tar.xz">
8 <!ENTITY gdb-download-ftp "ftp://ftp.gnu.org/gnu/gdb/gdb-&gdb-version;.tar.xz">
9 <!ENTITY gdb-md5sum "39e654460c9cdd80200a29ac020cfe11">
10 <!ENTITY gdb-size "18 MB">
11 <!ENTITY gdb-buildsize "419 MB (additional 349 MB for tests)">
12 <!ENTITY gdb-time "2.4 SBU (add up to 7.8 SBU for tests)">
13]>
14
15<sect1 id="gdb" xreflabel="GDB-&gdb-version;">
16 <?dbhtml filename="gdb.html"?>
17
18 <sect1info>
19 <othername>$LastChangedBy$</othername>
20 <date>$Date$</date>
21 </sect1info>
22
23 <title>GDB-&gdb-version;</title>
24
25 <indexterm zone="gdb">
26 <primary sortas="a-GDB">GDB</primary>
27 </indexterm>
28
29 <sect2 role="package">
30 <title>Introduction to GDB</title>
31
32 <para>
33 <application>GDB</application>, the GNU Project debugger, allows you
34 to see what is going on <quote>inside</quote> another program while it
35 executes -- or what another program was doing at the moment it crashed.
36 Note that <application>GDB</application> is most effective when tracing
37 programs and libraries that were built with debugging symbols and not
38 stripped.
39 </para>
40
41 &lfs79_checked;
42
43 <bridgehead renderas="sect3">Package Information</bridgehead>
44 <itemizedlist spacing="compact">
45 <listitem>
46 <para>
47 Download (HTTP): <ulink url="&gdb-download-http;"/>
48 </para>
49 </listitem>
50 <listitem>
51 <para>
52 Download (FTP): <ulink url="&gdb-download-ftp;"/>
53 </para>
54 </listitem>
55 <listitem>
56 <para>
57 Download MD5 sum: &gdb-md5sum;
58 </para>
59 </listitem>
60 <listitem>
61 <para>
62 Download size: &gdb-size;
63 </para>
64 </listitem>
65 <listitem>
66 <para>
67 Estimated disk space required: &gdb-buildsize;
68 </para>
69 </listitem>
70 <listitem>
71 <para>
72 Estimated build time: &gdb-time;
73 </para>
74 </listitem>
75 </itemizedlist>
76
77 <bridgehead renderas="sect3">GDB Dependencies</bridgehead>
78
79 <bridgehead renderas="sect4">Optional</bridgehead>
80 <para role="optional">
81 <xref linkend="dejagnu"/> (for tests),
82 <xref linkend="doxygen"/>,
83 <xref linkend="guile"/>,
84 <xref linkend="python2"/>,
85 <xref linkend="valgrind"/>, and
86 <ulink url="https://sourceware.org/systemtap/">SystemTap</ulink>
87 (run-time dependency, also used in a few tests)
88 </para>
89
90 <para condition="html" role="usernotes">User Notes:
91 <ulink url="&blfs-wiki;/gdb"/>
92 </para>
93 </sect2>
94
95 <sect2 role="installation">
96 <title>Installation of GDB</title>
97
98 <para>
99 Install <application>GDB</application> by running the following
100 commands:
101 </para>
102
103<screen><userinput>./configure --prefix=/usr --with-system-readline &amp;&amp;
104make</userinput></screen>
105
106 <para>
107 Optionally, to build the API documentation using
108 <xref linkend="doxygen"/>, run:
109 </para>
110
111<screen><userinput>make -C gdb/doc doxy</userinput></screen>
112
113 <para>
114 To test the results, issue:
115 </para>
116
117<screen><userinput>pushd gdb/testsuite &amp;&amp;
118make site.exp &amp;&amp;
119echo "set gdb_test_timeout 120" &gt;&gt; site.exp &amp;&amp;
120runtest TRANSCRIPT=y
121popd</userinput></screen>
122
123 <para>
124 See <emphasis>gdb/testsuite/README</emphasis> and <ulink
125 url="https://sourceware.org/gdb/wiki/TestingGDB">TestingGDB</ulink>.
126 There are many problems with the test suite. First one is that you need
127 to clean some directories, if re-running the tests. For that reason, it
128 is recommended to make a copy of the compiled source code directory,
129 before the tests, in case you need to run the tests again. Results depend
130 on installed compilers, there are differences if run locally or remotely,
131 a large number of timeouts (there is a variable that can be set to
132 increase time for timeout, but changing it, apparently the total number
133 of tests is not conserved), there are failures associated with system
134 readline 6.x, between others. A few tests assume that the header file
135 <filename>&lt;sys/sdt.h&gt;</filename>, part of <ulink
136 url="https://sourceware.org/systemtap/">SystemTap</ulink>, is present.
137 Unexpected failures are less than 0.3%.
138 </para>
139
140 <para>
141 Now, as the <systemitem class="username">root</systemitem> user:
142 </para>
143
144<screen role="root"><userinput>make -C gdb install</userinput></screen>
145
146 <para>
147 If you have built the API documentation, it is now in gdb/doc/doxy.
148 You can install it (as the <systemitem class="username">root</systemitem>
149 user):
150 </para>
151
152<screen role="root"><userinput>install -d /usr/share/doc/gdb-&gdb-version; &amp;&amp;
153rm -rf gdb/doc/doxy/xml &amp;&amp;
154cp -Rv gdb/doc/doxy /usr/share/doc/gdb-&gdb-version;</userinput></screen>
155
156 </sect2>
157
158 <sect2 role="content">
159 <title>Contents</title>
160
161 <segmentedlist>
162 <segtitle>Installed Programs</segtitle>
163 <segtitle>Installed Library</segtitle>
164 <segtitle>Installed Directories</segtitle>
165
166 <seglistitem>
167 <seg>
168 gcore, gdb and gdbserver
169 </seg>
170 <seg>
171 libinproctrace.so
172 </seg>
173 <seg>
174 /usr/{include,share}/gdb and /usr/share/doc/gdb-&gdb-version;
175 </seg>
176 </seglistitem>
177 </segmentedlist>
178
179 <variablelist>
180 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
181 <?dbfo list-presentation="list"?>
182 <?dbhtml list-presentation="table"?>
183
184 <varlistentry id="gcore">
185 <term><command>gcore</command></term>
186 <listitem>
187 <para>
188 generates a core dump of a running program.
189 </para>
190 <indexterm zone="gdb gcore">
191 <primary sortas="b-gcore">gcore</primary>
192 </indexterm>
193 </listitem>
194 </varlistentry>
195
196 <varlistentry id="gdb-prog">
197 <term><command>gdb</command></term>
198 <listitem>
199 <para>
200 is the GNU Debugger.
201 </para>
202 <indexterm zone="gdb gdb-prog">
203 <primary sortas="b-gdb-prog">gdb-prog</primary>
204 </indexterm>
205 </listitem>
206 </varlistentry>
207
208 <varlistentry id="gdbserver">
209 <term><command>gdbserver</command></term>
210 <listitem>
211 <para>
212 is a remote server for the GNU debugger (it allows programs
213 to be debugged from a different machine).
214 </para>
215 <indexterm zone="gdb gdbserver">
216 <primary sortas="b-gdbserver">gdbserver</primary>
217 </indexterm>
218 </listitem>
219 </varlistentry>
220
221 <varlistentry id="libinproctrace">
222 <term><filename class="libraryfile">libinproctrace.so</filename></term>
223 <listitem>
224 <para>
225 contains functions for the in-process tracing agent. The agent
226 allows for installing fast tracepoints, listing static tracepoint
227 markers, probing static tracepoints markers, and starting trace
228 monitoring.
229 </para>
230 <indexterm zone="gdb libinproctrace">
231 <primary sortas="c-libinproctrace">libinproctrace.so</primary>
232 </indexterm>
233 </listitem>
234 </varlistentry>
235
236 </variablelist>
237
238 </sect2>
239
240</sect1>
Note: See TracBrowser for help on using the repository browser.