source: chapter06/binutils.xml@ 869b0966

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 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 869b0966 was 869b0966, checked in by Bruce Dubbs <bdubbs@…>, 6 years ago

Update to glibc-2.27.
Update to man-pages-4.15.
Update to bash-4.4.18.
Update to iproute2-4.15.0.
Add an option to binutils to support 64-bit operations on
a 32-bit system.
Provide better initialization for vim.

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

  • Property mode set to 100644
File size: 13.6 KB
RevLine 
[673b0d8]1<?xml version="1.0" encoding="ISO-8859-1"?>
[b06ca36]2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
[673b0d8]4 <!ENTITY % general-entities SYSTEM "../general.ent">
5 %general-entities;
6]>
[92474b45]7
[81fd230]8<sect1 id="ch-system-binutils" role="wrap">
[92474b45]9 <?dbhtml filename="binutils.html"?>
10
[e747759]11 <sect1info condition="script">
12 <productname>binutils</productname>
13 <productnumber>&binutils-version;</productnumber>
14 <address>&binutils-url;</address>
15 </sect1info>
16
[92474b45]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/>
[673b0d8]25
[92474b45]26 <para>The Binutils package contains a linker, an assembler, and other
27 tools for handling object files.</para>
[6370fa6]28
[92474b45]29 <segmentedlist>
30 <segtitle>&buildtime;</segtitle>
31 <segtitle>&diskspace;</segtitle>
[5888299]32
[92474b45]33 <seglistitem>
[e4a5635]34 <seg>&binutils-ch6-sbu;</seg>
35 <seg>&binutils-ch6-du;</seg>
[92474b45]36 </seglistitem>
37 </segmentedlist>
[a001133]38
[92474b45]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
[4d86da9]45 environment by performing a simple test:</para>
[73aedd1d]46
[0445a3d]47<screen><userinput remap="test">expect -c "spawn ls"</userinput></screen>
[73aedd1d]48
[4d86da9]49 <para>This command should output the following:</para>
50
51<screen><computeroutput>spawn ls</computeroutput></screen>
52
53 <para>If, instead, the output includes the message below, then the environment
54 is not set up for proper PTY operation. This issue needs to be resolved before
55 running the test suites for Binutils and GCC:</para>
[81fd230]56
[92474b45]57<screen><computeroutput>The system has no more ptys.
[81fd230]58Ask your system administrator to create more.</computeroutput></screen>
[523725c]59
[f1dd547]60 <para>The Binutils documentation recommends building Binutils
61 in a dedicated build directory:</para>
[73aedd1d]62
[f1dd547]63<screen><userinput remap="pre">mkdir -v build
64cd build</userinput></screen>
[73aedd1d]65
[92474b45]66 <para>Prepare Binutils for compilation:</para>
[73aedd1d]67
[e123025]68<screen><userinput remap="configure">../configure --prefix=/usr \
69 --enable-gold \
70 --enable-ld=default \
71 --enable-plugins \
72 --enable-shared \
73 --disable-werror \
[869b0966]74 --enable-64-bit-bfd \
[512c848]75 --with-system-zlib</userinput></screen>
76 <variablelist>
77 <title>The meaning of the configure parameters:</title>
78
[e123025]79 <varlistentry>
80 <term><parameter>--enable-gold</parameter></term>
81 <listitem>
82 <para>Build the gold linker and install it as ld.gold (along side the
83 default linker).</para>
84 </listitem>
85 </varlistentry>
86
87 <varlistentry>
88 <term><parameter>--enable-ld=default</parameter></term>
89 <listitem>
90 <para>Build the original bdf linker and install it as both ld (the
91 default linker) and ld.bfd.</para>
92 </listitem>
93 </varlistentry>
94
[512c848]95 <varlistentry>
96 <term><parameter>--enable-plugins</parameter></term>
97 <listitem>
98 <para>Enables plugin support for the linker.</para>
99 </listitem>
100 </varlistentry>
101
[869b0966]102 <varlistentry>
103 <term><parameter>--enable-64-bit-bfd</parameter></term>
104 <listitem>
105 <para>Enables 64-bit support (on hosts with narrower word sizes).
106 May not be needed on 64-bit systems, but does no harm.</para>
107 </listitem>
108 </varlistentry>
109
[512c848]110 <varlistentry>
111 <term><parameter>--with-system-zlib</parameter></term>
112 <listitem>
113 <para>Use the installed zlib library rather than building the
114 included version.</para>
115 </listitem>
116 </varlistentry>
117
118 </variablelist>
[73aedd1d]119
[92474b45]120 <para>Compile the package:</para>
[73aedd1d]121
[0445a3d]122<screen><userinput remap="make">make tooldir=/usr</userinput></screen>
[73aedd1d]123
[92474b45]124 <variablelist>
125 <title>The meaning of the make parameter:</title>
126
127 <varlistentry>
128 <term><parameter>tooldir=/usr</parameter></term>
129 <listitem>
130 <para>Normally, the tooldir (the directory where the executables will
131 ultimately be located) is set to <filename
132 class="directory">$(exec_prefix)/$(target_alias)</filename>. For
[6e88633]133 example, x86_64 machines would expand that to <filename
134 class="directory">/usr/x86_64-unknown-linux-gnu</filename>. Because this is
[92474b45]135 a custom system, this target-specific directory in <filename
136 class="directory">/usr</filename> is not required. <filename
137 class="directory">$(exec_prefix)/$(target_alias)</filename> would be
138 used if the system was used to cross-compile (for example, compiling a
139 package on an Intel machine that generates code that can be executed
140 on PowerPC machines).</para>
141 </listitem>
142 </varlistentry>
143
144 </variablelist>
145
146 <important>
147 <para>The test suite for Binutils in this section is considered critical.
148 Do not skip it under any circumstances.</para>
149 </important>
150
151 <para>Test the results:</para>
[81fd230]152
[42130d6]153<screen><userinput remap="test">make -k check</userinput></screen>
[5ef820b]154
[aeaae4a]155 <para>One test, debug_msg.sh, is known to fail.</para>
[89c1c43d]156
[92474b45]157 <para>Install the package:</para>
[73aedd1d]158
[0445a3d]159<screen><userinput remap="install">make tooldir=/usr install</userinput></screen>
[73aedd1d]160
[92474b45]161 </sect2>
162
163 <sect2 id="contents-binutils" role="content">
164 <title>Contents of Binutils</title>
165
166 <segmentedlist>
167 <segtitle>Installed programs</segtitle>
168 <segtitle>Installed libraries</segtitle>
[fe05b08]169 <segtitle>Installed directory</segtitle>
[92474b45]170
171 <seglistitem>
[98d9003]172 <seg>addr2line, ar, as, c++filt, elfedit, gprof, ld, ld.bfd, ld.gold, nm,
[3119ddc]173 objcopy, objdump, ranlib, readelf, size, strings, and strip</seg>
[7bb9fda]174 <seg>libbfd.{a,so} and libopcodes.{a,so}</seg>
[fe05b08]175 <seg>/usr/lib/ldscripts</seg>
[92474b45]176 </seglistitem>
177 </segmentedlist>
178
179 <variablelist>
180 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
181 <?dbfo list-presentation="list"?>
182 <?dbhtml list-presentation="table"?>
183
184 <varlistentry id="addr2line">
185 <term><command>addr2line</command></term>
186 <listitem>
187 <para>Translates program addresses to file names and line numbers;
188 given an address and the name of an executable, it uses the debugging
189 information in the executable to determine which source file and line
190 number are associated with the address</para>
191 <indexterm zone="ch-system-binutils addr2line">
192 <primary sortas="b-addr2line">addr2line</primary>
193 </indexterm>
194 </listitem>
195 </varlistentry>
196
197 <varlistentry id="ar">
198 <term><command>ar</command></term>
199 <listitem>
200 <para>Creates, modifies, and extracts from archives</para>
201 <indexterm zone="ch-system-binutils ar">
202 <primary sortas="b-ar">ar</primary>
203 </indexterm>
204 </listitem>
205 </varlistentry>
206
207 <varlistentry id="as">
208 <term><command>as</command></term>
209 <listitem>
210 <para>An assembler that assembles the output of <command>gcc</command>
211 into object files</para>
212 <indexterm zone="ch-system-binutils as">
213 <primary sortas="b-as">as</primary>
214 </indexterm>
215 </listitem>
216 </varlistentry>
217
218 <varlistentry id="c-filt">
219 <term><command>c++filt</command></term>
220 <listitem>
221 <para>Used by the linker to de-mangle C++ and Java symbols and to keep
222 overloaded functions from clashing</para>
223 <indexterm zone="ch-system-binutils c-filt">
224 <primary sortas="b-c++filt">c++filt</primary>
225 </indexterm>
226 </listitem>
227 </varlistentry>
228
[3119ddc]229 <varlistentry id="elfedit">
230 <term><command>elfedit</command></term>
231 <listitem>
232 <para>Updates the ELF header of ELF files</para>
233 <indexterm zone="ch-system-binutils elfedit">
234 <primary sortas="b-elfedit">elfedit</primary>
235 </indexterm>
236 </listitem>
237 </varlistentry>
238
[92474b45]239 <varlistentry id="gprof">
240 <term><command>gprof</command></term>
241 <listitem>
242 <para>Displays call graph profile data</para>
243 <indexterm zone="ch-system-binutils gprof">
244 <primary sortas="b-gprof">gprof</primary>
245 </indexterm>
246 </listitem>
247 </varlistentry>
248
249 <varlistentry id="ld">
250 <term><command>ld</command></term>
251 <listitem>
252 <para>A linker that combines a number of object and archive files
253 into a single file, relocating their data and tying up symbol
254 references</para>
255 <indexterm zone="ch-system-binutils ld">
256 <primary sortas="b-ld">ld</primary>
257 </indexterm>
258 </listitem>
259 </varlistentry>
260
[98d9003]261 <varlistentry id="ld.gold">
262 <term><command>ld.gold</command></term>
263 <listitem>
264 <para>A cut down version of ld that only supports the
265 elf object file format</para>
266 <indexterm zone="ch-system-binutils ld.gold">
267 <primary sortas="b-ld.gold">ld.gold</primary>
268 </indexterm>
269 </listitem>
270 </varlistentry>
271
[3119ddc]272 <varlistentry id="ld.bfd">
273 <term><command>ld.bfd</command></term>
274 <listitem>
275 <para>Hard link to <command>ld</command></para>
276 <indexterm zone="ch-system-binutils ld.bfd">
277 <primary sortas="b-ld.bfd">ld.bfd</primary>
278 </indexterm>
279 </listitem>
280 </varlistentry>
281
[92474b45]282 <varlistentry id="nm">
283 <term><command>nm</command></term>
284 <listitem>
285 <para>Lists the symbols occurring in a given object file</para>
286 <indexterm zone="ch-system-binutils nm">
287 <primary sortas="b-nm">nm</primary>
288 </indexterm>
289 </listitem>
290 </varlistentry>
291
292 <varlistentry id="objcopy">
293 <term><command>objcopy</command></term>
294 <listitem>
295 <para>Translates one type of object file into another</para>
296 <indexterm zone="ch-system-binutils objcopy">
297 <primary sortas="b-objcopy">objcopy</primary>
298 </indexterm>
299 </listitem>
300 </varlistentry>
301
302 <varlistentry id="objdump">
303 <term><command>objdump</command></term>
304 <listitem>
305 <para>Displays information about the given object file, with options
306 controlling the particular information to display; the information
307 shown is useful to programmers who are working on the compilation
308 tools</para>
309 <indexterm zone="ch-system-binutils objdump">
310 <primary sortas="b-objdump">objdump</primary>
311 </indexterm>
312 </listitem>
313 </varlistentry>
314
315 <varlistentry id="ranlib">
316 <term><command>ranlib</command></term>
317 <listitem>
318 <para>Generates an index of the contents of an archive and stores it
319 in the archive; the index lists all of the symbols defined by archive
320 members that are relocatable object files</para>
321 <indexterm zone="ch-system-binutils ranlib">
322 <primary sortas="b-ranlib">ranlib</primary>
323 </indexterm>
324 </listitem>
325 </varlistentry>
326
327 <varlistentry id="readelf">
328 <term><command>readelf</command></term>
329 <listitem>
330 <para>Displays information about ELF type binaries</para>
331 <indexterm zone="ch-system-binutils readelf">
332 <primary sortas="b-readelf">readelf</primary>
333 </indexterm>
334 </listitem>
335 </varlistentry>
336
337 <varlistentry id="size">
338 <term><command>size</command></term>
339 <listitem>
340 <para>Lists the section sizes and the total size for the given
341 object files</para>
342 <indexterm zone="ch-system-binutils size">
343 <primary sortas="b-size">size</primary>
344 </indexterm>
345 </listitem>
346 </varlistentry>
347
348 <varlistentry id="strings">
349 <term><command>strings</command></term>
350 <listitem>
351 <para>Outputs, for each given file, the sequences of printable
352 characters that are of at least the specified length (defaulting to
353 four); for object files, it prints, by default, only the strings from
354 the initializing and loading sections while for other types of files, it
355 scans the entire file</para>
356 <indexterm zone="ch-system-binutils strings">
357 <primary sortas="b-strings">strings</primary>
358 </indexterm>
359 </listitem>
360 </varlistentry>
361
362 <varlistentry id="strip">
363 <term><command>strip</command></term>
364 <listitem>
365 <para>Discards symbols from object files</para>
366 <indexterm zone="ch-system-binutils strip">
367 <primary sortas="b-strip">strip</primary>
368 </indexterm>
369 </listitem>
370 </varlistentry>
[7bb9fda]371
[92474b45]372 <varlistentry id="libbfd">
373 <term><filename class="libraryfile">libbfd</filename></term>
374 <listitem>
375 <para>The Binary File Descriptor library</para>
376 <indexterm zone="ch-system-binutils libbfd">
377 <primary sortas="c-libbfd">libbfd</primary>
378 </indexterm>
379 </listitem>
380 </varlistentry>
381
382 <varlistentry id="libopcodes">
383 <term><filename class="libraryfile">libopcodes</filename></term>
384 <listitem>
385 <para>A library for dealing with opcodes&mdash;the <quote>readable
386 text</quote> versions of instructions for the processor;
387 it is used for building utilities like
[afba93b]388 <command>objdump</command></para>
[92474b45]389 <indexterm zone="ch-system-binutils libopcodes">
390 <primary sortas="c-libopcodes">libopcodes</primary>
391 </indexterm>
392 </listitem>
393 </varlistentry>
394
395 </variablelist>
396
397 </sect2>
[673b0d8]398
399</sect1>
Note: See TracBrowser for help on using the repository browser.