source: appendixa/binutils-desc.xml@ 227d26b

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 v4_0 v4_1 v5_0 v5_1 v5_1_1 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 227d26b was e69a59f, checked in by Gerard Beekmans <gerard@…>, 22 years ago

various fixes

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

  • Property mode set to 100644
File size: 4.7 KB
Line 
1<sect2><title>Contents of Binutils-&binutils-contversion;</title>
2
3<sect3><title>Program Files</title>
4
5<para>addr2line, ar, as, c++filt, gasp, gprof, ld, nm, objcopy, objdump,
6ranlib, readelf, size, strings and strip</para></sect3>
7
8<sect3><title>Descriptions</title>
9
10<sect4><title>addr2line</title>
11<para>addr2line translates program addresses into file names and line numbers.
12Given an address and an executable, it uses the debugging information in
13the executable to figure out which file name and line number are associated
14with a given address.</para></sect4>
15
16<sect4><title>ar</title>
17<para>The ar program creates, modifies, and extracts from archives. An archive
18is a single file holding a collection of other files in a structure that makes
19it possible to retrieve the original individual files (called members of
20the archive).</para></sect4>
21
22<sect4><title>as</title>
23<para>as is primarily intended to assemble the output of the GNU C compiler gcc
24for use by the linker ld.</para></sect4>
25
26<sect4><title>c++filt</title>
27<para>The C++ language provides function overloading, which means that it is
28possible to
29write many functions with the same name (providing each takes parameters
30of different types). All C++ function names are encoded into a low-level
31assembly label (this process is known as mangling). The c++filt program
32does the inverse mapping: it decodes (demangles) low-level names into
33user-level names so that the linker can keep these overloaded functions
34from clashing.</para></sect4>
35
36<sect4><title>gasp</title>
37<para>Gasp is the Assembler Macro Preprocessor.</para></sect4>
38
39<sect4><title>gprof</title>
40<para>gprof displays call graph profile data.</para></sect4>
41
42<sect4><title>ld</title>
43<para>ld combines a number of object and archive files, relocates their data
44and ties up symbol references. Often the last step in building a new compiled
45program to run is a call to ld.</para></sect4>
46
47<sect4><title>nm</title>
48<para>nm lists the symbols from object files.</para></sect4>
49
50<sect4><title>objcopy</title>
51<para>objcopy utility copies the contents of an object file to another. objcopy
52uses the GNU BFD Library to read and write the object files. It can write
53the destination object file in a format different from that of the source
54object file.</para></sect4>
55
56<sect4><title>objdump</title>
57<para>objdump displays information about one or more object files. The options
58control what particular information to display. This information is mostly
59useful to programmers who are working on the compilation tools, as opposed to
60programmers who just want their program to compile and work.</para></sect4>
61
62<sect4><title>ranlib</title>
63<para>ranlib generates an index to the contents of an archive, and stores it in
64the archive. The index lists each symbol defined by a member of an archive
65that is a relocatable object file.</para></sect4>
66
67<sect4><title>readelf</title>
68<para>readelf displays information about elf type binaries.</para></sect4>
69
70<sect4><title>size</title>
71<para>size lists the section sizes --and the total size-- for each of the
72object files objfile in its argument list. By default, one line of output is
73generated for each object file or each module in an archive.</para></sect4>
74
75<sect4><title>strings</title>
76<para>For each file given, strings prints the printable character sequences
77that are at least 4 characters long (or the number specified with an
78option to the program) and are followed by an unprintable character. By
79default, it only prints the strings from the initialized and loaded
80sections of object files; for other types of files, it prints the strings
81from the whole file.</para>
82
83<para>strings is mainly useful for determining the contents of non-text files.</para></sect4>
84
85<sect4><title>strip</title>
86<para>strip discards all or specific symbols from object files. The list of
87object files may include archives. At least one object file must be
88given. strip modifies the files named in its argument, rather than writing
89modified copies under different names.</para></sect4>
90
91</sect3>
92
93<sect3><title>Library Files</title>
94<para>libbfd.a, libiberty.a and libopcodes.a</para></sect3>
95
96<sect3><title>Descriptions</title>
97
98<sect4><title>libbfd</title>
99<para>libbfd is the Binary File Descriptor library.</para></sect4>
100
101<sect4><title>libiberty</title>
102<para>libiberty is a collection of subroutines used by various GNU
103programs including getopt, obstack, strerror, strtol and strtoul.</para></sect4>
104
105<sect4><title>libopcodes</title>
106<para>libopcodes is a native library for dealing with opcodes and is
107used in the course of building utilities such as objdump. Opcodes are
108actually "readable text" versions of instructions for the
109processor.</para></sect4>
110
111</sect3>
112
113</sect2>
114
Note: See TracBrowser for help on using the repository browser.