source: general/prog/gdb.xml@ 6cd96df

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 7.10 7.5 7.6 7.6-blfs 7.6-systemd 7.7 7.8 7.9 8.0 8.1 8.2 8.3 8.4 9.0 9.1 basic bdubbs/svn elogind gnome kde5-13430 kde5-14269 kde5-14686 kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts krejzi/svn lazarus lxqt nosym perl-modules plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition systemd-11177 systemd-13485 trunk upgradedb xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since 6cd96df was 6cd96df, checked in by Fernando de Oliveira <fernando@…>, 10 years ago

Updates icedtea-web-1.4.2, lynx2.8.8pre.4, gdb-7.7 and sudo-1.8.9p5. A 'pathappend /opt/openjdk/man MANPATH' to OpenJDK-1.7.0.51/IcedTea-2.4.5 profile script.

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

  • Property mode set to 100644
File size: 5.1 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
7 <!ENTITY gdb-download-http "http://ftp.gnu.org/gnu/gdb/gdb-&gdb-version;.tar.bz2">
8 <!ENTITY gdb-download-ftp "ftp://ftp.gnu.org/gnu/gdb/gdb-&gdb-version;.tar.bz2">
[6cd96df]9 <!ENTITY gdb-md5sum "271a18f41858a7e98b28ae4eb91287c9">
[3c0ba9f]10 <!ENTITY gdb-size "24 MB">
[6cd96df]11 <!ENTITY gdb-buildsize "321 MB (559 MB with checks)">
12 <!ENTITY gdb-time "1.8 SBU (6.3 SBU with checks)">
[4b0ebf70]13]>
14
[d3970e1]15<sect1 id="gdb" xreflabel="GDB-&gdb-version;">
[4b0ebf70]16 <?dbhtml filename="gdb.html"?>
17
18 <sect1info>
19 <othername>$LastChangedBy$</othername>
20 <date>$Date$</date>
21 </sect1info>
22
[d3970e1]23 <title>GDB-&gdb-version;</title>
[4b0ebf70]24
25 <indexterm zone="gdb">
[4890200]26 <primary sortas="a-GDB">GDB</primary>
[4b0ebf70]27 </indexterm>
28
29 <sect2 role="package">
[d3970e1]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>
[4b0ebf70]40
[dc6ba1c0]41 &lfs74_checked;
[4b0ebf70]42
43 <bridgehead renderas="sect3">Package Information</bridgehead>
44 <itemizedlist spacing="compact">
45 <listitem>
[4890200]46 <para>
47 Download (HTTP): <ulink url="&gdb-download-http;"/>
48 </para>
[4b0ebf70]49 </listitem>
50 <listitem>
[4890200]51 <para>
52 Download (FTP): <ulink url="&gdb-download-ftp;"/>
53 </para>
[4b0ebf70]54 </listitem>
55 <listitem>
[4890200]56 <para>
57 Download MD5 sum: &gdb-md5sum;
58 </para>
[4b0ebf70]59 </listitem>
60 <listitem>
[4890200]61 <para>
62 Download size: &gdb-size;
63 </para>
[4b0ebf70]64 </listitem>
65 <listitem>
[4890200]66 <para>
67 Estimated disk space required: &gdb-buildsize;
68 </para>
[4b0ebf70]69 </listitem>
70 <listitem>
[4890200]71 <para>
72 Estimated build time: &gdb-time;
73 </para>
[4b0ebf70]74 </listitem>
75 </itemizedlist>
76
[d3970e1]77 <bridgehead renderas="sect3">GDB Dependencies</bridgehead>
[d4c9b7c]78
79 <bridgehead renderas="sect4">Optional</bridgehead>
80 <para role="optional">
[4890200]81 <xref linkend="dejagnu"/> (for tests) and
82 <xref linkend="python2"/>
[d4c9b7c]83 </para>
84
[4b0ebf70]85 <para condition="html" role="usernotes">User Notes:
[d3970e1]86 <ulink url="&blfs-wiki;/gdb"/>
87 </para>
[4b0ebf70]88 </sect2>
89
90 <sect2 role="installation">
[d3970e1]91 <title>Installation of GDB</title>
[4b0ebf70]92
[d3970e1]93 <para>
94 Install <application>GDB</application> by running the following
95 commands:
96 </para>
[4b0ebf70]97
[d4c9b7c]98<screen><userinput>./configure --prefix=/usr &amp;&amp;
[4b0ebf70]99make</userinput></screen>
100
[d3970e1]101 <para>
102 To test the results, issue: <command>make -k check</command>.
103 </para>
[4b0ebf70]104
[d3970e1]105 <para>
106 Now, as the <systemitem class="username">root</systemitem> user:
107 </para>
[4b0ebf70]108
109<screen role="root"><userinput>make -C gdb install</userinput></screen>
110
111 </sect2>
[d3970e1]112
[4b0ebf70]113 <sect2 role="content">
114 <title>Contents</title>
115
116 <segmentedlist>
117 <segtitle>Installed Programs</segtitle>
118 <segtitle>Installed Library</segtitle>
119 <segtitle>Installed Directories</segtitle>
120
121 <seglistitem>
[4890200]122 <seg>
[6cd96df]123 gcore, gdb and gdbserver
[4890200]124 </seg>
125 <seg>
126 libinproctrace.so
127 </seg>
128 <seg>
129 /usr/include/gdb and
130 /usr/share/gdb
131 </seg>
[4b0ebf70]132 </seglistitem>
133 </segmentedlist>
134
135 <variablelist>
136 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
137 <?dbfo list-presentation="list"?>
138 <?dbhtml list-presentation="table"?>
139
140 <varlistentry id="gdb-prog">
141 <term><command>gdb</command></term>
142 <listitem>
[d3970e1]143 <para>
144 is the GNU Debugger.
145 </para>
[4b0ebf70]146 <indexterm zone="gdb gdb-prog">
147 <primary sortas="b-gdb-prog">gdb-prog</primary>
148 </indexterm>
149 </listitem>
150 </varlistentry>
151
152 <varlistentry id="gdbserver">
153 <term><command>gdbserver</command></term>
154 <listitem>
[d3970e1]155 <para>
[4890200]156 is a remote server for the GNU debugger (it allows programs
157 to be debugged from a different machine).
[d3970e1]158 </para>
[4b0ebf70]159 <indexterm zone="gdb gdbserver">
160 <primary sortas="b-gdbserver">gdbserver</primary>
161 </indexterm>
162 </listitem>
163 </varlistentry>
164
165 <varlistentry id="libinproctrace">
[4890200]166 <term><filename class="libraryfile">libinproctrace.so</filename></term>
[4b0ebf70]167 <listitem>
[d3970e1]168 <para>
169 contains functions for the in-process tracing agent. The agent
170 allows for installing fast tracepoints, listing static tracepoint
171 markers, probing static tracepoints markers, and starting trace
172 monitoring.
173 </para>
[4b0ebf70]174 <indexterm zone="gdb libinproctrace">
175 <primary sortas="c-libinproctrace">libinproctrace.so</primary>
176 </indexterm>
177 </listitem>
[d3970e1]178 </varlistentry>
[4b0ebf70]179
180 </variablelist>
181
182 </sect2>
183
184</sect1>
Note: See TracBrowser for help on using the repository browser.