source: chapter06/binutils.xml@ 9dfc02f

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.0 6.1 6.1.1 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 9dfc02f was 9dfc02f, checked in by Zack Winkles <winkie@…>, 20 years ago

Current BE-LFS (but w/ GCC 3.3.3) merged -> 6.0 branch

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

  • Property mode set to 100644
File size: 8.4 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN" "http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd" [
3 <!ENTITY % general-entities SYSTEM "../general.ent">
4 %general-entities;
5]>
6<sect1 id="ch-system-binutils" xreflabel="Binutils">
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<para>The Binutils package contains a linker, an assembler, and other tools for
13handling object files.</para>
14
15<screen>&buildtime; 1.4 SBU
16&diskspace; 167 MB</screen>
17
18<para>Binutils installation depends on: Bash, Coreutils, Diffutils, GCC, Gettext,
19Glibc, Grep, Make, Perl, Sed, Texinfo.</para>
20
21
22
23<sect2><title>Installation of Binutils</title>
24
25<para>Now is an appropriate time to verify that your pseudo terminals (PTYs) are
26working properly inside the chroot environment. We will again quickly check that
27everything is set up correctly by performing a simple test:</para>
28
29<screen><userinput>expect -c "spawn ls"</userinput></screen>
30
31<para>If you receive the message:</para>
32
33<blockquote><screen>The system has no more ptys. Ask your system administrator to create more.</screen></blockquote>
34
35<para>Your chroot environment is not set up for proper PTY operation. In this
36case there is no point in running the test suites for Binutils and GCC until you
37are able to resolve the issue.</para>
38
39<para>This package is known to behave badly when you have changed its
40default optimization flags (including the -march and -mcpu options).
41Therefore, if you have defined any environment variables that override
42default optimizations, such as CFLAGS and CXXFLAGS, we recommend un-setting
43or modifying them when building Binutils.</para>
44
45<para>The Binutils documentation recommends building Binutils outside of the
46source directory in a dedicated build directory:</para>
47
48<screen><userinput>mkdir ../binutils-build
49cd ../binutils-build</userinput></screen>
50
51<para>Now prepare Binutils for compilation:</para>
52
53<screen><userinput>../binutils-&binutils-version;/configure --prefix=/usr --enable-shared</userinput></screen>
54
55<para>Compile the package:</para>
56
57<screen><userinput>make tooldir=/usr</userinput></screen>
58
59<para>Normally, the <emphasis>tooldir</emphasis> (the directory where the
60executables end up) is set to $(exec_prefix)/$(target_alias), which expands
61into, for example, <filename>/usr/i686-pc-linux-gnu</filename>. Since we only
62build for our own system, we don't need this target specific directory in
63<filename>/usr</filename>. That setup would be used if the system was used to
64cross-compile (for example compiling a package on an Intel machine that
65generates code that can be executed on PowerPC machines).</para>
66
67<important><para>The test suite for Binutils in this section is considered
68<emphasis>critical</emphasis>. Our advice is to not skip it under any
69circumstances.</para></important>
70
71<para>Test the results:</para>
72
73<screen><userinput>make -k check</userinput></screen>
74
75<para>The test suite notes from <xref linkend="ch-tools-binutils-pass2"/> are still
76very much appropriate here. Be sure to refer back there should you have any
77doubts.</para>
78
79<para>Install the package:</para>
80
81<screen><userinput>make tooldir=/usr install</userinput></screen>
82
83<para>Install the <emphasis>libiberty</emphasis> header file that is needed by
84some packages:</para>
85
86<screen><userinput>cp ../binutils-&binutils-version;/include/libiberty.h /usr/include</userinput></screen>
87
88</sect2>
89
90
91<sect2 id="contents-binutils"><title>Contents of Binutils</title>
92
93<para><emphasis>Installed programs</emphasis>: addr2line, ar, as, c++filt,
94gprof, ld, nm, objcopy, objdump, ranlib, readelf, size, strings and
95strip</para>
96
97<para><emphasis>Installed libraries</emphasis>: libiberty.a, libbfd.[a,so] and
98libopcodes.[a,so]</para>
99
100</sect2>
101
102
103<sect2><title>Short descriptions</title>
104
105<indexterm zone="ch-system-binutils addr2line"><primary sortas="b-addr2line">addr2line</primary></indexterm>
106<para id="addr2line"><command>addr2line</command> translates program addresses to file
107names and line numbers. Given an address and the name of an executable, it
108uses the debugging information in the executable to figure out which source
109file and line number are associated with the address.</para>
110
111<indexterm zone="ch-system-binutils ar"><primary sortas="b-ar">ar</primary></indexterm>
112<para id="ar"><command>ar</command> creates, modifies, and extracts from archives. An archive
113is a single file holding a collection of other files in a structure that makes
114it possible to retrieve the original individual files (called members of
115the archive).</para>
116
117<indexterm zone="ch-system-binutils as"><primary sortas="b-as">as</primary></indexterm>
118<para id="as"><command>as</command> is an assembler. It assembles the output of
119gcc into object files.</para>
120
121<indexterm zone="ch-system-binutils c-filt"><primary sortas="b-c++filt">c++filt</primary></indexterm>
122<para id="c-filt"><command>c++filt</command> is used by the linker to de-mangle C++ and
123Java symbols, to keep overloaded functions from clashing.</para>
124
125<indexterm zone="ch-system-binutils gprof"><primary sortas="b-gprof">gprof</primary></indexterm>
126<para id="gprof"><command>gprof</command> displays call graph profile data.</para>
127
128<indexterm zone="ch-system-binutils ld"><primary sortas="b-ld">ld</primary></indexterm>
129<para id="ld"><command>ld</command> is a linker. It combines a number of object
130and archive files into a single file, relocating their data and tying up symbol
131references.</para>
132
133<indexterm zone="ch-system-binutils nm"><primary sortas="b-nm">nm</primary></indexterm>
134<para id="nm"><command>nm</command> lists the symbols occurring in a given object file.</para>
135
136<indexterm zone="ch-system-binutils objcopy"><primary sortas="b-objcopy">objcopy</primary></indexterm>
137<para id="objcopy"><command>objcopy</command> is used to translate one type of object
138file into another.</para>
139
140<indexterm zone="ch-system-binutils objdump"><primary sortas="b-objdump">objdump</primary></indexterm>
141<para id="objdump"><command>objdump</command> displays information about the given
142object file, with options controlling what particular information to display.
143The information shown is mostly only useful to programmers who are working on
144the compilation tools.</para>
145
146<indexterm zone="ch-system-binutils ranlib"><primary sortas="b-ranlib">ranlib</primary></indexterm>
147<para id="ranlib"><command>ranlib</command> generates an index of the contents of an
148archive, and stores it in the archive. The index lists all the symbols defined
149by archive members that are relocatable object files.</para>
150
151<indexterm zone="ch-system-binutils readelf"><primary sortas="b-readelf">readelf</primary></indexterm>
152<para id="readelf"><command>readelf</command> displays information about elf type binaries.</para>
153
154<indexterm zone="ch-system-binutils size"><primary sortas="b-size">size</primary></indexterm>
155<para id="size"><command>size</command> lists the section sizes -- and the grand
156total -- for the given object files.</para>
157
158<indexterm zone="ch-system-binutils strings"><primary sortas="b-strings">strings</primary></indexterm>
159<para id="strings"><command>strings</command> outputs, for each given file, the sequences
160of printable characters that are of at least the specified length (defaulting to 4).
161For object files it prints, by default, only the strings from the initializing
162and loading sections. For other types of files it scans the whole file.</para>
163
164<indexterm zone="ch-system-binutils strip"><primary sortas="b-strip">strip</primary></indexterm>
165<para id="strip"><command>strip</command> discards symbols from object files.</para>
166
167<indexterm zone="ch-system-binutils libiberty"><primary sortas="c-libiberty">libiberty</primary></indexterm>
168<para id="libiberty"><command>libiberty</command> contains routines used by various GNU
169programs, including getopt, obstack, strerror, strtol and strtoul.</para>
170
171<indexterm zone="ch-system-binutils libbfd"><primary sortas="c-libbfd">libbfd</primary></indexterm>
172<para id="libbfd"><command>libbfd</command> is the Binary File Descriptor library.</para>
173
174<indexterm zone="ch-system-binutils libopcodes"><primary sortas="c-libopcodes">libopcodes</primary></indexterm>
175<para id="libopcodes"><command>libopcodes</command> is a library for dealing with opcodes.
176It is used for building utilities like objdump. Opcodes are the <quote>readable
177text</quote> versions of instructions for the processor.</para>
178
179</sect2>
180
181
182
183</sect1>
Note: See TracBrowser for help on using the repository browser.