source: chapter06/binutils.xml@ 92474b45

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 92474b45 was 92474b45, checked in by Manuel Canales Esparcia <manuel@…>, 18 years ago

Indenting chapter 6, part 2.

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

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