binutils-desc.xml 4.0 KB

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