binutils-desc.xml 4.0 KB

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