source: appendixa/binutils-desc.xml@ e2ce375

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 12.2 12.2-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_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/loongarch-12.2 xry111/mips64el xry111/multilib xry111/pip3 xry111/rust-wip-20221008 xry111/update-glibc
Last change on this file since e2ce375 was 89e9092, checked in by Gerard Beekmans <gerard@…>, 22 years ago

removed gasp from descs - not present in recent binutils anymore

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

  • Property mode set to 100644
File size: 3.9 KB
RevLine 
[8fcc2c0]1<sect2><title>Contents of Binutils</title>
2
3<para>Last checked against version &binutils-contversion;.</para>
[6370fa6]4
[bdc08c1]5<sect3><title>Program Files</title>
[6370fa6]6
[89e9092]7<para>addr2line, ar, as, gprof, ld, nm, objcopy, objdump,
[bdc08c1]8ranlib, readelf, size, strings and strip</para></sect3>
[6370fa6]9
[bdc08c1]10<sect3><title>Descriptions</title>
[6370fa6]11
[bdc08c1]12<sect4><title>addr2line</title>
[53ad30a]13<para>addr2line translates program addresses into file names and line numbers.
[2c094d6]14Given an address and an executable, it uses the debugging information in
[53ad30a]15the executable to figure out which file name and line number are associated
[bdc08c1]16with a given address.</para></sect4>
[6370fa6]17
[bdc08c1]18<sect4><title>ar</title>
[b822811]19<para>The ar program creates, modifies, and extracts from archives. An archive
20is a single file holding a collection of other files in a structure that makes
[2c094d6]21it possible to retrieve the original individual files (called members of
[bdc08c1]22the archive).</para></sect4>
[6370fa6]23
[bdc08c1]24<sect4><title>as</title>
[764d8f4]25<para>as is primarily intended to assemble the output of the GNU C compiler,
26 gcc, for use by the linker ld.</para></sect4>
[bdc08c1]27
28<sect4><title>gprof</title>
29<para>gprof displays call graph profile data.</para></sect4>
[53ad30a]30
[bdc08c1]31<sect4><title>ld</title>
[2c094d6]32<para>ld combines a number of object and archive files, relocates their data
[53ad30a]33and ties up symbol references. Often the last step in building a new compiled
[bdc08c1]34program to run is a call to ld.</para></sect4>
[6370fa6]35
[bdc08c1]36<sect4><title>nm</title>
37<para>nm lists the symbols from object files.</para></sect4>
[6370fa6]38
[bdc08c1]39<sect4><title>objcopy</title>
[b822811]40<para>objcopy utility copies the contents of an object file to another. objcopy
[6370fa6]41uses the GNU BFD Library to read and write the object files. It can write
42the destination object file in a format different from that of the source
[bdc08c1]43object file.</para></sect4>
[6370fa6]44
[bdc08c1]45<sect4><title>objdump</title>
[b822811]46<para>objdump displays information about one or more object files. The options
[6370fa6]47control what particular information to display. This information is mostly
48useful to programmers who are working on the compilation tools, as opposed to
[bdc08c1]49programmers who just want their program to compile and work.</para></sect4>
[6370fa6]50
[bdc08c1]51<sect4><title>ranlib</title>
[b822811]52<para>ranlib generates an index to the contents of an archive, and stores it in
[2c094d6]53the archive. The index lists each symbol defined by an archive member
[bdc08c1]54that is a relocatable object file.</para></sect4>
[6370fa6]55
[bdc08c1]56<sect4><title>readelf</title>
57<para>readelf displays information about elf type binaries.</para></sect4>
[0c07a90]58
[bdc08c1]59<sect4><title>size</title>
[764d8f4]60<para>size lists the section sizes --and the total size-- for each of the
61object files in its argument list. By default, one line of output is
[bdc08c1]62generated for each object file or each module in an archive.</para></sect4>
[6370fa6]63
[bdc08c1]64<sect4><title>strings</title>
[2c094d6]65<para>For each file given, strings prints the printable character sequences
66that are at least 4 characters long (or the number specified with an
[6370fa6]67option to the program) and are followed by an unprintable character. By
68default, it only prints the strings from the initialized and loaded
[764d8f4]69sections of object files. For other types of files, it prints the strings
[b822811]70from the whole file.</para>
[6370fa6]71
[bdc08c1]72<para>strings is mainly useful for determining the contents of non-text files.</para></sect4>
[6370fa6]73
[bdc08c1]74<sect4><title>strip</title>
[b822811]75<para>strip discards all or specific symbols from object files. The list of
[6370fa6]76object files may include archives. At least one object file must be
77given. strip modifies the files named in its argument, rather than writing
[bdc08c1]78modified copies under different names.</para></sect4>
79
80</sect3>
81
82<sect3><title>Library Files</title>
[c68394e]83<para>libbfd.[a,so] and libopcodes.[a,so]</para></sect3>
[bdc08c1]84
85<sect3><title>Descriptions</title>
86
87<sect4><title>libbfd</title>
88<para>libbfd is the Binary File Descriptor library.</para></sect4>
89
90<sect4><title>libopcodes</title>
[926b857]91<para>libopcodes is a native library for dealing with opcodes and is
[2c094d6]92used in the course of building utilities such as objdump. Opcodes are
[926b857]93actually "readable text" versions of instructions for the
94processor.</para></sect4>
[bdc08c1]95
96</sect3>
[6370fa6]97
98</sect2>
99
Note: See TracBrowser for help on using the repository browser.