source: chapter06/binutils.xml@ ca17032

10.0 10.0-rc1 10.1 10.1-rc1 11.0 11.0-rc1 11.0-rc2 11.0-rc3 11.1 11.1-rc1 11.2 11.2-rc1 11.3 11.3-rc1 12.0 12.0-rc1 12.1 12.1-rc1 6.3 6.4 6.5 6.6 6.7 6.8 7.0 7.1 7.2 7.3 7.4 7.5 7.5-systemd 7.6 7.6-systemd 7.7 7.7-systemd 7.8 7.8-systemd 7.9 7.9-systemd 8.0 8.1 8.2 8.3 8.4 9.0 9.1 arm bdubbs/gcc13 ml-11.0 multilib renodr/libudev-from-systemd s6-init trunk xry111/arm64 xry111/arm64-12.0 xry111/clfs-ng xry111/lfs-next xry111/loongarch xry111/loongarch-12.0 xry111/loongarch-12.1 xry111/mips64el xry111/pip3 xry111/rust-wip-20221008 xry111/update-glibc
Last change on this file since ca17032 was ca17032, checked in by Manuel Canales Esparcia <manuel@…>, 18 years ago

Including patches.ent from general.ent

git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@7137 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

  • Property mode set to 100644
File size: 9.4 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN" "http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd" [
3 <!ENTITY % general-entities SYSTEM "../general.ent">
4 %general-entities;
5]>
6<sect1 id="ch-system-binutils" role="wrap">
7<title>Binutils-&binutils-version;</title>
8<?dbhtml filename="binutils.html"?>
9
10<indexterm zone="ch-system-binutils"><primary sortas="a-Binutils">Binutils</primary></indexterm>
11
12<sect2 role="package"><title/>
13<para>The Binutils package contains a linker, an assembler, and other tools for
14handling object files.</para>
15
16<segmentedlist>
17<segtitle>&buildtime;</segtitle>
18<segtitle>&diskspace;</segtitle>
19<seglistitem><seg>1.3 SBU</seg><seg>158 MB</seg></seglistitem>
20</segmentedlist>
21
22<segmentedlist>
23<segtitle>&dependencies;</segtitle>
24<seglistitem><seg>Bash, Coreutils, Diffutils, GCC, Gettext,
25Glibc, Grep, M4, Make, Perl, Sed, and Texinfo</seg></seglistitem>
26</segmentedlist>
27</sect2>
28
29<sect2 role="installation">
30<title>Installation of Binutils</title>
31
32<para>Verify that the PTYs are working properly inside the chroot
33environment. Check that everything is set up correctly by performing a
34simple test:</para>
35
36<screen><userinput>expect -c "spawn ls"</userinput></screen>
37
38<para>If the following message shows up, the chroot environment is not
39set up for proper PTY operation:</para>
40
41<screen><computeroutput>The system has no more ptys.
42Ask your system administrator to create more.</computeroutput></screen>
43
44<para>This issue needs to be resolved before running the test suites
45for Binutils and GCC.</para>
46
47<para>The Binutils documentation recommends building Binutils outside of the
48source directory in a dedicated build directory:</para>
49
50<screen><userinput>mkdir -v ../binutils-build
51cd ../binutils-build</userinput></screen>
52
53<para>Prepare Binutils for compilation:</para>
54
55<screen><userinput>../binutils-&binutils-version;/configure --prefix=/usr \
56 --enable-shared</userinput></screen>
57
58<para>Compile the package:</para>
59
60<screen><userinput>make tooldir=/usr</userinput></screen>
61
62<para>Normally, the tooldir (the directory where the executables will ultimately
63be located) is set to <filename
64class="directory">$(exec_prefix)/$(target_alias)</filename>. For example, i686
65machines would expand that to <filename
66class="directory">/usr/i686-pc-linux-gnu</filename>. Because this is a custom
67system, this target-specific directory in <filename
68class="directory">/usr</filename> is not required. <filename
69class="directory">$(exec_prefix)/$(target_alias)</filename> would be used if the
70system was used to cross-compile (for example, compiling a package on an Intel
71machine that generates code that can be executed on PowerPC machines).</para>
72
73<important><para>The test suite for Binutils in this section is
74considered critical. Do not skip it under any
75circumstances.</para></important>
76
77<para>Test the results:</para>
78
79<screen><userinput>make check</userinput></screen>
80
81<para>Install the package:</para>
82
83<screen><userinput>make tooldir=/usr install</userinput></screen>
84
85<para>Install the <filename class="headerfile">libiberty</filename> header file that is needed by
86some packages:</para>
87
88<screen><userinput>cp -v ../binutils-&binutils-version;/include/libiberty.h /usr/include</userinput></screen>
89
90</sect2>
91
92
93<sect2 id="contents-binutils" role="content"><title>Contents of Binutils</title>
94
95<segmentedlist>
96<segtitle>Installed programs</segtitle>
97<segtitle>Installed libraries</segtitle>
98<seglistitem><seg>addr2line, ar, as, c++filt, gprof, ld, nm, objcopy, objdump,
99ranlib, readelf, size, strings, and strip</seg>
100<seg>libiberty.a, libbfd.[a,so], and libopcodes.[a,so]</seg></seglistitem>
101</segmentedlist>
102
103<variablelist><bridgehead renderas="sect3">Short Descriptions</bridgehead>
104<?dbfo list-presentation="list"?>
105<?dbhtml list-presentation="table"?>
106
107<varlistentry id="addr2line">
108<term><command>addr2line</command></term>
109<listitem>
110<para>Translates program addresses to file names and line numbers;
111given an address and the name of an executable, it uses the debugging
112information in the executable to determine which source file and line
113number are associated with the address</para>
114<indexterm zone="ch-system-binutils addr2line"><primary sortas="b-addr2line">addr2line</primary></indexterm>
115</listitem>
116</varlistentry>
117
118<varlistentry id="ar">
119<term><command>ar</command></term>
120<listitem>
121<para>Creates, modifies, and extracts from archives</para>
122<indexterm zone="ch-system-binutils ar"><primary sortas="b-ar">ar</primary></indexterm>
123</listitem>
124</varlistentry>
125
126<varlistentry id="as">
127<term><command>as</command></term>
128<listitem>
129<para>An assembler that assembles the output of <command>gcc</command>
130into object files</para>
131<indexterm zone="ch-system-binutils as"><primary sortas="b-as">as</primary></indexterm>
132</listitem>
133</varlistentry>
134
135<varlistentry id="c-filt">
136<term><command>c++filt</command></term>
137<listitem>
138<para>Used by the linker to de-mangle C++ and Java symbols and to keep
139overloaded functions from clashing</para>
140<indexterm zone="ch-system-binutils c-filt"><primary sortas="b-c++filt">c++filt</primary></indexterm>
141</listitem>
142</varlistentry>
143
144<varlistentry id="gprof">
145<term><command>gprof</command></term>
146<listitem>
147<para>Displays call graph profile data</para>
148<indexterm zone="ch-system-binutils gprof"><primary sortas="b-gprof">gprof</primary></indexterm>
149</listitem>
150</varlistentry>
151
152<varlistentry id="ld">
153<term><command>ld</command></term>
154<listitem>
155<para>A linker that combines a number of object and archive files into a single file,
156relocating their data and tying up symbol references</para>
157<indexterm zone="ch-system-binutils ld"><primary sortas="b-ld">ld</primary></indexterm>
158</listitem>
159</varlistentry>
160
161<varlistentry id="nm">
162<term><command>nm</command></term>
163<listitem>
164<para>Lists the symbols occurring in a given object file</para>
165<indexterm zone="ch-system-binutils nm"><primary sortas="b-nm">nm</primary></indexterm>
166</listitem>
167</varlistentry>
168
169<varlistentry id="objcopy">
170<term><command>objcopy</command></term>
171<listitem>
172<para>Translates one type of object file into another</para>
173<indexterm zone="ch-system-binutils objcopy"><primary sortas="b-objcopy">objcopy</primary></indexterm>
174</listitem>
175</varlistentry>
176
177<varlistentry id="objdump">
178<term><command>objdump</command></term>
179<listitem>
180<para>Displays information about the given object file, with options
181controlling the particular information to display; the information
182shown is useful to programmers who are working on the compilation
183tools</para>
184<indexterm zone="ch-system-binutils objdump"><primary sortas="b-objdump">objdump</primary></indexterm>
185</listitem>
186</varlistentry>
187
188<varlistentry id="ranlib">
189<term><command>ranlib</command></term>
190<listitem>
191<para>Generates an index of the contents of an archive and stores it
192in the archive; the index lists all of the symbols defined by archive
193members that are relocatable object files</para>
194<indexterm zone="ch-system-binutils ranlib"><primary sortas="b-ranlib">ranlib</primary></indexterm>
195</listitem>
196</varlistentry>
197
198<varlistentry id="readelf">
199<term><command>readelf</command></term>
200<listitem>
201<para>Displays information about ELF type binaries</para>
202<indexterm zone="ch-system-binutils readelf"><primary sortas="b-readelf">readelf</primary></indexterm>
203</listitem>
204</varlistentry>
205
206<varlistentry id="size">
207<term><command>size</command></term>
208<listitem>
209<para>Lists the section sizes and the total size for the given object files</para>
210<indexterm zone="ch-system-binutils size"><primary sortas="b-size">size</primary></indexterm>
211</listitem>
212</varlistentry>
213
214<varlistentry id="strings">
215<term><command>strings</command></term>
216<listitem>
217<para>Outputs, for each given file, the sequences of printable
218characters that are of at least the specified length (defaulting to
219four); for object files, it prints, by default, only the strings from
220the initializing and loading sections while for other types of files, it
221scans the entire file</para>
222<indexterm zone="ch-system-binutils strings"><primary sortas="b-strings">strings</primary></indexterm>
223</listitem>
224</varlistentry>
225
226<varlistentry id="strip">
227<term><command>strip</command></term>
228<listitem>
229<para>Discards symbols from object files</para>
230<indexterm zone="ch-system-binutils strip"><primary sortas="b-strip">strip</primary></indexterm>
231</listitem>
232</varlistentry>
233
234<varlistentry id="libiberty">
235<term><filename class="libraryfile">libiberty</filename></term>
236<listitem>
237<para>Contains routines used by various GNU programs, including
238<command>getopt</command>, <command>obstack</command>,
239<command>strerror</command>, <command>strtol</command>, and
240<command>strtoul</command></para>
241<indexterm zone="ch-system-binutils libiberty"><primary sortas="c-libiberty">libiberty</primary></indexterm>
242</listitem>
243</varlistentry>
244
245<varlistentry id="libbfd">
246<term><filename class="libraryfile">libbfd</filename></term>
247<listitem>
248<para>The Binary File Descriptor library</para>
249<indexterm zone="ch-system-binutils libbfd"><primary sortas="c-libbfd">libbfd</primary></indexterm>
250</listitem>
251</varlistentry>
252
253<varlistentry id="libopcodes">
254<term><filename class="libraryfile">libopcodes</filename></term>
255<listitem>
256<para>A library for dealing with opcodes&mdash;the <quote>readable
257text</quote> versions of instructions for the processor;
258it is used for building utilities like
259<command>objdump</command>.</para>
260<indexterm zone="ch-system-binutils libopcodes"><primary sortas="c-libopcodes">libopcodes</primary></indexterm>
261</listitem>
262</varlistentry>
263</variablelist>
264
265</sect2>
266
267</sect1>
268
Note: See TracBrowser for help on using the repository browser.