source: chapter06/binutils.xml@ 1335450

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.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 1335450 was 1335450, checked in by Randy McMurchy <randy@…>, 16 years ago

Added a patch to the Chapter 6 Binutils instructions to correct some errors in the test suite

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

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