binutils-desc.xml 3.7 KB

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