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