binutils-desc.xml 4.7 KB

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