README 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300
  1. README for BINUTILS
  2. These are the GNU binutils. These are utilities of use when dealing
  3. with binary files, either object files or executables. These tools
  4. consist of the linker (ld), the assembler (gas), and the profiler
  5. (gprof) each of which have their own sub-directory named after them.
  6. There is also a collection of other binary tools, including the
  7. disassembler (objdump) in this directory. These tools make use of a
  8. pair of libraries (bfd and opcodes) and a common set of header files
  9. (include).
  10. There are README and NEWS files in most of the program sub-directories
  11. which give more information about those specific programs.
  12. Copyright Notices
  13. =================
  14. Copyright years on binutils source files may be listed using range
  15. notation, e.g., 1991-2021, indicating that every year in the range,
  16. inclusive, is a copyrightable year that could otherwise be listed
  17. individually.
  18. Unpacking and Installation -- quick overview
  19. ============================================
  20. When you unpack the binutils archive file, you will get a directory
  21. called something like `binutils-XXX', where XXX is the number of the
  22. release. (Probably 2.36 or higher). This directory contains
  23. various files and sub-directories. Most of the files in the top
  24. directory are for information and for configuration. The actual
  25. source code is in sub-directories.
  26. To build binutils you will need a C99 compliant compiler and library.
  27. You can just do:
  28. cd binutils-XXX
  29. ./configure [options]
  30. make
  31. make install # copies the programs files into /usr/local/bin
  32. # by default.
  33. This will configure and build all the libraries as well as the
  34. assembler, the binutils, and the linker.
  35. If you have GNU make, we recommend building in a different directory:
  36. mkdir objdir
  37. cd objdir
  38. ../binutils-XXX/configure [options]
  39. make
  40. make install
  41. This relies on the VPATH feature of GNU make.
  42. By default, the binutils will be configured to support the system on
  43. which they are built. When doing cross development, use the --target
  44. configure option to specify a different target, eg:
  45. ./configure --target=powerpc64le-linux
  46. The --enable-targets option adds support for more binary file formats
  47. besides the default. List them as the argument to --enable-targets,
  48. separated by commas. For example:
  49. ./configure --enable-targets=powerpc-linux,rs6000-aix
  50. The name 'all' compiles in support for all valid BFD targets:
  51. ./configure --enable-targets=all
  52. On 32-bit hosts though, this support will be restricted to 32-bit
  53. target unless the --enable-64-bit-bfd option is also used:
  54. ./configure --enable-64-bit-bfd --enable-targets=all
  55. You can also specify the --enable-shared option when you run
  56. configure. This will build the BFD and opcodes libraries as shared
  57. libraries. You can use arguments with the --enable-shared option to
  58. indicate that only certain libraries should be built shared; for
  59. example, --enable-shared=bfd. The only potential shared libraries in
  60. a binutils release are bfd and opcodes.
  61. The binutils will be linked against the shared libraries. The build
  62. step will attempt to place the correct library in the run-time search
  63. path for the binaries. However, in some cases, after you install the
  64. binaries, you may have to set an environment variable, normally
  65. LD_LIBRARY_PATH, so that the system can find the installed libbfd
  66. shared library.
  67. On hosts that support shared system libraries the binutils will be
  68. linked against them. If you have static versions of the system
  69. libraries installed as well and you wish to create static binaries
  70. instead then use the LDFLAGS environment variable, like this:
  71. ../binutils-XXX/configure LDFLAGS="--static" [more options]
  72. Note: the two dashes are important. The binutils make use of the
  73. libtool script which has a special interpretation of "-static" when it
  74. is in the LDFLAGS environment variable.
  75. To build under openVMS/AXP, see the file makefile.vms in the top level
  76. directory.
  77. Native Language Support
  78. =======================
  79. By default Native Language Support will be enabled for binutils. On
  80. some systems however this support is not present and can lead to error
  81. messages such as "undefined reference to `libintl_gettext'" when
  82. building there tools. If that happens the NLS support can be disabled
  83. by adding the --disable-nls switch to the configure line like this:
  84. ../binutils-XXX/configure --disable-nls
  85. If you don't have ar
  86. ====================
  87. If your system does not already have an 'ar' program, the normal
  88. binutils build process will not work. In this case, run configure as
  89. usual. Before running make, run this script:
  90. #!/bin/sh
  91. MAKE_PROG="${MAKE-make}"
  92. MAKE="${MAKE_PROG} AR=true LINK=true"
  93. export MAKE
  94. ${MAKE} $* all-libiberty
  95. ${MAKE} $* all-intl
  96. ${MAKE} $* all-bfd
  97. cd binutils
  98. MAKE="${MAKE_PROG}"
  99. export MAKE
  100. ${MAKE} $* ar_DEPENDENCIES= ar_LDADD='../bfd/*.o ../libiberty/*.o `if test -f ../intl/gettext.o; then echo '../intl/*.o'; fi`' ar
  101. This script will build an ar program in binutils/ar. Move binutils/ar
  102. into a directory on your PATH. After doing this, you can run make as
  103. usual to build the complete binutils distribution. You do not need
  104. the ranlib program in order to build the distribution.
  105. Porting
  106. =======
  107. Binutils-2.36 supports many different architectures, but there
  108. are many more not supported, including some that were supported
  109. by earlier versions. We are hoping for volunteers to improve this
  110. situation.
  111. The major effort in porting binutils to a new host and/or target
  112. architecture involves the BFD library. There is some documentation
  113. in ../bfd/doc. The file ../gdb/doc/gdbint.texinfo (distributed
  114. with gdb-5.x) may also be of help.
  115. Reporting bugs
  116. ==============
  117. Please report bugs via
  118. https://sourceware.org/bugzilla/enter_bug.cgi?product=binutils
  119. Please include the following in bug reports:
  120. - A description of exactly what went wrong, and exactly what should have
  121. happened instead.
  122. - The configuration name(s) given to the "configure" script. The
  123. "config.status" file should have this information. This is assuming
  124. you built binutils yourself. If you didn't build binutils youself,
  125. then we need information regarding your machine and operating system,
  126. and it may be more appropriate to report bugs to wherever you obtained
  127. binutils.
  128. - The options given to the tool (gas, objcopy, ld etc.) at run time.
  129. - The actual input file that caused the problem.
  130. Always mention the version number you are running; this is printed by
  131. running any of the binutils with the --version option. We appreciate
  132. reports about bugs, but we do not promise to fix them, particularly so
  133. when the bug report is against an old version. If you are able, please
  134. consider building the latest tools from git to check that your bug has
  135. not already been fixed.
  136. When reporting problems about gas and ld, it's useful to provide a
  137. testcase that triggers the problem. In the case of a gas problem, we
  138. want input files to gas and command line switches used. The inputs to
  139. gas are _NOT_ .c or .i files, but rather .s files. If your original
  140. source was a C program, you can generate the .s file and see the command
  141. line options by passing -v -save-temps to gcc in addition to all the
  142. usual options you use. The reason we don't want C files is that we
  143. might not have a C compiler around for the target you use. While it
  144. might be possible to build a compiler, that takes considerable time and
  145. disk space, and we might not end up with exactly the same compiler you
  146. use.
  147. In the case of a ld problem, the input files are .o, .a and .so files,
  148. and possibly a linker script specified with -T. Again, when using gcc
  149. to link, you can see these files by adding options to the gcc command
  150. line. Use -v -save-temps -Wl,-t, except that on targets that use gcc's
  151. collect2, you would add -v -save-temps -Wl,-t,-debug. The -t option
  152. tells ld to print all files and libraries used, so that, for example,
  153. you can associate -lc on the ld command line with the actual libc used.
  154. Note that your simple two line C program to trigger a problem typically
  155. expands into several megabytes of objects by the time you include
  156. libraries.
  157. There is a limit to the size of attachments accepted by bugzilla. If
  158. compressing your testcase does not result in an acceptable size tar or
  159. zip file, please put large testcases somewhere on an ftp or web site.
  160. Better still, try to reduce the testcase, for example, try to develop
  161. a ld testcase that doesn't use system libraries. However, please be
  162. sure it is a complete testcase and that it really does demonstrate the
  163. problem. Also, don't bother paring it down if that will cause large
  164. delays in filing the bug report.
  165. If you expect to be contributing a large number of test cases, it would
  166. be helpful if you would look at the test suite included in the release
  167. (based on the Deja Gnu testing framework, available from the usual ftp
  168. sites) and write test cases to fit into that framework. This is
  169. certainly not required.
  170. VMS
  171. ===
  172. This section was written by Klaus K"ampf <kkaempf@rmi.de>. It
  173. describes how to build and install the binutils on openVMS (Alpha and
  174. Vax). (The BFD library only supports reading Vax object files.)
  175. Compiling the release:
  176. To compile the gnu binary utilities and the gnu assembler, you'll
  177. need DEC C or GNU C for openVMS/Alpha. You'll need *both* compilers
  178. on openVMS/Vax.
  179. Compiling with either DEC C or GNU C works on openVMS/Alpha only. Some
  180. of the opcodes and binutils files trap a bug in the DEC C optimizer,
  181. so these files must be compiled with /noopt.
  182. Compiling on openVMS/Vax is a bit complicated, as the bfd library traps
  183. a bug in GNU C and the gnu assembler a bug in (my version of) DEC C.
  184. I never tried compiling with VAX C.
  185. You further need GNU Make Version 3.76 or later. This is available
  186. at ftp.progis.de or any GNU archive site. The makefiles assume that
  187. gmake starts gnu make as a foreign command.
  188. If you're compiling with DEC C or VAX C, you must run
  189. $ @setup
  190. before starting gnu-make. This isn't needed with GNU C.
  191. On the Alpha you can choose the compiler by editing the toplevel
  192. makefile.vms. Either select CC=cc (for DEC C) or CC=gcc (for GNU C)
  193. Installing the release
  194. Provided that your directory setup conforms to the GNU on openVMS
  195. standard, you already have a concealed device named 'GNU_ROOT'.
  196. In this case, a simple
  197. $ gmake install
  198. suffices to copy all programs and libraries to the proper directories.
  199. Define the programs as foreign commands by adding these lines to your
  200. login.com:
  201. $ gas :== $GNU_ROOT:[bin]as.exe
  202. $ size :== $GNU_ROOT:[bin]size.exe
  203. $ nm :== $GNU_ROOT:[bin]nm.exe
  204. $ objdump :== $GNU_ROOT:[bin]objdump.exe
  205. $ strings :== $GNU_ROOT:[bin]strings.exe
  206. If you have a different directory setup, copy the binary utilities
  207. ([.binutils]size.exe, [.binutils]nm.exe, [.binutils]objdump.exe,
  208. and [.binutils]strings.exe) and the gnu assembler and preprocessor
  209. ([.gas]as.exe and [.gas]gasp.exe]) to a directory of your choice
  210. and define all programs as foreign commands.
  211. If you're satisfied with the compilation, you may want to remove
  212. unneeded objects and libraries:
  213. $ gmake clean
  214. If you have any problems or questions about the binutils on VMS, feel
  215. free to mail me at kkaempf@rmi.de.
  216. Copyright (C) 2012-2022 Free Software Foundation, Inc.
  217. Copying and distribution of this file, with or without modification,
  218. are permitted in any medium without royalty provided the copyright
  219. notice and this notice are preserved.