source: general/prog/gdb.xml@ 427b46a

11.0 11.1 11.2 11.3 12.0 12.1 kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts lazarus lxqt 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 427b46a was bfbc72a, checked in by Douglas R. Reno <renodr@…>, 3 years ago

Tags
GDB: Mention the TUI test suite failing

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

  • Property mode set to 100644
File size: 10.2 KB
RevLine 
[4b0ebf70]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
[8dfc5c3]7 <!ENTITY gdb-download-http "&gnu-http;/gdb/gdb-&gdb-version;.tar.xz">
8 <!ENTITY gdb-download-ftp "&gnu-ftp;/gdb/gdb-&gdb-version;.tar.xz">
[a2e21ee]9 <!ENTITY gdb-md5sum "1822a7dd45e7813f4408407eec1a6af1">
10 <!ENTITY gdb-size "21 MB">
11 <!ENTITY gdb-buildsize "761 MB (add 750 MB for docs; add 633 MB for tests)">
12 <!ENTITY gdb-time "1.7 SBU (Using parallelism=4; add 30 SBU for tests; add 0.5 SBU for docs)">
[4b0ebf70]13]>
14
[5ad8a1f]15<!-- I skipped running the full tests for this 8.3.1 point version. Bruce -->
16
[d3970e1]17<sect1 id="gdb" xreflabel="GDB-&gdb-version;">
[4b0ebf70]18 <?dbhtml filename="gdb.html"?>
19
20 <sect1info>
21 <othername>$LastChangedBy$</othername>
22 <date>$Date$</date>
23 </sect1info>
24
[d3970e1]25 <title>GDB-&gdb-version;</title>
[4b0ebf70]26
27 <indexterm zone="gdb">
[4890200]28 <primary sortas="a-GDB">GDB</primary>
[4b0ebf70]29 </indexterm>
30
31 <sect2 role="package">
[d3970e1]32 <title>Introduction to GDB</title>
33
34 <para>
35 <application>GDB</application>, the GNU Project debugger, allows you
36 to see what is going on <quote>inside</quote> another program while it
37 executes -- or what another program was doing at the moment it crashed.
38 Note that <application>GDB</application> is most effective when tracing
39 programs and libraries that were built with debugging symbols and not
40 stripped.
41 </para>
[4b0ebf70]42
[bfbc72a]43 &lfs101_checked;
[4b0ebf70]44
45 <bridgehead renderas="sect3">Package Information</bridgehead>
46 <itemizedlist spacing="compact">
47 <listitem>
[4890200]48 <para>
49 Download (HTTP): <ulink url="&gdb-download-http;"/>
50 </para>
[4b0ebf70]51 </listitem>
52 <listitem>
[4890200]53 <para>
54 Download (FTP): <ulink url="&gdb-download-ftp;"/>
55 </para>
[4b0ebf70]56 </listitem>
57 <listitem>
[4890200]58 <para>
59 Download MD5 sum: &gdb-md5sum;
60 </para>
[4b0ebf70]61 </listitem>
62 <listitem>
[4890200]63 <para>
64 Download size: &gdb-size;
65 </para>
[4b0ebf70]66 </listitem>
67 <listitem>
[4890200]68 <para>
69 Estimated disk space required: &gdb-buildsize;
70 </para>
[4b0ebf70]71 </listitem>
72 <listitem>
[4890200]73 <para>
74 Estimated build time: &gdb-time;
75 </para>
[4b0ebf70]76 </listitem>
77 </itemizedlist>
78
[d3970e1]79 <bridgehead renderas="sect3">GDB Dependencies</bridgehead>
[d4c9b7c]80
[9533795]81 <bridgehead renderas="sect4">Recommended Runtime Dependency</bridgehead>
82 <para role="recommended">
83 <xref linkend="six"/> (Python 3 module, required at run-time to
84 use GDB scripts from various LFS/BLFS packages with Python 3
85 installed in LFS)
86 </para>
87
[d4c9b7c]88 <bridgehead renderas="sect4">Optional</bridgehead>
89 <para role="optional">
[f4002c5]90 <!-- <xref linkend="dejagnu"/> (required for tests), -->
[852fc810]91 <xref linkend="doxygen"/>,
[a2e21ee]92 <xref linkend="gcc"/> (ada, gfortran, and go are used for tests),
[51cb7cd]93 <xref linkend="guile"/>,
[9533795]94 <xref linkend="python2"/>,
[51cb7cd]95 <xref linkend="rust"/> (used for some tests),
[2029b72]96 <xref linkend="valgrind"/>, and
97 <ulink url="https://sourceware.org/systemtap/">SystemTap</ulink>
[51cb7cd]98 (run-time, used for tests)
[d4c9b7c]99 </para>
100
[4b0ebf70]101 <para condition="html" role="usernotes">User Notes:
[d3970e1]102 <ulink url="&blfs-wiki;/gdb"/>
103 </para>
[4b0ebf70]104 </sect2>
105
106 <sect2 role="installation">
[d3970e1]107 <title>Installation of GDB</title>
[4b0ebf70]108
[d3970e1]109 <para>
110 Install <application>GDB</application> by running the following
111 commands:
112 </para>
[4b0ebf70]113
[29d11601]114<screen><userinput>mkdir build &amp;&amp;
115cd build &amp;&amp;
116
117../configure --prefix=/usr \
118 --with-system-readline \
119 --with-python=/usr/bin/python3 &amp;&amp;
[4b0ebf70]120make</userinput></screen>
121
[46fd248]122 <para>
123 Optionally, to build the API documentation using
124 <xref linkend="doxygen"/>, run:
125 </para>
126
[a42c273]127<screen remap="doc"><userinput>make -C gdb/doc doxy</userinput></screen>
[46fd248]128
[d3970e1]129 <para>
[03b05e7]130 To test the results, issue:
131 </para>
132
[a42c273]133<screen remap="test"><userinput>pushd gdb/testsuite &amp;&amp;
[03b05e7]134make site.exp &amp;&amp;
135echo "set gdb_test_timeout 120" &gt;&gt; site.exp &amp;&amp;
[a114fcc]136runtest
[03b05e7]137popd</userinput></screen>
138
139 <para>
140 See <emphasis>gdb/testsuite/README</emphasis> and <ulink
141 url="https://sourceware.org/gdb/wiki/TestingGDB">TestingGDB</ulink>.
[39e42c88]142 There are many problems with the test suite:
[d3970e1]143 </para>
[39e42c88]144
145 <itemizedlist>
146 <listitem>
147 <para>
[3e42104]148 Clean directories are needed if re-running the tests. For that
[6a1237d]149 reason, make a copy of the compiled source code
[39e42c88]150 directory before the tests in case you need to run the tests again.
151 </para>
152 </listitem>
153
154 <listitem>
155 <para>
156 Results depend on installed compilers.
157 </para>
158 </listitem>
[29d11601]159<!-- I did not see this
[39e42c88]160 <listitem>
161 <para>
162 There are a large number of timeouts (there is a variable
163 that can be set to increase time for timeout, but
164 changing it will result in a different number of tests being
[3e42104]165 run).
[39e42c88]166 </para>
167 </listitem>
[29d11601]168or this
[39e42c88]169 <listitem>
170 <para>
171 There are failures associated with system readline 6.x.
172 </para>
173 </listitem>
[29d11601]174-->
[39e42c88]175 <listitem>
176 <para>
177 A few tests assume that the header file
178 <filename>&lt;sys/sdt.h&gt;</filename>, part of <ulink
179 url="https://sourceware.org/systemtap/">SystemTap</ulink>, is
180 present.
181 </para>
182 </listitem>
[29d11601]183<!-- I don't know if this is true or not. I tested on a Haswell.
[24c0a06e]184 <listitem>
185 <para>
186 If the test suite is run on a Skylake-based Intel CPU or newer,
187 many tests will fail due to the removal of the deprecated/problematic
188 libmpx library in GCC.
189 </para>
190 </listitem>
[29d11601]191-->
[39e42c88]192 <listitem>
193 <para>
[800323ec]194 A test run of the test suite had 230 unexpected failures
[29d11601]195 (out of over 70000 tests).
[39e42c88]196 </para>
197 </listitem>
[aea8090f]198
[bfbc72a]199 <listitem>
200 <para>
201 On some systems, the gdb.tui test suite will fail if running over
202 SSH.
203 </para>
204 </listitem>
205
[aea8090f]206 <listitem>
207 <para>
208 On some AMD-based systems, over 200 additional tests
209 may fail due to a difference in the threading implementation
210 on those CPUs.
211 </para>
212 <!-- On my Turion 64 X2 system, I had 498 failures, a majority
213 of which failed on my workstation as well when I rebuilt it
214 in March 2020. My skylake-based system has 228 failures. -renodr -->
215 </listitem>
216
[39e42c88]217 </itemizedlist>
[4b0ebf70]218
[d3970e1]219 <para>
220 Now, as the <systemitem class="username">root</systemitem> user:
221 </para>
[4b0ebf70]222
223<screen role="root"><userinput>make -C gdb install</userinput></screen>
224
[852fc810]225 <para>
[46fd248]226 If you have built the API documentation, it is now in gdb/doc/doxy.
227 You can install it (as the <systemitem class="username">root</systemitem>
228 user):
[852fc810]229 </para>
230
[a42c273]231<screen role="root"
232 remap="doc"><userinput>install -d /usr/share/doc/gdb-&gdb-version; &amp;&amp;
[03b05e7]233rm -rf gdb/doc/doxy/xml &amp;&amp;
[852fc810]234cp -Rv gdb/doc/doxy /usr/share/doc/gdb-&gdb-version;</userinput></screen>
235
[4b0ebf70]236 </sect2>
[d3970e1]237
[870e9f05]238 <sect2 role="commands">
239 <title>Command Explanations</title>
240
241 <para>
242 <parameter>--with-system-readline</parameter>: This switch forces
243 <application>GDB</application> to use the copy of
244 <application>Readline</application> installed in LFS.
245 </para>
246
[d38dc9a]247 <para>
248 <parameter>--with-python=/usr/bin/python3</parameter>: This switch
249 forces <application>GDB</application> to use Python 3 installed
[9533795]250 in LFS. Remove this switch if you have installed
251 <xref linkend="python2"/> and want to use it instead of Python 3.
[d38dc9a]252 </para>
253
[870e9f05]254 </sect2>
255
[4b0ebf70]256 <sect2 role="content">
257 <title>Contents</title>
258
259 <segmentedlist>
260 <segtitle>Installed Programs</segtitle>
261 <segtitle>Installed Library</segtitle>
262 <segtitle>Installed Directories</segtitle>
263
264 <seglistitem>
[4890200]265 <seg>
[6cd96df]266 gcore, gdb and gdbserver
[4890200]267 </seg>
268 <seg>
[a2e21ee]269 <!--libinproctrace.so-->
270 None
[4890200]271 </seg>
272 <seg>
[03b05e7]273 /usr/{include,share}/gdb and /usr/share/doc/gdb-&gdb-version;
[4890200]274 </seg>
[4b0ebf70]275 </seglistitem>
276 </segmentedlist>
277
278 <variablelist>
279 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
280 <?dbfo list-presentation="list"?>
281 <?dbhtml list-presentation="table"?>
282
[a55a187]283 <varlistentry id="gcore">
284 <term><command>gcore</command></term>
285 <listitem>
286 <para>
[4c24eb0a]287 generates a core dump of a running program
[a55a187]288 </para>
289 <indexterm zone="gdb gcore">
290 <primary sortas="b-gcore">gcore</primary>
291 </indexterm>
292 </listitem>
293 </varlistentry>
294
[4b0ebf70]295 <varlistentry id="gdb-prog">
296 <term><command>gdb</command></term>
297 <listitem>
[d3970e1]298 <para>
[4c24eb0a]299 is the GNU Debugger
[d3970e1]300 </para>
[4b0ebf70]301 <indexterm zone="gdb gdb-prog">
302 <primary sortas="b-gdb-prog">gdb-prog</primary>
303 </indexterm>
304 </listitem>
305 </varlistentry>
306
307 <varlistentry id="gdbserver">
308 <term><command>gdbserver</command></term>
309 <listitem>
[d3970e1]310 <para>
[4890200]311 is a remote server for the GNU debugger (it allows programs
[4c24eb0a]312 to be debugged from a different machine)
[d3970e1]313 </para>
[4b0ebf70]314 <indexterm zone="gdb gdbserver">
315 <primary sortas="b-gdbserver">gdbserver</primary>
316 </indexterm>
317 </listitem>
318 </varlistentry>
319
[a2e21ee]320<!-- Not present with 10.1
[4b0ebf70]321 <varlistentry id="libinproctrace">
[4890200]322 <term><filename class="libraryfile">libinproctrace.so</filename></term>
[4b0ebf70]323 <listitem>
[d3970e1]324 <para>
325 contains functions for the in-process tracing agent. The agent
326 allows for installing fast tracepoints, listing static tracepoint
327 markers, probing static tracepoints markers, and starting trace
328 monitoring.
329 </para>
[4b0ebf70]330 <indexterm zone="gdb libinproctrace">
331 <primary sortas="c-libinproctrace">libinproctrace.so</primary>
332 </indexterm>
333 </listitem>
[d3970e1]334 </varlistentry>
[a2e21ee]335 -->
[4b0ebf70]336 </variablelist>
337
338 </sect2>
339
340</sect1>
Note: See TracBrowser for help on using the repository browser.