use remote-utils facilities for baud_rate
[deliverable/binutils-gdb.git] / ld / ld.texinfo
CommitLineData
f22eee08 1\input texinfo
c8072296 2@setfilename ld.info
b4d4e8e3 3@syncodeindex ky cp
ec40bbb8
DM
4@c @include configdoc.texi
5
6@c @smallbook
c8072296 7@c @cropmarks
1c48127e
RP
8
9@ifinfo
10@format
11START-INFO-DIR-ENTRY
8ddef552 12* Ld:: The GNU linker.
1c48127e
RP
13END-INFO-DIR-ENTRY
14@end format
15@end ifinfo
16
b4d4e8e3 17@ifinfo
246504a5 18This file documents the GNU linker LD.
b4d4e8e3 19
d76ae847 20Copyright (C) 1991, 1992, 1993 Free Software Foundation, Inc.
b4d4e8e3
RP
21
22Permission is granted to make and distribute verbatim copies of
23this manual provided the copyright notice and this permission notice
24are preserved on all copies.
25
d76ae847
RP
26Permission is granted to copy and distribute modified versions of this
27manual under the conditions for verbatim copying, provided also that
28the entire resulting derived work is distributed under the terms of a
29permission notice identical to this one.
30
31Permission is granted to copy and distribute translations of this manual
32into another language, under the above conditions for modified versions.
33
b4d4e8e3
RP
34@ignore
35Permission is granted to process this file through Tex and print the
36results, provided the printed document carries copying permission
37notice identical to this one except for the removal of this paragraph
38(this paragraph not being relevant to the printed manual).
39
40@end ignore
b4d4e8e3 41@end ifinfo
2c5c0674
RP
42@iftex
43@finalout
b4d4e8e3 44@setchapternewpage odd
246504a5 45@settitle Using LD, the GNU linker
f22eee08 46@titlepage
246504a5 47@title Using ld
c8072296 48@subtitle The GNU linker
f22eee08 49@sp 1
cb70c872 50@subtitle @code{ld} version 2
d76ae847 51@subtitle March 1993
c8072296
RP
52@author Steve Chamberlain and Roland Pesch
53@author Cygnus Support
b4d4e8e3
RP
54@page
55
56@tex
b4d4e8e3
RP
57{\parskip=0pt
58\hfill Cygnus Support\par
2c5c0674 59\hfill steve\@cygnus.com, pesch\@cygnus.com\par
ec40bbb8
DM
60\hfill {\it Using LD, the GNU linker}\par
61\hfill Edited by Jeffrey Osier (jeffrey\@cygnus.com), March 1993.\par
b4d4e8e3
RP
62}
63\global\parindent=0pt % Steve likes it this way.
64@end tex
65
f22eee08 66@vskip 0pt plus 1filll
d76ae847 67Copyright @copyright{} 1991, 1992, 1993 Free Software Foundation, Inc.
f22eee08
RP
68
69Permission is granted to make and distribute verbatim copies of
70this manual provided the copyright notice and this permission notice
71are preserved on all copies.
72
73Permission is granted to copy and distribute modified versions of this
74manual under the conditions for verbatim copying, provided also that
75the entire resulting derived work is distributed under the terms of a
76permission notice identical to this one.
77
78Permission is granted to copy and distribute translations of this manual
79into another language, under the above conditions for modified versions.
f22eee08 80@end titlepage
2c5c0674 81@end iftex
b4d4e8e3 82@c FIXME: Talk about importance of *order* of args, cmds to linker!
f22eee08 83
f22eee08 84@ifinfo
ec40bbb8
DM
85@node Top
86@top Using ld
246504a5 87This file documents the GNU linker ld.
f22eee08 88
2c5c0674 89@menu
2d59b2c3
RP
90* Overview:: Overview
91* Invocation:: Invocation
92* Commands:: Command Language
ec40bbb8 93@ifset GENERIC
2d59b2c3 94* Machine Dependent:: Machine Dependent Features
ec40bbb8
DM
95@end ifset
96@ifclear GENERIC
97@ifset H8300
98* H8/300:: ld and the H8/300
99@end ifset
100@ifset I960
101* i960:: ld and the Intel 960 family
102@end ifset
103@end ifclear
104@ifclear SingleFormat
2d59b2c3 105* BFD:: BFD
ec40bbb8
DM
106@end ifclear
107@c Following blank line required for remaining bug in makeinfo conds/menus
108
2d59b2c3
RP
109* MRI:: MRI Compatible Script Files
110* Index:: Index
2c5c0674 111@end menu
ec40bbb8 112@end ifinfo
2c5c0674 113
ec40bbb8 114@node Overview
f22eee08
RP
115@chapter Overview
116
2c5c0674
RP
117@cindex GNU linker
118@cindex what is this?
246504a5 119@code{ld} combines a number of object and archive files, relocates
ec40bbb8
DM
120their data and ties up symbol references. Usually the last step in
121compiling a program is to run @code{ld}.
f22eee08 122
246504a5 123@code{ld} accepts Linker Command Language files written in
2c5c0674 124a superset of AT&T's Link Editor Command Language syntax,
b4d4e8e3 125to provide explicit and total control over the linking process.
f22eee08 126
ec40bbb8 127@ifclear SingleFormat
246504a5
RP
128This version of @code{ld} uses the general purpose BFD libraries
129to operate on object files. This allows @code{ld} to read, combine, and
b4d4e8e3
RP
130write object files in many different formats---for example, COFF or
131@code{a.out}. Different formats may be linked together to produce any
132available kind of object file. @xref{BFD} for a list of formats
133supported on various architectures.
ec40bbb8 134@end ifclear
f22eee08 135
2c5c0674
RP
136Aside from its flexibility, the GNU linker is more helpful than other
137linkers in providing diagnostic information. Many linkers abandon
138execution immediately upon encountering an error; whenever possible,
246504a5 139@code{ld} continues executing, allowing you to identify other errors
2c5c0674
RP
140(or, in some cases, to get an output file in spite of the error).
141
ec40bbb8 142@node Invocation
2c5c0674
RP
143@chapter Invocation
144
246504a5 145The GNU linker @code{ld} is meant to cover a broad range of situations,
2c5c0674 146and to be as compatible as possible with other linkers. As a result,
ec40bbb8 147you have many choices to control its behavior.
2c5c0674 148
ec40bbb8 149@ifset UsesEnvVars
2c5c0674 150@menu
2d59b2c3
RP
151* Options:: Command Line Options
152* Environment:: Environment Variables
2c5c0674 153@end menu
f22eee08 154
ec40bbb8 155@node Options
2c5c0674 156@section Command Line Options
ec40bbb8 157@end ifset
2c5c0674
RP
158
159@cindex command line
160@cindex options
ec40bbb8 161Here is a summary of the options you can use on the @code{ld} command
2c5c0674 162line:
f22eee08 163
ec40bbb8 164@c FIXME! -relax only avail h8/300, i960. Conditionals screwed in examples.
c8072296 165@smallexample
de87cdb4 166ld [ -o @var{output} ] @var{objfile}@dots{}
cb70c872
RP
167 [ -A@var{architecture} ] [ -b @var{input-format} ] [ -Bstatic ]
168 [ -c @var{MRI-commandfile} ] [ -d | -dc | -dp ]
d76ae847 169 [ -defsym @var{symbol}=@var{expression} ]
cb70c872 170 [ -e @var{entry} ] [ -F ] [ -F @var{format} ]
de87cdb4
DM
171 [ -format @var{input-format} ] [ -g ] [ -G @var{size} ] [ --help ] [ -i ]
172 [ -l@var{archive} ] [ -L@var{searchdir} ] [ -M ] [ -Map @var{mapfile} ]
d18a4527 173 [ -m @var{emulation} ] [ -N | -n ] [ -noinhibit-exec ]
346535cc 174 [ -oformat @var{output-format} ] [ -R @var{filename} ] [ -relax ]
2a28d8b0 175 [ -r | -Ur ] [ -S ] [ -s ] [ -sort-common ] [ -T @var{commandfile} ]
867a1b8a
DM
176 [ -Ttext @var{org} ] [ -Tdata @var{org} ]
177 [ -Tbss @var{org} ] [ -t ] [ -u @var{symbol}] [-V] [-v] [ --version ]
2a28d8b0 178 [ -warn-common ] [ -y@var{symbol} ] [ -X ] [-x ]
c8072296 179@end smallexample
b4d4e8e3
RP
180
181This plethora of command-line options may seem intimidating, but in
182actual practice few of them are used in any particular context.
2c5c0674 183@cindex standard Unix system
246504a5 184For instance, a frequent use of @code{ld} is to link standard Unix
b4d4e8e3
RP
185object files on a standard, supported Unix system. On such a system, to
186link a file @code{hello.o}:
ec40bbb8 187
f22eee08 188@example
ec40bbb8 189ld -o @var{output} /lib/crt0.o hello.o -lc
f22eee08 190@end example
ec40bbb8 191
d76ae847 192This tells @code{ld} to produce a file called @var{output} as the
b4d4e8e3 193result of linking the file @code{/lib/crt0.o} with @code{hello.o} and
ec40bbb8
DM
194the library @code{libc.a}, which will come from the standard search
195directories. (See the discussion of the @samp{-l} option below.)
f22eee08 196
246504a5 197The command-line options to @code{ld} may be specified in any order, and
ec40bbb8 198may be repeated at will. Repeating most options with a
f22eee08 199different argument will either have no further effect, or override prior
ec40bbb8 200occurrences (those further to the left on the command line) of that
f22eee08
RP
201option.
202
ec40bbb8 203@ifclear SingleFormat
2c5c0674 204The exceptions---which may meaningfully be used more than once---are
ec40bbb8
DM
205@samp{-A}, @samp{-b} (or its synonym @samp{-format}), @samp{-defsym},
206@samp{-L}, @samp{-l}, @samp{-R}, and @samp{-u}.
207@end ifclear
208@ifset SingleFormat
209The exceptions---which may meaningfully be used more than once---are
210@samp{-A}, @samp{-defsym}, @samp{-L}, @samp{-l}, @samp{-R}, and @samp{-u}.
211@end ifset
f22eee08 212
2c5c0674 213@cindex object files
8ddef552 214The list of object files to be linked together, shown as @var{objfile}@dots{},
ec40bbb8
DM
215may follow, precede, or be mixed in with command-line options, except that
216an @var{objfile} argument may not be placed between an option and
b4d4e8e3 217its argument.
f22eee08 218
2c5c0674 219Usually the linker is invoked with at least one object file, but other
ec40bbb8
DM
220forms of binary input files can also be specified with @samp{-l},
221@samp{-R}, and the script command language. If @emph{no} binary input
2c5c0674
RP
222files at all are specified, the linker does not produce any output, and
223issues the message @samp{No input files}.
224
225Option arguments must either follow the option letter without intervening
f22eee08
RP
226whitespace, or be given as separate arguments immediately following the
227option that requires them.
228
229@table @code
ec40bbb8 230@ifset I960
2c5c0674
RP
231@cindex architectures
232@kindex -A@var{arch}
b4d4e8e3 233@item -A@var{architecture}
246504a5
RP
234In the current release of @code{ld}, this option is useful only for the
235Intel 960 family of architectures. In that @code{ld} configuration, the
1c48127e
RP
236@var{architecture} argument identifies the particular architecture in
237the 960 family, enabling some safeguards and modifying the
d76ae847
RP
238archive-library search path. @xref{i960,,@code{ld} and the Intel 960
239family}, for details.
b4d4e8e3 240
246504a5 241Future releases of @code{ld} may support similar functionality for
b4d4e8e3 242other architecture families.
ec40bbb8 243@end ifset
b4d4e8e3 244
ec40bbb8 245@ifclear SingleFormat
2c5c0674
RP
246@cindex binary input format
247@kindex -b @var{format}
248@cindex input format
249@item -b @var{input-format}
250@cindex input format
251Specify the binary format for input object files that follow this option
252on the command line. You don't usually need to specify this, as
246504a5 253@code{ld} is configured to expect as a default input format the most
2c5c0674 254usual format on each machine. @var{input-format} is a text string, the
d76ae847 255name of a particular format supported by the BFD libraries.
346535cc
DM
256(You can list the available binary formats with @samp{objdump -i}.)
257@w{@samp{-format @var{input-format}}} has the same effect, as does the
258script command @code{TARGET}. @xref{BFD}.
2c5c0674
RP
259
260You may want to use this option if you are linking files with an unusual
ec40bbb8 261binary format. You can also use @samp{-b} to switch formats explicitly (when
2c5c0674 262linking object files of different formats), by including
ec40bbb8 263@samp{-b @var{input-format}} before each group of object files in a
2c5c0674
RP
264particular format.
265
266The default format is taken from the environment variable
ec40bbb8
DM
267@code{GNUTARGET}.
268@ifset UsesEnvVars
269@xref{Environment}.
270@end ifset
271You can also define the input
867a1b8a 272format from a script, using the command @code{TARGET}; see @ref{Option
d76ae847 273Commands}.
ec40bbb8 274@end ifclear
2c5c0674
RP
275
276@kindex -Bstatic
f22eee08 277@item -Bstatic
ec40bbb8
DM
278Ignored. This option is accepted for command-line compatibility with
279the SunOS linker.
f22eee08 280
2d59b2c3
RP
281@kindex -c @var{MRI-cmdfile}
282@cindex compatibility, MRI
283@item -c @var{MRI-commandfile}
284For compatibility with linkers produced by MRI, @code{ld} accepts script
285files written in an alternate, restricted command language, described in
d76ae847 286@ref{MRI,,MRI Compatible Script Files}. Introduce MRI script files with
ec40bbb8 287the option @samp{-c}; use the @samp{-T} option to run linker
d76ae847 288scripts written in the general-purpose @code{ld} scripting language.
8ddef552
DM
289If @var{MRI-cmdfile} does not exist, @code{ld} looks for it in the directories
290specified by any @samp{-L} options.
b4d4e8e3 291
2c5c0674
RP
292@cindex common allocation
293@kindex -d
b4d4e8e3 294@item -d
2c5c0674 295@kindex -dc
b4d4e8e3 296@itemx -dc
2c5c0674 297@kindex -dp
b4d4e8e3
RP
298@itemx -dp
299These three options are equivalent; multiple forms are supported for
ec40bbb8 300compatibility with other linkers. They
2c5c0674 301assign space to common symbols even if a relocatable output file is
ec40bbb8 302specified (with @samp{-r}). The script command
867a1b8a 303@code{FORCE_COMMON_ALLOCATION} has the same effect. @xref{Option
d76ae847 304Commands}.
b4d4e8e3 305
2c5c0674 306@cindex symbols, from command line
d76ae847
RP
307@kindex -defsym @var{symbol}=@var{exp}
308@item -defsym @var{symbol}=@var{expression}
2c5c0674
RP
309Create a global symbol in the output file, containing the absolute
310address given by @var{expression}. You may use this option as many
311times as necessary to define multiple symbols in the command line. A
312limited form of arithmetic is supported for the @var{expression} in this
313context: you may give a hexadecimal constant or the name of an existing
314symbol, or use @code{+} and @code{-} to add or subtract hexadecimal
315constants or symbols. If you need more elaborate expressions, consider
d76ae847
RP
316using the linker command language from a script (@pxref{Assignment, ,
317Assignment: Symbol Definitions}). @emph{Note:} there should be no
318white space between @var{symbol}, the equals sign (``@key{=}''), and
319@var{expression}.
2c5c0674
RP
320
321@cindex entry point, from command line
322@kindex -e @var{entry}
f22eee08
RP
323@item -e @var{entry}
324Use @var{entry} as the explicit symbol for beginning execution of your
b4d4e8e3
RP
325program, rather than the default entry point. @xref{Entry Point}, for a
326discussion of defaults and other ways of specifying the
327entry point.
f22eee08 328
ec40bbb8 329@ifclear SingleFormat
2c5c0674 330@kindex -F
b4d4e8e3 331@item -F
2c5c0674 332@itemx -F@var{format}
ec40bbb8
DM
333Ignored. Some older linkers used this option throughout a compilation
334toolchain for specifying object-file format for both input and output
335object files. The mechanisms @code{ld} uses for this purpose (the
867a1b8a
DM
336@samp{-b} or @samp{-format} options for input files, @samp{-oformat}
337option or the @code{TARGET} command in linker scripts for output files,
338the @code{GNUTARGET} environment variable) are more flexible, but
339@code{ld} accepts the @samp{-F} option for compatibility with scripts
340written to call the old linker.
2c5c0674
RP
341
342@kindex -format
343@item -format @var{input-format}
ec40bbb8
DM
344Synonym for @samp{-b @var{input-format}}.
345@end ifclear
2c5c0674
RP
346
347@kindex -g
b4d4e8e3 348@item -g
ec40bbb8 349Ignored. Provided for compatibility with other tools.
b4d4e8e3 350
8ddef552
DM
351@kindex -G
352@cindex object size
353@item -G@var{value}
354@itemx -G @var{value}
355Set the maximum size of objects to be optimized using the GP register to
356@var{size} under MIPS ECOFF. Ignored for other object file formats.
357
de87cdb4
DM
358@item --help
359@kindex --help
360@cindex help
361@cindex usage
362Print a summary of the command-line options on the standard output and exit.
363This option and @samp{--version} begin with two dashes instead of one
364for compatibility with other GNU programs. The other options start with
365only one dash for compatibility with other linkers.
366
2c5c0674
RP
367@kindex -i
368@cindex incremental link
f22eee08 369@item -i
ec40bbb8 370Perform an incremental link (same as option @samp{-r}).
f22eee08 371
2c5c0674 372@cindex archive files, from cmd line
de87cdb4 373@kindex -l@var{archive}
b4d4e8e3 374@item -l@var{ar}
de87cdb4 375Add archive file @var{archive} to the list of files to link. This
f22eee08 376option may be used any number of times. @code{ld} will search its
de87cdb4 377path-list for occurrences of @code{lib@var{ar}.a} for every @var{archive}
f22eee08
RP
378specified.
379
2c5c0674
RP
380@cindex search directory, from cmd line
381@kindex -L@var{dir}
b4d4e8e3 382@item -L@var{searchdir}
836a5ee4 383@itemx -L @var{searchdir}
ec40bbb8 384Add path @var{searchdir} to the list of paths that @code{ld} will search
8ddef552
DM
385for archive libraries and @code{ld} control scripts. You may use this
386option any number of times.
f22eee08 387
ec40bbb8 388@ifset UsesEnvVars
2c5c0674 389The default set of paths searched (without being specified with
ec40bbb8
DM
390@samp{-L}) depends on which emulation mode @code{ld} is using, and in
391some cases also on how it was configured. @xref{Environment}.
392@end ifset
393
394The paths can also be specified in a link script with the
395@code{SEARCH_DIR} command.
f22eee08 396
2c5c0674
RP
397@cindex link map
398@kindex -M
f22eee08 399@item -M
ec40bbb8 400Print (to the standard output) a link map---diagnostic information
f22eee08
RP
401about where symbols are mapped by @code{ld}, and information on global
402common storage allocation.
403
d18a4527
DM
404@cindex link map
405@kindex -Map
406@item -Map @var{mapfile}
407Print to the file @var{mapfile} a link map---diagnostic information
408about where symbols are mapped by @code{ld}, and information on global
409common storage allocation.
410
8ddef552
DM
411@cindex emulation
412@kindex -m @var{emulation}
413@item -m@var{emulation}
414@itemx -m @var{emulation}
415Emulate the @var{emulation} linker. You can list the available
416emulations with the @samp{-V} option. The
417default is the system for which you configured @code{ld}.
418
2c5c0674
RP
419@kindex -N
420@cindex read/write from cmd line
421@kindex OMAGIC
f22eee08 422@item -N
ec40bbb8
DM
423Set the text and data sections to be readable and writable. Also, do
424not page-align the data segment. If the output format supports Unix
425style magic numbers, mark the output as @code{OMAGIC}.
f22eee08
RP
426
427@item -n
2c5c0674
RP
428@kindex -n
429@cindex read-only text
430@kindex NMAGIC
ec40bbb8
DM
431Set the text segment to be read only, and mark the output as
432@code{NMAGIC} if possible.
f22eee08 433
b4d4e8e3 434@item -noinhibit-exec
2c5c0674
RP
435@cindex output file after errors
436@kindex -noinhibit-exec
ec40bbb8 437Retain the executable output file whenever it is still usable.
b4d4e8e3 438Normally, the linker will not produce an output file if it encounters
ec40bbb8
DM
439errors during the link process; it exits without writing an output file
440when it issues any error whatsoever.
b4d4e8e3 441
f22eee08 442@item -o @var{output}
2c5c0674
RP
443@kindex -o @var{output}
444@cindex naming the output file
ec40bbb8
DM
445Use @var{output} as the name for the program produced by @code{ld}; if this
446option is not specified, the name @file{a.out} is used by default. The
2c5c0674 447script command @code{OUTPUT} can also specify the output file name.
f22eee08 448
346535cc
DM
449@kindex -oformat
450@item -oformat @var{output-format}
451Specify the binary format for the output object file. You don't usually
452need to specify this, as @code{ld} is configured to produce as a default
453output format the most usual format on each machine.
454@var{output-format} is a text string, the name of a particular format
455supported by the BFD libraries. (You can list the available binary
456formats with @samp{objdump -i}.) The script command
457@code{OUTPUT_FORMAT} can also specify the output format, but this option
458overrides it. @xref{BFD}.
459
b4d4e8e3 460@item -R @var{filename}
2c5c0674
RP
461@kindex -R @var{file}
462@cindex symbol-only input
867a1b8a
DM
463Read symbol names and their addresses from @var{filename}, but do not
464relocate it or include it in the output. This allows your output file
465to refer symbolically to absolute locations of memory defined in other
466programs.
ec40bbb8 467
1c48127e
RP
468@item -relax
469@kindex -relax
470@cindex synthesizing linker
471@cindex relaxing addressing modes
472An option with machine dependent effects. Currently this option is only
ec40bbb8
DM
473supported on the H8/300.
474@ifset H8300
475@xref{H8/300,,@code{ld} and the H8/300}.
476@end ifset
1c48127e 477
ec40bbb8
DM
478On some platforms, use option performs global optimizations that
479become possible when the linker resolves addressing in the program, such
1c48127e
RP
480as relaxing address modes and synthesizing new instructions in the
481output object file.
482
483On platforms where this is not supported, @samp{-relax} is accepted, but
ec40bbb8 484ignored.
1c48127e 485
f22eee08 486@item -r
b4d4e8e3 487@cindex partial link
2c5c0674
RP
488@cindex relocatable output
489@kindex -r
ec40bbb8 490Generate relocatable output---i.e., generate an output file that can in
246504a5 491turn serve as input to @code{ld}. This is often called @dfn{partial
2c5c0674
RP
492linking}. As a side effect, in environments that support standard Unix
493magic numbers, this option also sets the output file's magic number to
494@code{OMAGIC}.
495@c ; see @code{-N}.
496If this option is not specified, an absolute file is produced. When
497linking C++ programs, this option @emph{will not} resolve references to
ec40bbb8 498constructors; to do that, use @samp{-Ur}.
2c5c0674 499
867a1b8a 500This option does the same thing as @samp{-i}.
f22eee08
RP
501
502@item -S
2c5c0674
RP
503@kindex -S
504@cindex strip debugger symbols
ec40bbb8 505Omit debugger symbol information (but not all symbols) from the output file.
f22eee08
RP
506
507@item -s
2c5c0674
RP
508@kindex -s
509@cindex strip all symbols
ec40bbb8 510Omit all symbol information from the output file.
f22eee08 511
2a28d8b0
DM
512@item -sort-common
513Normally, when @code{ld} places the global common symbols in the
514appropriate output sections, it sorts them by size. First come all the
515one byte symbols, then all the two bytes, then all the four bytes, and
836a5ee4
DM
516then everything else. This is to prevent gaps between symbols due to
517alignment constraints. This option disables that sorting.
2a28d8b0 518
867a1b8a
DM
519@item -Tbss @var{org}
520@kindex -Tbss @var{org}
521@itemx -Tdata @var{org}
522@kindex -Tdata @var{org}
523@itemx -Ttext @var{org}
524@kindex -Ttext @var{org}
2c5c0674
RP
525@cindex segment origins, cmd line
526Use @var{org} as the starting address for---respectively---the
b4d4e8e3 527@code{bss}, @code{data}, or the @code{text} segment of the output file.
ec40bbb8
DM
528@var{org} must be a single hexadecimal integer;
529for compatibility with other linkers, you may omit the leading
d76ae847 530@samp{0x} usually associated with hexadecimal values.
f22eee08 531
b4d4e8e3
RP
532@item -T @var{commandfile}
533@itemx -T@var{commandfile}
2c5c0674 534@kindex -T @var{script}
2d59b2c3 535@cindex script files
de87cdb4
DM
536Read link commands from the file @var{commandfile}. These commands
537completely override @code{ld}'s default link format (rather than adding
538to it); @var{commandfile} must specify everything necessary to describe
539the target format. @xref{Commands}. If @var{commandfile} does not
540exist, @code{ld} looks for it in the directories specified by any
541preceding @samp{-L} options. Multiple @samp{-T} options accumulate.
f22eee08
RP
542
543@item -t
2c5c0674
RP
544@kindex -t
545@cindex verbose
546@cindex input files, displaying
ec40bbb8 547Print the names of the input files as @code{ld} processes them.
f22eee08 548
de87cdb4
DM
549@item -u @var{symbol}
550@kindex -u @var{symbol}
2c5c0674 551@cindex undefined symbol
de87cdb4 552Force @var{symbol} to be entered in the output file as an undefined symbol.
ec40bbb8
DM
553Doing this may, for example, trigger linking of additional modules from
554standard libraries. @samp{-u} may be repeated with different option
2c5c0674
RP
555arguments to enter additional undefined symbols.
556@c Nice idea, but no such command: This option is equivalent
557@c to the @code{EXTERN} linker command.
f22eee08 558
b4d4e8e3 559@item -Ur
2c5c0674 560@kindex -Ur
b4d4e8e3
RP
561@cindex constructors
562For anything other than C++ programs, this option is equivalent to
ec40bbb8
DM
563@samp{-r}: it generates relocatable output---i.e., an output file that can in
564turn serve as input to @code{ld}. When linking C++ programs, @samp{-Ur}
565@emph{will} resolve references to constructors, unlike @samp{-r}.
3e27cc11
DM
566It does not work to use @samp{-Ur} on files that were themselves linked
567with @samp{-Ur}; once the constructor table has been built, it can not
568be added to. Use @samp{-Ur} only for the last partial link, and
569@samp{-r} for the others.
b4d4e8e3 570
8ddef552
DM
571@item -V
572@kindex -V
573@cindex version
574Display the version number for @code{ld} and list the supported emulations.
de87cdb4 575Display which input files can and can not be opened.
8ddef552 576
b4d4e8e3 577@item -v
2c5c0674 578@kindex -v
b4d4e8e3 579@cindex version
246504a5 580Display the version number for @code{ld}.
de87cdb4
DM
581
582@item --version
583@kindex --version
584Display the version number for @code{ld} and exit.
b4d4e8e3 585
2a28d8b0
DM
586@item -warn-common
587Warn when a common symbol is combined with another common symbol or with
588a symbol definition. Unix linkers allow this somewhat sloppy practice,
589but linkers on some other operating systems do not. This option allows
590you to find potential problems from combining global symbols.
1cd4cca9
DM
591Unfortunately, some C libraries use this practice, so you may get some
592warnings about symbols in the libraries as well as in your programs.
2a28d8b0
DM
593
594There are three kinds of global symbols, illustrated here by C examples:
595
596@table @samp
597@item int i = 1;
598A definition, which goes in the initialized data section of the output
599file.
600
601@item extern int i;
602An undefined reference, which does not allocate space.
603There must be either a definition or a common symbol for the
604variable somewhere.
605
606@item int i;
607A common symbol. If there are only (one or more) common symbols for a
608variable, it goes in the uninitialized data area of the output file.
609The linker merges multiple common symbols for the same variable into a
610single symbol. If they are of different sizes, it picks the largest
611size. The linker turns a common symbol into a declaration, if there is
612a definition of the same variable.
613@end table
614
615The @samp{-warn-common} option can produce five kinds of warnings. Each
616warning consists of a pair of lines: the first describes the symbol just
617encountered, and the second describes the previous symbol encountered
618with the same name. One or both of the two symbols will be a common
619symbol.
620
621@enumerate
622@item
623Turning a common symbol into a reference, because there is already a
624definition for the symbol.
625@smallexample
626@var{file}(@var{section}): warning: common of `@var{symbol}' overridden by definition
627@var{file}(@var{section}): warning: defined here
628@end smallexample
629
630@item
631Turning a common symbol into a reference, because a later definition for
632the symbol is encountered. This is the same as the previous case,
633except that the symbols are encountered in a different order.
634@smallexample
635@var{file}(@var{section}): warning: definition of `@var{symbol}' overriding common
636@var{file}(@var{section}): warning: common is here
637@end smallexample
638
639@item
640Merging a common symbol with a previous same-sized common symbol.
641@smallexample
642@var{file}(@var{section}): warning: multiple common of `@var{symbol}'
643@var{file}(@var{section}): warning: previous common is here
644@end smallexample
645
646@item
647Merging a common symbol with a previous larger common symbol.
648@smallexample
649@var{file}(@var{section}): warning: common of `@var{symbol}' overridden by larger common
650@var{file}(@var{section}): warning: larger common is here
651@end smallexample
652
653@item
654Merging a common symbol with a previous smaller common symbol. This is
655the same as the previous case, except that the symbols are
656encountered in a different order.
657@smallexample
658@var{file}(@var{section}): warning: common of `@var{symbol}' overriding smaller common
659@var{file}(@var{section}): warning: smaller common is here
660@end smallexample
661@end enumerate
662
f22eee08 663@item -X
2c5c0674
RP
664@kindex -X
665@cindex local symbols, deleting
666@cindex L, deleting symbols beginning
ec40bbb8 667If @samp{-s} or @samp{-S} is also specified, delete only local symbols
f22eee08
RP
668beginning with @samp{L}.
669
b4d4e8e3 670@item -x
2c5c0674
RP
671@kindex -x
672@cindex deleting local symbols
ec40bbb8 673If @samp{-s} or @samp{-S} is also specified, delete all local symbols,
b4d4e8e3
RP
674not just those beginning with @samp{L}.
675
ec40bbb8 676@item -y@var{symbol}
d76ae847
RP
677@kindex -y@var{symbol}
678@cindex symbol tracing
ec40bbb8 679Print the name of each linked file in which @var{symbol} appears. This
d76ae847
RP
680option may be given any number of times. On many systems it is necessary
681to prepend an underscore.
682
683This option is useful when you have an undefined symbol in your link but
684don't know where the reference is coming from.
f22eee08 685@end table
b4d4e8e3 686
ec40bbb8
DM
687@ifset UsesEnvVars
688@node Environment
2c5c0674
RP
689@section Environment Variables
690
d76ae847
RP
691You can change the behavior of @code{ld} with the environment
692variable @code{GNUTARGET}.
2c5c0674
RP
693
694@kindex GNUTARGET
695@cindex default input format
696@code{GNUTARGET} determines the input-file object format if you don't
ec40bbb8 697use @samp{-b} (or its synonym @samp{-format}). Its value should be one
2c5c0674 698of the BFD names for an input format (@pxref{BFD}). If there is no
246504a5 699@code{GNUTARGET} in the environment, @code{ld} uses the natural format
2c5c0674
RP
700of the host. If @code{GNUTARGET} is set to @code{default} then BFD attempts to discover the
701input format by examining binary input files; this method often
702succeeds, but there are potential ambiguities, since there is no method
ec40bbb8 703of ensuring that the magic number used to specify object-file formats is
2c5c0674
RP
704unique. However, the configuration procedure for BFD on each system
705places the conventional format for that system first in the search-list,
706so ambiguities are resolved in favor of convention.
ec40bbb8 707@end ifset
2c5c0674 708
ec40bbb8 709@node Commands
2c5c0674 710@chapter Command Language
f22eee08 711
2c5c0674 712@cindex command files
ec40bbb8 713The command language provides explicit control over the link process,
b4d4e8e3 714allowing complete specification of the mapping between the linker's
ec40bbb8 715input files and its output. It controls:
b4d4e8e3 716@itemize @bullet
2c5c0674
RP
717@item
718input files
719@item
720file formats
721@item
867a1b8a 722output file layout
2c5c0674
RP
723@item
724addresses of sections
725@item
726placement of common blocks
b4d4e8e3 727@end itemize
f22eee08 728
2c5c0674 729You may supply a command file (also known as a link script) to the
ec40bbb8 730linker either explicitly through the @samp{-T} option, or implicitly as
2c5c0674 731an ordinary file. If the linker opens a file which it cannot recognize
867a1b8a 732as a supported object or archive format, it reports an error.
2c5c0674 733
2c5c0674 734@menu
2d59b2c3
RP
735* Scripts:: Linker Scripts
736* Expressions:: Expressions
737* MEMORY:: MEMORY Command
738* SECTIONS:: SECTIONS Command
739* Entry Point:: The Entry Point
867a1b8a 740* Option Commands:: Option Commands
2c5c0674
RP
741@end menu
742
ec40bbb8 743@node Scripts
b4d4e8e3 744@section Linker Scripts
246504a5 745The @code{ld} command language is a collection of statements; some are
ec40bbb8
DM
746simple keywords setting a particular option, some are used to select and
747group input files or name output files; and two statement
b4d4e8e3
RP
748types have a fundamental and pervasive impact on the linking process.
749
2c5c0674
RP
750@cindex fundamental script commands
751@cindex commands, fundamental
752@cindex output file layout
753@cindex layout of output file
246504a5 754The most fundamental command of the @code{ld} command language is the
b4d4e8e3
RP
755@code{SECTIONS} command (@pxref{SECTIONS}). Every meaningful command
756script must have a @code{SECTIONS} command: it specifies a
757``picture'' of the output file's layout, in varying degrees of detail.
758No other command is required in all cases.
759
760The @code{MEMORY} command complements @code{SECTIONS} by describing the
2c5c0674 761available memory in the target architecture. This command is optional;
246504a5 762if you don't use a @code{MEMORY} command, @code{ld} assumes sufficient
2c5c0674
RP
763memory is available in a contiguous block for all output.
764@xref{MEMORY}.
b4d4e8e3 765
2c5c0674
RP
766@cindex comments
767You may include comments in linker scripts just as in C: delimited
768by @samp{/*} and @samp{*/}. As in C, comments are syntactically
769equivalent to whitespace.
770
ec40bbb8 771@node Expressions
f22eee08 772@section Expressions
2c5c0674
RP
773@cindex expression syntax
774@cindex arithmetic
b4d4e8e3
RP
775Many useful commands involve arithmetic expressions. The syntax for
776expressions in the command language is identical to that of C
777expressions, with the following features:
778@itemize @bullet
2c5c0674
RP
779@item
780All expressions evaluated as integers and
f22eee08 781are of ``long'' or ``unsigned long'' type.
2c5c0674
RP
782@item
783All constants are integers.
784@item
785All of the C arithmetic operators are provided.
786@item
787You may reference, define, and create global variables.
788@item
789You may call special purpose built-in functions.
b4d4e8e3 790@end itemize
f22eee08 791
2c5c0674 792@menu
2d59b2c3
RP
793* Integers:: Integers
794* Symbols:: Symbol Names
795* Location Counter:: The Location Counter
796* Operators:: Operators
797* Evaluation:: Evaluation
798* Assignment:: Assignment: Defining Symbols
867a1b8a 799* Arithmetic Functions:: Built-In Functions
2c5c0674
RP
800@end menu
801
ec40bbb8 802@node Integers
f22eee08 803@subsection Integers
2c5c0674
RP
804@cindex integer notation
805@cindex octal integers
f22eee08
RP
806An octal integer is @samp{0} followed by zero or more of the octal
807digits (@samp{01234567}).
b4d4e8e3 808@example
2c5c0674 809_as_octal = 0157255;
b4d4e8e3 810@end example
f22eee08 811
2c5c0674 812@cindex decimal integers
f22eee08
RP
813A decimal integer starts with a non-zero digit followed by zero or
814more digits (@samp{0123456789}).
b4d4e8e3 815@example
2c5c0674 816_as_decimal = 57005;
b4d4e8e3 817@end example
f22eee08 818
2c5c0674
RP
819@cindex hexadecimal integers
820@kindex 0x
f22eee08
RP
821A hexadecimal integer is @samp{0x} or @samp{0X} followed by one or
822more hexadecimal digits chosen from @samp{0123456789abcdefABCDEF}.
b4d4e8e3
RP
823@example
824_as_hex = 0xdead;
825@end example
f22eee08 826
2c5c0674 827@cindex negative integers
ec40bbb8 828To write a negative integer, use
b4d4e8e3
RP
829the prefix operator @samp{-}; @pxref{Operators}.
830@example
b4d4e8e3
RP
831_as_neg = -57005;
832@end example
f22eee08 833
2c5c0674
RP
834@cindex scaled integers
835@cindex K and M integer suffixes
836@cindex M and K integer suffixes
837@cindex suffixes for integers
838@cindex integer suffixes
b4d4e8e3
RP
839Additionally the suffixes @code{K} and @code{M} may be used to scale a
840constant by
c8072296
RP
841@c TEXI2ROFF-KILL
842@ifinfo
843@c END TEXI2ROFF-KILL
844@code{1024} or @code{1024*1024}
845@c TEXI2ROFF-KILL
846@end ifinfo
f22eee08 847@tex
b4d4e8e3 848${\rm 1024}$ or ${\rm 1024}^2$
f22eee08 849@end tex
c8072296 850@c END TEXI2ROFF-KILL
ec40bbb8 851respectively. For example, the following all refer to the same quantity:
f22eee08
RP
852
853@example
2c5c0674
RP
854 _fourk_1 = 4K;
855 _fourk_2 = 4096;
856 _fourk_3 = 0x1000;
f22eee08 857@end example
b4d4e8e3 858
ec40bbb8 859@node Symbols
b4d4e8e3 860@subsection Symbol Names
2c5c0674
RP
861@cindex symbol names
862@cindex names
863@cindex quoted symbol names
864@kindex "
b4d4e8e3 865Unless quoted, symbol names start with a letter, underscore, point or
2c5c0674 866hyphen and may include any letters, underscores, digits, points,
b4d4e8e3
RP
867and minus signs. Unquoted symbol names must not conflict with any
868keywords. You can specify a symbol which contains odd characters or has
869the same name as a keyword, by surrounding the symbol name in double quotes:
870@example
871 "SECTION" = 9;
872 "with a space" = "also with a space" + 10;
873@end example
874
ec40bbb8 875@node Location Counter
b4d4e8e3 876@subsection The Location Counter
2c5c0674
RP
877@kindex .
878@cindex dot
879@cindex location counter
880@cindex current output location
b4d4e8e3
RP
881The special linker variable @dfn{dot} @samp{.} always contains the
882current output location counter. Since the @code{.} always refers to
883a location in an output section, it must always appear in an
884expression within a @code{SECTIONS} command. The @code{.} symbol
885may appear anywhere that an ordinary symbol is allowed in an
886expression, but its assignments have a side effect. Assigning a value
887to the @code{.} symbol will cause the location counter to be moved.
2c5c0674 888@cindex holes
b4d4e8e3
RP
889This may be used to create holes in the output section. The location
890counter may never be moved backwards.
891@example
2c5c0674
RP
892SECTIONS
893@{
894 output :
b4d4e8e3 895 @{
2c5c0674
RP
896 file1(.text)
897 . = . + 1000;
898 file2(.text)
899 . += 1000;
900 file3(.text)
901 @} = 0x1234;
902@}
b4d4e8e3 903@end example
2c5c0674
RP
904@noindent
905In the previous example, @code{file1} is located at the beginning of the
906output section, then there is a 1000 byte gap. Then @code{file2}
907appears, also with a 1000 byte gap following before @code{file3} is
908loaded. The notation @samp{= 0x1234} specifies what data to write in
909the gaps (@pxref{Section Options}).
b4d4e8e3 910
ec40bbb8 911@node Operators
f22eee08 912@subsection Operators
2c5c0674
RP
913@cindex Operators for arithmetic
914@cindex arithmetic operators
915@cindex precedence in expressions
b4d4e8e3 916The linker recognizes the standard C set of arithmetic operators, with
f22eee08 917the standard bindings and precedence levels:
c8072296 918@c TEXI2ROFF-KILL
b4d4e8e3 919@ifinfo
c8072296 920@c END TEXI2ROFF-KILL
f22eee08 921@example
c8072296 922precedence associativity Operators Notes
b4d4e8e3 923(highest)
c8072296
RP
9241 left ! - ~ (1)
9252 left * / %
9263 left + -
9274 left >> <<
9285 left == != > < <= >=
9296 left &
9307 left |
9318 left &&
9329 left ||
93310 right ? :
93411 right &= += -= *= /= (2)
b4d4e8e3 935(lowest)
f22eee08 936@end example
2c5c0674
RP
937Notes:
938(1) Prefix operators
939(2) @xref{Assignment}
c8072296 940@c TEXI2ROFF-KILL
b4d4e8e3 941@end ifinfo
f22eee08 942@tex
2c5c0674
RP
943\vskip \baselineskip
944%"lispnarrowing" is the extra indent used generally for @example
945\hskip\lispnarrowing\vbox{\offinterlineskip
f22eee08
RP
946\hrule
947\halign
2c5c0674
RP
948{\vrule#&\strut\hfil\ #\ \hfil&\vrule#&\strut\hfil\ #\ \hfil&\vrule#&\strut\hfil\ {\tt #}\ \hfil&\vrule#\cr
949height2pt&\omit&&\omit&&\omit&\cr
950&Precedence&& Associativity &&{\rm Operators}&\cr
951height2pt&\omit&&\omit&&\omit&\cr
f22eee08 952\noalign{\hrule}
2c5c0674 953height2pt&\omit&&\omit&&\omit&\cr
b4d4e8e3 954&highest&&&&&\cr
2c5c0674
RP
955% '176 is tilde, '~' in tt font
956&1&&left&&\qquad- \char'176\ !\qquad\dag&\cr
957&2&&left&&* / \%&\cr
958&3&&left&&+ -&\cr
959&4&&left&&>> <<&\cr
960&5&&left&&== != > < <= >=&\cr
f22eee08 961&6&&left&&\&&\cr
f22eee08 962&7&&left&&|&\cr
f22eee08 963&8&&left&&{\&\&}&\cr
f22eee08 964&9&&left&&||&\cr
2c5c0674
RP
965&10&&right&&? :&\cr
966&11&&right&&\qquad\&= += -= *= /=\qquad\ddag&\cr
b4d4e8e3 967&lowest&&&&&\cr
2c5c0674 968height2pt&\omit&&\omit&&\omit&\cr}
f22eee08
RP
969\hrule}
970@end tex
2c5c0674
RP
971@iftex
972{
973@obeylines@parskip=0pt@parindent=0pt
974@dag@quad Prefix operators.
975@ddag@quad @xref{Assignment}.
976}
977@end iftex
c8072296 978@c END TEXI2ROFF-KILL
f22eee08 979
ec40bbb8 980@node Evaluation
b4d4e8e3
RP
981@subsection Evaluation
982
2c5c0674
RP
983@cindex lazy evaluation
984@cindex expression evaluation order
b4d4e8e3
RP
985The linker uses ``lazy evaluation'' for expressions; it only calculates
986an expression when absolutely necessary. The linker needs the value of
987the start address, and the lengths of memory regions, in order to do any
988linking at all; these values are computed as soon as possible when the
989linker reads in the command file. However, other values (such as symbol
990values) are not known or needed until after storage allocation. Such
991values are evaluated later, when other information (such as the sizes of
992output sections) is available for use in the symbol assignment
993expression.
994
ec40bbb8 995@node Assignment
b4d4e8e3 996@subsection Assignment: Defining Symbols
2c5c0674
RP
997@cindex assignment in scripts
998@cindex symbol definition, scripts
999@cindex variables, defining
b4d4e8e3
RP
1000You may create global symbols, and assign values (addresses) to global
1001symbols, using any of the C assignment operators:
1002
1003@table @code
1004@item @var{symbol} = @var{expression} ;
2c5c0674 1005@itemx @var{symbol} &= @var{expression} ;
b4d4e8e3
RP
1006@itemx @var{symbol} += @var{expression} ;
1007@itemx @var{symbol} -= @var{expression} ;
1008@itemx @var{symbol} *= @var{expression} ;
1009@itemx @var{symbol} /= @var{expression} ;
1010@end table
1011
246504a5 1012Two things distinguish assignment from other operators in @code{ld}
b4d4e8e3
RP
1013expressions.
1014@itemize @bullet
2c5c0674
RP
1015@item
1016Assignment may only be used at the root of an expression;
b4d4e8e3 1017@samp{a=b+3;} is allowed, but @samp{a+b=3;} is an error.
2c5c0674
RP
1018
1019@kindex ;
1020@cindex semicolon
1021@item
d76ae847
RP
1022You must place a trailing semicolon (``@key{;}'') at the end of an
1023assignment statement.
b4d4e8e3
RP
1024@end itemize
1025
1026Assignment statements may appear:
1027@itemize @bullet
2c5c0674 1028@item
246504a5 1029as commands in their own right in an @code{ld} script; or
2c5c0674
RP
1030@item
1031as independent statements within a @code{SECTIONS} command; or
1032@item
1033as part of the contents of a section definition in a
b4d4e8e3
RP
1034@code{SECTIONS} command.
1035@end itemize
1036
1037The first two cases are equivalent in effect---both define a symbol with
ec40bbb8 1038an absolute address. The last case defines a symbol whose address is
b4d4e8e3
RP
1039relative to a particular section (@pxref{SECTIONS}).
1040
2c5c0674
RP
1041@cindex absolute and relocatable symbols
1042@cindex relocatable and absolute symbols
1043@cindex symbols, relocatable and absolute
1044When a linker expression is evaluated and assigned to a variable, it is
1045given either an absolute or a relocatable type. An absolute expression
1046type is one in which the symbol contains the value that it will have in
867a1b8a 1047the output file; a relocatable expression type is one in which the
2c5c0674 1048value is expressed as a fixed offset from the base of a section.
b4d4e8e3
RP
1049
1050The type of the expression is controlled by its position in the script
2c5c0674
RP
1051file. A symbol assigned within a section definition is created relative
1052to the base of the section; a symbol assigned in any other place is
1053created as an absolute symbol. Since a symbol created within a
1054section definition is relative to the base of the section, it
1055will remain relocatable if relocatable output is requested. A symbol
1056may be created with an absolute value even when assigned to within a
1057section definition by using the absolute assignment function
1058@code{ABSOLUTE}. For example, to create an absolute symbol whose address
1059is the last byte of an output section named @code{.data}:
b4d4e8e3 1060@example
2c5c0674 1061SECTIONS@{ @dots{}
b4d4e8e3
RP
1062.data :
1063 @{
1064 *(.data)
1065 _edata = ABSOLUTE(.) ;
1066 @}
2c5c0674 1067@dots{} @}
b4d4e8e3
RP
1068@end example
1069
2c5c0674
RP
1070The linker tries to put off the evaluation of an assignment until all
1071the terms in the source expression are known (@pxref{Evaluation}). For
ec40bbb8 1072instance, the sizes of sections cannot be known until after allocation,
2c5c0674
RP
1073so assignments dependent upon these are not performed until after
1074allocation. Some expressions, such as those depending upon the location
1075counter @dfn{dot}, @samp{.} must be evaluated during allocation. If the
1076result of an expression is required, but the value is not available,
1077then an error results. For example, a script like the following
b4d4e8e3 1078@example
2c5c0674 1079SECTIONS @{ @dots{}
cb70c872 1080 text 9+this_isnt_constant :
b4d4e8e3
RP
1081 @{ @dots{}
1082 @}
2c5c0674 1083@dots{} @}
b4d4e8e3 1084@end example
2c5c0674
RP
1085@kindex Non constant expression
1086@noindent
1087will cause the error message ``@code{Non constant expression for initial
b4d4e8e3
RP
1088address}''.
1089
867a1b8a
DM
1090@node Arithmetic Functions
1091@subsection Arithmetic Functions
2c5c0674 1092@cindex functions in expression language
ec40bbb8 1093The command language includes a number of built-in
2c5c0674
RP
1094functions for use in link script expressions.
1095@table @code
1096@item ABSOLUTE(@var{exp})
1097@kindex ABSOLUTE(@var{exp})
1098@cindex expression, absolute
ec40bbb8
DM
1099Return the absolute (non-relocatable, as opposed to non-negative) value
1100of the expression @var{exp}. Primarily useful to assign an absolute
1101value to a symbol within a section definition, where symbol values are
1102normally section-relative.
2c5c0674
RP
1103
1104@item ADDR(@var{section})
1105@kindex ADDR(@var{section})
1106@cindex section address
ec40bbb8 1107Return the absolute address of the named @var{section}. Your script must
b4d4e8e3 1108previously have defined the location of that section. In the following
ec40bbb8 1109example, @code{symbol_1} and @code{symbol_2} are assigned identical
b4d4e8e3 1110values:
f22eee08 1111@example
2c5c0674 1112SECTIONS@{ @dots{}
cb70c872 1113 .output1 :
f22eee08 1114 @{
2c5c0674
RP
1115 start_of_output_1 = ABSOLUTE(.);
1116 @dots{}
f22eee08 1117 @}
cb70c872 1118 .output :
f22eee08
RP
1119 @{
1120 symbol_1 = ADDR(.output1);
1121 symbol_2 = start_of_output_1;
1122 @}
2c5c0674
RP
1123@dots{} @}
1124@end example
1125
1126@item ALIGN(@var{exp})
1127@kindex ALIGN(@var{exp})
1128@cindex rounding up location counter
ec40bbb8 1129Return the result of the current location counter (@code{.}) aligned to
2c5c0674
RP
1130the next @var{exp} boundary. @var{exp} must be an expression whose
1131value is a power of two. This is equivalent to
1132@example
cb70c872 1133(. + @var{exp} - 1) & ~(@var{exp} - 1)
2c5c0674
RP
1134@end example
1135
1136@code{ALIGN} doesn't change the value of the location counter---it just
1137does arithmetic on it. As an example, to align the output @code{.data}
1138section to the next @code{0x2000} byte boundary after the preceding
1139section and to set a variable within the section to the next
1140@code{0x8000} boundary after the input sections:
1141@example
1142SECTIONS@{ @dots{}
1143 .data ALIGN(0x2000): @{
1144 *(.data)
1145 variable = ALIGN(0x8000);
1146 @}
1147@dots{} @}
1148@end example
1149@noindent
1150The first use of @code{ALIGN} in this example specifies the location of
1151a section because it is used as the optional @var{start} attribute of a
1152section definition (@pxref{Section Options}). The second use simply
1153defines the value of a variable.
1154
1155The built-in @code{NEXT} is closely related to @code{ALIGN}.
1156
1157@item DEFINED(@var{symbol})
1158@kindex DEFINED(@var{symbol})
1159@cindex symbol defaults
ec40bbb8
DM
1160Return 1 if @var{symbol} is in the linker global symbol table and is
1161defined, otherwise return 0. You can use this function to provide default
1162values for symbols. For example, the following command-file fragment shows how
2c5c0674
RP
1163to set a global symbol @code{begin} to the first location in the
1164@code{.text} section---but if a symbol called @code{begin} already
1165existed, its value is preserved:
c8072296 1166@smallexample
2c5c0674 1167SECTIONS@{ @dots{}
cb70c872 1168 .text : @{
2c5c0674
RP
1169 begin = DEFINED(begin) ? begin : . ;
1170 @dots{}
1171 @}
1172@dots{} @}
c8072296 1173@end smallexample
f22eee08 1174
2c5c0674
RP
1175@item NEXT(@var{exp})
1176@kindex NEXT(@var{exp})
1177@cindex unallocated address, next
ec40bbb8
DM
1178Return the next unallocated address that is a multiple of @var{exp}.
1179This function is closely related to @code{ALIGN(@var{exp})}; unless you
2c5c0674 1180use the @code{MEMORY} command to define discontinuous memory for the
ec40bbb8 1181output file, the two functions are equivalent.
2c5c0674
RP
1182
1183@item SIZEOF(@var{section})
1184@kindex SIZEOF(@var{section})
1185@cindex section size
ec40bbb8
DM
1186Return the size in bytes of the named @var{section}, if that section has
1187been allocated. In the following example, @code{symbol_1} and
f22eee08 1188@code{symbol_2} are assigned identical values:
ec40bbb8 1189@c What does it return if the section hasn't been allocated? 0?
f22eee08 1190@example
2c5c0674 1191SECTIONS@{ @dots{}
f22eee08
RP
1192 .output @{
1193 .start = . ;
2c5c0674 1194 @dots{}
cb70c872 1195 .end = . ;
f22eee08 1196 @}
cb70c872 1197 symbol_1 = .end - .start ;
f22eee08 1198 symbol_2 = SIZEOF(.output);
2c5c0674 1199@dots{} @}
f22eee08 1200
f22eee08 1201@end example
b4d4e8e3 1202
2c5c0674
RP
1203@item SIZEOF_HEADERS
1204@kindex SIZEOF_HEADERS
1205@cindex header size
1206@itemx sizeof_headers
1207@kindex sizeof_headers
ec40bbb8 1208Return the size in bytes of the output file's headers. You can use this number
2c5c0674
RP
1209as the start address of the first section, if you choose, to facilitate
1210paging.
1211
1212@end table
1213
ec40bbb8 1214@node MEMORY
867a1b8a 1215@section Memory Layout
2c5c0674
RP
1216@kindex MEMORY
1217@cindex regions of memory
1218@cindex discontinuous memory
1219@cindex allocating memory
ec40bbb8
DM
1220The linker's default configuration permits allocation of all available memory.
1221You can override this configuration by using the @code{MEMORY} command. The
b4d4e8e3
RP
1222@code{MEMORY} command describes the location and size of blocks of
1223memory in the target. By using it carefully, you can describe which
1224memory regions may be used by the linker, and which memory regions it
1225must avoid. The linker does not shuffle sections to fit into the
1226available regions, but does move the requested sections into the correct
1227regions and issue errors when the regions become too full.
1228
867a1b8a 1229A command file may contain at most one use of the @code{MEMORY}
b4d4e8e3
RP
1230command; however, you can define as many blocks of memory within it as
1231you wish. The syntax is:
c8072296 1232
f22eee08 1233@example
b4d4e8e3
RP
1234MEMORY
1235 @{
cb70c872 1236 @var{name} (@var{attr}) : ORIGIN = @var{origin}, LENGTH = @var{len}
2c5c0674 1237 @dots{}
b4d4e8e3 1238 @}
f22eee08
RP
1239@end example
1240@table @code
1241@item @var{name}
2c5c0674 1242@cindex naming memory regions
f22eee08
RP
1243is a name used internally by the linker to refer to the region. Any
1244symbol name may be used. The region names are stored in a separate
ec40bbb8 1245name space, and will not conflict with symbols, file names or section
b4d4e8e3
RP
1246names. Use distinct names to specify multiple regions.
1247@item (@var{attr})
2c5c0674
RP
1248@cindex memory region attributes
1249is an optional list of attributes, permitted for compatibility with the
246504a5 1250AT&T linker but not used by @code{ld} beyond checking that the
2c5c0674
RP
1251attribute list is valid. Valid attribute lists must be made up of the
1252characters ``@code{LIRWX}''. If you omit the attribute list, you may
1253omit the parentheses around it as well.
f22eee08 1254@item @var{origin}
cb70c872
RP
1255@kindex ORIGIN =
1256@kindex o =
1257@kindex org =
ec40bbb8
DM
1258is the start address of the region in physical memory. It is
1259an expression that must evaluate to a constant before
f22eee08 1260memory allocation is performed. The keyword @code{ORIGIN} may be
867a1b8a 1261abbreviated to @code{org} or @code{o} (but not, for example, @samp{ORG}).
f22eee08 1262@item @var{len}
cb70c872
RP
1263@kindex LENGTH =
1264@kindex len =
1265@kindex l =
b4d4e8e3 1266is the size in bytes of the region (an expression).
2c5c0674 1267The keyword @code{LENGTH} may be abbreviated to @code{len} or @code{l}.
f22eee08
RP
1268@end table
1269
1270For example, to specify that memory has two regions available for
ec40bbb8 1271allocation---one starting at 0 for 256 kilobytes, and the other
2c5c0674 1272starting at @code{0x40000000} for four megabytes:
f22eee08
RP
1273
1274@example
b4d4e8e3
RP
1275MEMORY
1276 @{
cb70c872
RP
1277 rom : ORIGIN = 0, LENGTH = 256K
1278 ram : org = 0x40000000, l = 4M
b4d4e8e3 1279 @}
f22eee08
RP
1280@end example
1281
b4d4e8e3 1282Once you have defined a region of memory named @var{mem}, you can direct
2c5c0674
RP
1283specific output sections there by using a command ending in
1284@samp{>@var{mem}} within the @code{SECTIONS} command (@pxref{Section
1285Options}). If the combined output sections directed to a region are too
1286big for the region, the linker will issue an error message.
b4d4e8e3 1287
ec40bbb8 1288@node SECTIONS
867a1b8a 1289@section Specifying Output Sections
2c5c0674 1290@kindex SECTIONS
b4d4e8e3 1291The @code{SECTIONS} command controls exactly where input sections are
867a1b8a
DM
1292placed into output sections, their order in the output file, and to
1293which output sections they are allocated.
b4d4e8e3 1294
867a1b8a 1295You may use at most one @code{SECTIONS} command in a script file,
b4d4e8e3
RP
1296but you can have as many statements within it as you wish. Statements
1297within the @code{SECTIONS} command can do one of three things:
1298@itemize @bullet
1299@item
1300define the entry point;
1301@item
1302assign a value to a symbol;
1303@item
867a1b8a
DM
1304describe the placement of a named output section, and which input
1305sections go into it.
b4d4e8e3
RP
1306@end itemize
1307
867a1b8a 1308The first two operations---defining the entry point and defining
2c5c0674 1309symbols---can also be done outside the @code{SECTIONS} command:
867a1b8a
DM
1310@pxref{Entry Point}, and @pxref{Assignment}. They are permitted here as
1311well for your convenience in reading the script, so that symbols and the
b4d4e8e3
RP
1312entry point can be defined at meaningful points in your output-file
1313layout.
f22eee08 1314
867a1b8a
DM
1315When no @code{SECTIONS} command is given, the linker places each input
1316section into an identically named output section in the order that the
1317sections are first encountered in the input files. If all input sections
1318are present in the first file, for example, the order of sections in the
1319output file will match the order in the first input file.
b4d4e8e3 1320
2c5c0674 1321@menu
2d59b2c3 1322* Section Definition:: Section Definitions
867a1b8a
DM
1323* Section Placement:: Section Placement
1324* Section Data Expressions:: Section Data Expressions
2d59b2c3 1325* Section Options:: Optional Section Attributes
2c5c0674
RP
1326@end menu
1327
ec40bbb8 1328@node Section Definition
b4d4e8e3 1329@subsection Section Definitions
2c5c0674 1330@cindex section definition
b4d4e8e3 1331The most frequently used statement in the @code{SECTIONS} command is
867a1b8a 1332the @dfn{section definition}, which specifies the
b4d4e8e3 1333properties of an output section: its location, alignment, contents,
ec40bbb8 1334fill pattern, and target memory region. Most of
b4d4e8e3
RP
1335these specifications are optional; the simplest form of a section
1336definition is
1337@example
2c5c0674 1338SECTIONS @{ @dots{}
b4d4e8e3
RP
1339@var{secname} : @{
1340 @var{contents}
1341 @}
2c5c0674 1342@dots{} @}
b4d4e8e3 1343@end example
2c5c0674 1344@cindex naming output sections
b4d4e8e3
RP
1345@noindent
1346@var{secname} is the name of the output section, and @var{contents} a
ec40bbb8 1347specification of what goes there---for example, a list of input files or
867a1b8a
DM
1348sections of input files (@pxref{Section Placement}). As you might
1349assume, the whitespace shown is optional. You do need the colon
1350@samp{:} and the braces @samp{@{@}}, however.
b4d4e8e3
RP
1351
1352@var{secname} must meet the constraints of your output format. In
1353formats which only support a limited number of sections, such as
1354@code{a.out}, the name must be one of the names supported by the format
2c5c0674
RP
1355(@code{a.out}, for example, allows only @code{.text}, @code{.data} or
1356@code{.bss}). If the output format supports any number of sections, but
1357with numbers and not names (as is the case for Oasys), the name should be
1358supplied as a quoted numeric string. A section name may consist of any
867a1b8a 1359sequence of characters, but any name which does not conform to the standard
246504a5 1360@code{ld} symbol name syntax must be quoted.
ec40bbb8 1361@xref{Symbols, , Symbol Names}.
2c5c0674 1362
867a1b8a
DM
1363@node Section Placement
1364@subsection Section Placement
2c5c0674 1365@cindex contents of a section
b4d4e8e3 1366In a section definition, you can specify the contents of an output section by
867a1b8a 1367listing particular input files, by listing particular input-file
ec40bbb8 1368sections, or by a combination of the two. You can also place arbitrary
b4d4e8e3
RP
1369data in the section, and define symbols relative to the beginning of the
1370section.
1371
1372The @var{contents} of a section definition may include any of the
1373following kinds of statement. You can include as many of these as you
1374like in a single section definition, separated from one another by
1375whitespace.
f22eee08 1376
b4d4e8e3 1377@table @code
b4d4e8e3 1378@item @var{filename}
2c5c0674
RP
1379@kindex @var{filename}
1380@cindex input files, section defn
1381@cindex files, including in output sections
b4d4e8e3 1382You may simply name a particular input file to be placed in the current
2c5c0674 1383output section; @emph{all} sections from that file are placed in the
867a1b8a
DM
1384current section definition. If the file name has already been mentioned
1385in another section definition, with an explicit section name list, then
1386only those sections which have not yet been allocated are used.
1387
1388To specify a list of particular files by name:
f22eee08 1389@example
cb70c872 1390.data : @{ afile.o bfile.o cfile.o @}
f22eee08 1391@end example
2c5c0674
RP
1392@noindent
1393The example also illustrates that multiple statements can be included in
ec40bbb8 1394the contents of a section definition, since each file name is a separate
2c5c0674 1395statement.
f22eee08 1396
2c5c0674
RP
1397@item @var{filename}( @var{section} )
1398@itemx @var{filename}( @var{section}, @var{section}, @dots{} )
1399@itemx @var{filename}( @var{section} @var{section} @dots{} )
1400@kindex @var{filename}(@var{section})
1401@cindex files and sections, section defn
1402You can name one or more sections from your input files, for
1403insertion in the current output section. If you wish to specify a list
1404of input-file sections inside the parentheses, you may separate the
1405section names by either commas or whitespace.
1406
b4d4e8e3
RP
1407@item * (@var{section})
1408@itemx * (@var{section}, @var{section}, @dots{})
836a5ee4 1409@itemx * (@var{section} @var{section} @dots{})
2c5c0674
RP
1410@cindex input sections to output section
1411@kindex *(@var{section})
b4d4e8e3 1412Instead of explicitly naming particular input files in a link control
246504a5 1413script, you can refer to @emph{all} files from the @code{ld} command
ec40bbb8 1414line: use @samp{*} instead of a particular file name before the
b4d4e8e3
RP
1415parenthesized input-file section list.
1416
867a1b8a
DM
1417If you have already explicitly included some files by name, @samp{*}
1418refers to all @emph{remaining} files---those whose places in the output
1419file have not yet been defined.
1420
ec40bbb8 1421For example, to copy sections @code{1} through @code{4} from an Oasys file
b4d4e8e3
RP
1422into the @code{.text} section of an @code{a.out} file, and sections @code{13}
1423and @code{14} into the @code{.data} section:
1424@example
2c5c0674 1425SECTIONS @{
b4d4e8e3
RP
1426 .text :@{
1427 *("1" "2" "3" "4")
1428 @}
f22eee08 1429
b4d4e8e3
RP
1430 .data :@{
1431 *("13" "14")
f22eee08 1432 @}
b4d4e8e3 1433@}
f22eee08
RP
1434@end example
1435
836a5ee4
DM
1436@samp{[ @var{section} @dots{} ]} used to be accepted as an alternate way
1437to specify named sections from all unallocated input files. Because
1438some operating systems (VMS) allow brackets in file names, that notation
1439is no longer supported.
1440
b4d4e8e3 1441@item @var{filename}@code{( COMMON )}
836a5ee4
DM
1442@itemx *( COMMON )
1443@kindex *( COMMON )
2c5c0674
RP
1444@cindex uninitialized data
1445@cindex commons in output
b4d4e8e3 1446Specify where in your output file to place uninitialized data
d76ae847 1447with this notation. @code{*(COMMON)} by itself refers to all
b4d4e8e3
RP
1448uninitialized data from all input files (so far as it is not yet
1449allocated); @var{filename}@code{(COMMON)} refers to uninitialized data
1450from a particular file. Both are special cases of the general
1451mechanisms for specifying where to place input-file sections:
246504a5 1452@code{ld} permits you to refer to uninitialized data as if it
b4d4e8e3
RP
1453were in an input-file section named @code{COMMON}, regardless of the
1454input file's format.
1455@end table
1456
2c5c0674 1457For example, the following command script arranges the output file into
b4d4e8e3
RP
1458three consecutive sections, named @code{.text}, @code{.data}, and
1459@code{.bss}, taking the input for each from the correspondingly named
1460sections of all the input files:
f22eee08 1461@example
2c5c0674 1462SECTIONS @{
d76ae847
RP
1463 .text : @{ *(.text) @}
1464 .data : @{ *(.data) @}
1465 .bss : @{ *(.bss) *(COMMON) @}
2c5c0674 1466@}
f22eee08 1467@end example
b4d4e8e3
RP
1468
1469The following example reads all of the sections from file @code{all.o}
1470and places them at the start of output section @code{outputa} which
1471starts at location @code{0x10000}. All of section @code{.input1} from
1472file @code{foo.o} follows immediately, in the same output section. All
1473of section @code{.input2} from @code{foo.o} goes into output section
1474@code{outputb}, followed by section @code{.input1} from @code{foo1.o}.
1475All of the remaining @code{.input1} and @code{.input2} sections from any
1476files are written to output section @code{outputc}.
1477
1478@example
2c5c0674 1479SECTIONS @{
b4d4e8e3
RP
1480 outputa 0x10000 :
1481 @{
1482 all.o
1483 foo.o (.input1)
f22eee08 1484 @}
b4d4e8e3
RP
1485 outputb :
1486 @{
1487 foo.o (.input2)
1488 foo1.o (.input1)
f22eee08 1489 @}
b4d4e8e3
RP
1490 outputc :
1491 @{
1492 *(.input1)
1493 *(.input2)
f22eee08 1494 @}
2c5c0674 1495@}
b4d4e8e3
RP
1496@end example
1497
867a1b8a
DM
1498@node Section Data Expressions
1499@subsection Section Data Expressions
1500@cindex expressions in a section
1501The foregoing statements
b4d4e8e3
RP
1502arrange, in your output file, data originating from your input files.
1503You can also place data directly in an output section from the link
1504command script. Most of these additional statements involve
1505expressions; @pxref{Expressions}. Although these statements are shown
1506separately here for ease of presentation, no such segregation is needed
1507within a section definition in the @code{SECTIONS} command; you can
1508intermix them freely with any of the statements we've just described.
f22eee08 1509
b4d4e8e3
RP
1510@table @code
1511@item CREATE_OBJECT_SYMBOLS
2c5c0674
RP
1512@kindex CREATE_OBJECT_SYMBOLS
1513@cindex input filename symbols
1514@cindex filename symbols
ec40bbb8
DM
1515Create a symbol for each input file
1516in the current section, set to the address of the first byte of
867a1b8a 1517data written from that input file. For instance, with @code{a.out}
b4d4e8e3
RP
1518files it is conventional to have a symbol for each input file. You can
1519accomplish this by defining the output @code{.text} section as follows:
1520@example
1521SECTIONS @{
1522 .text 0x2020 :
1523 @{
1524 CREATE_OBJECT_SYMBOLS
1525 *(.text)
1526 _etext = ALIGN(0x2000);
f22eee08 1527 @}
2c5c0674
RP
1528 @dots{}
1529@}
f22eee08 1530@end example
b4d4e8e3 1531
867a1b8a 1532If @code{sample.ld} is a file containing this script, and @code{a.o},
b4d4e8e3
RP
1533@code{b.o}, @code{c.o}, and @code{d.o} are four input files with
1534contents like the following---
f22eee08 1535@example
b4d4e8e3
RP
1536/* a.c */
1537
2c5c0674 1538afunction() @{ @}
b4d4e8e3
RP
1539int adata=1;
1540int abss;
1541@end example
f22eee08 1542
b4d4e8e3 1543@noindent
867a1b8a 1544@samp{ld -M -T sample.ld a.o b.o c.o d.o} would create a map like this,
b4d4e8e3
RP
1545containing symbols matching the object file names:
1546@example
f22eee08
RP
154700000000 A __DYNAMIC
154800004020 B _abss
154900004000 D _adata
155000002020 T _afunction
155100004024 B _bbss
155200004008 D _bdata
155300002038 T _bfunction
155400004028 B _cbss
155500004010 D _cdata
155600002050 T _cfunction
15570000402c B _dbss
155800004018 D _ddata
155900002068 T _dfunction
156000004020 D _edata
156100004030 B _end
156200004000 T _etext
156300002020 t a.o
156400002038 t b.o
156500002050 t c.o
156600002068 t d.o
f22eee08
RP
1567@end example
1568
b4d4e8e3 1569@item @var{symbol} = @var{expression} ;
2c5c0674 1570@kindex @var{symbol} = @var{expression} ;
b4d4e8e3 1571@itemx @var{symbol} @var{f}= @var{expression} ;
2c5c0674
RP
1572@kindex @var{symbol} @var{f}= @var{expression} ;
1573@var{symbol} is any symbol name (@pxref{Symbols}). ``@var{f}=''
1574refers to any of the operators @code{&= += -= *= /=} which combine
1575arithmetic and assignment.
1576
1577@cindex assignment, in section defn
1578When you assign a value to a symbol within a particular section
1579definition, the value is relative to the beginning of the section
1580(@pxref{Assignment}). If you write
b4d4e8e3 1581@example
2c5c0674 1582SECTIONS @{
b4d4e8e3 1583 abs = 14 ;
2c5c0674 1584 @dots{}
cb70c872 1585 .data : @{ @dots{} rel = 14 ; @dots{} @}
b4d4e8e3 1586 abs2 = 14 + ADDR(.data);
2c5c0674
RP
1587 @dots{}
1588@}
f22eee08 1589@end example
2c5c0674 1590@c FIXME: Try above example!
b4d4e8e3 1591@noindent
ec40bbb8 1592@code{abs} and @code{rel} do not have the same value; @code{rel} has the
b4d4e8e3
RP
1593same value as @code{abs2}.
1594
b4d4e8e3 1595@item BYTE(@var{expression})
2c5c0674 1596@kindex BYTE(@var{expression})
b4d4e8e3 1597@itemx SHORT(@var{expression})
2c5c0674 1598@kindex SHORT(@var{expression})
b4d4e8e3 1599@itemx LONG(@var{expression})
2c5c0674
RP
1600@kindex LONG(@var{expression})
1601@cindex direct output
b4d4e8e3
RP
1602By including one of these three statements in a section definition, you
1603can explicitly place one, two, or four bytes (respectively) at the
ec40bbb8
DM
1604current address of that section.
1605
1606@ifclear SingleFormat
1607Multiple-byte quantities are represented in whatever byte order is
1608appropriate for the output file format (@pxref{BFD}).
1609@end ifclear
b4d4e8e3
RP
1610
1611@item FILL(@var{expression})
2c5c0674
RP
1612@kindex FILL(@var{expression})
1613@cindex holes, filling
1614@cindex unspecified memory
867a1b8a 1615Specify the ``fill pattern'' for the current section. Any otherwise
b4d4e8e3
RP
1616unspecified regions of memory within the section (for example, regions
1617you skip over by assigning a new value to the location counter @samp{.})
1618are filled with the two least significant bytes from the
1619@var{expression} argument. A @code{FILL} statement covers memory
1620locations @emph{after} the point it occurs in the section definition; by
1621including more than one @code{FILL} statement, you can have different
1622fill patterns in different parts of an output section.
1623@end table
1624
ec40bbb8 1625@node Section Options
b4d4e8e3 1626@subsection Optional Section Attributes
2c5c0674 1627@cindex section defn, full syntax
b4d4e8e3
RP
1628Here is the full syntax of a section definition, including all the
1629optional portions:
1630
d76ae847 1631@smallexample
2c5c0674
RP
1632SECTIONS @{
1633@dots{}
d76ae847 1634@var{secname} @var{start} BLOCK(@var{align}) (NOLOAD) : @{ @var{contents} @} =@var{fill} >@var{region}
2c5c0674 1635@dots{}
b4d4e8e3 1636@}
d76ae847 1637@end smallexample
b4d4e8e3
RP
1638
1639@var{secname} and @var{contents} are required. @xref{Section
867a1b8a 1640Definition}, and @pxref{Section Placement} for details on @var{contents}.
2c5c0674 1641The remaining elements---@var{start}, @code{BLOCK(@var{align)}},
d76ae847
RP
1642@code{(NOLOAD)} @code{=@var{fill}}, and @code{>@var{region}}---are all
1643optional.
f22eee08 1644
b4d4e8e3
RP
1645@table @code
1646@item @var{start}
2c5c0674
RP
1647@cindex start address, section
1648@cindex section start
1649@cindex section address
b4d4e8e3
RP
1650You can force the output section to be loaded at a specified address by
1651specifying @var{start} immediately following the section name.
1652@var{start} can be represented as any expression. The following
1653example generates section @var{output} at location
1654@code{0x40000000}:
1655@example
1656SECTIONS @{
2c5c0674 1657 @dots{}
b4d4e8e3
RP
1658 output 0x40000000: @{
1659 @dots{}
1660 @}
2c5c0674 1661 @dots{}
b4d4e8e3 1662@}
f22eee08 1663@end example
f22eee08 1664
b4d4e8e3 1665@item BLOCK(@var{align})
2c5c0674
RP
1666@kindex BLOCK(@var{align})
1667@cindex section alignment
1668@cindex aligning sections
ec40bbb8 1669You can include @code{BLOCK()} specification to advance
2c5c0674
RP
1670the location counter @code{.} prior to the beginning of the section, so
1671that the section will begin at the specified alignment. @var{align} is
1672an expression.
f22eee08 1673
d76ae847
RP
1674@item (NOLOAD)
1675@kindex NOLOAD
1676@cindex prevent unnecessary loading
1677Use @samp{(NOLOAD)} to prevent a section from being loaded into memory
1678each time it is accessed. For example, in the script sample below, the
1679@code{ROM} segment is addressed at memory location @samp{0} and does not
1680need to be loaded into each object file:
1681@example
1682SECTIONS @{
1683 ROM 0 (NOLOAD) : @{ @dots{} @}
1684 @dots{}
1685@}
1686@end example
1687
b4d4e8e3 1688@item =@var{fill}
2c5c0674
RP
1689@kindex =@var{fill}
1690@cindex section fill pattern
1691@cindex fill pattern, entire section
ec40bbb8 1692Including
b4d4e8e3 1693@code{=@var{fill}} in a section definition specifies the initial fill
ec40bbb8
DM
1694value for that section.
1695You may use any expression to specify @var{fill}.
1696Any unallocated holes in the current output
b4d4e8e3
RP
1697section when written to the output file will be filled with the two
1698least significant bytes of the value, repeated as necessary. You can
1699also change the fill value with a @code{FILL} statement in the
1700@var{contents} of a section definition.
f22eee08 1701
b4d4e8e3 1702@item >@var{region}
2c5c0674
RP
1703@kindex >@var{region}
1704@cindex section, assigning to memory region
1705@cindex memory regions and sections
1706Assign this section to a previously defined region of memory.
1707@xref{MEMORY}.
f22eee08 1708
f22eee08 1709@end table
b4d4e8e3 1710
ec40bbb8 1711@node Entry Point
b4d4e8e3 1712@section The Entry Point
2c5c0674
RP
1713@kindex ENTRY(@var{symbol})
1714@cindex start of execution
1715@cindex first instruction
b4d4e8e3
RP
1716The linker command language includes a command specifically for
1717defining the first executable instruction in an output file (its
1718@dfn{entry point}). Its argument is a symbol name:
f22eee08 1719@example
b4d4e8e3 1720ENTRY(@var{symbol})
f22eee08 1721@end example
b4d4e8e3
RP
1722
1723Like symbol assignments, the @code{ENTRY} command may be placed either
1724as an independent command in the command file, or among the section
1725definitions within the @code{SECTIONS} command---whatever makes the most
1726sense for your layout.
1727
2c5c0674 1728@cindex entry point, defaults
b4d4e8e3
RP
1729@code{ENTRY} is only one of several ways of choosing the entry point.
1730You may indicate it in any of the following ways (shown in descending
1731order of priority: methods higher in the list override methods lower down).
f22eee08
RP
1732@itemize @bullet
1733@item
ec40bbb8 1734the @samp{-e} @var{entry} command-line option;
f22eee08 1735@item
2c5c0674 1736the @code{ENTRY(@var{symbol}} command in a linker control script;
f22eee08 1737@item
b4d4e8e3 1738the value of the symbol @code{start}, if present;
f22eee08 1739@item
b4d4e8e3 1740the value of the symbol @code{_main}, if present;
f22eee08 1741@item
b4d4e8e3 1742the address of the first byte of the @code{.text} section, if present;
f22eee08 1743@item
b4d4e8e3 1744The address @code{0}.
f22eee08 1745@end itemize
b4d4e8e3 1746
2c5c0674
RP
1747For example, you can use these rules to generate an entry point with an
1748assignment statement: if no symbol @code{start} is defined within your
1749input files, you can simply define it, assigning it an appropriate
1750value---
f22eee08 1751@example
b4d4e8e3 1752start = 0x2020;
f22eee08 1753@end example
b4d4e8e3
RP
1754
1755@noindent
1756The example shows an absolute address, but you can use any expression.
1757For example, if your input object files use some other symbol-name
1758convention for the entry point, you can just assign the value of
1759whatever symbol contains the start address to @code{start}:
f22eee08 1760@example
cb70c872 1761start = other_symbol ;
f22eee08 1762@end example
f22eee08 1763
867a1b8a
DM
1764@node Option Commands
1765@section Option Commands
b4d4e8e3
RP
1766The command language includes a number of other commands that you can
1767use for specialized purposes. They are similar in purpose to
1768command-line options.
1769
1770@table @code
1771@item FLOAT
2c5c0674 1772@kindex FLOAT
b4d4e8e3 1773@itemx NOFLOAT
2c5c0674
RP
1774@kindex NOFLOAT
1775These keywords were used in some older linkers to request a particular
246504a5 1776math subroutine library. @code{ld} doesn't use the keywords, assuming
2c5c0674
RP
1777instead that any necessary subroutines are in libraries specified using
1778the general mechanisms for linking to archives; but to permit the use of
1779scripts that were written for the older linkers, the keywords
1780@code{FLOAT} and @code{NOFLOAT} are accepted and ignored.
1781
1782@item FORCE_COMMON_ALLOCATION
1783@kindex FORCE_COMMON_ALLOCATION
1784@cindex common allocation
ec40bbb8 1785This command has the same effect as the @samp{-d} command-line option:
2c5c0674 1786to make @code{ld} assign space to common symbols even if a relocatable
ec40bbb8 1787output file is specified (@samp{-r}).
b4d4e8e3 1788
b4d4e8e3 1789@item INPUT ( @var{file}, @var{file}, @dots{} )
2c5c0674 1790@kindex INPUT ( @var{files} )
b4d4e8e3 1791@itemx INPUT ( @var{file} @var{file} @dots{} )
2c5c0674
RP
1792@cindex binary input files
1793Use this command to include binary input files in the link, without
1794including them in a particular section definition. Files specified this
1795way are treated identically to object files listed on the command line.
b4d4e8e3 1796
2c5c0674 1797@ignore
b4d4e8e3 1798@item MAP ( @var{name} )
2c5c0674
RP
1799@kindex MAP ( @var{name} )
1800@c MAP(...) appears to look for an F in the arg, ignoring all other
1801@c chars; if it finds one, it sets "map_option_f" to true. But nothing
1802@c checks map_option_f. Apparently a stub for the future...
1803@end ignore
b4d4e8e3
RP
1804
1805@item OUTPUT ( @var{filename} )
2c5c0674
RP
1806@kindex OUTPUT ( @var{filename} )
1807@cindex naming the output file
d76ae847
RP
1808Use this command to name the link output file @var{filename}. The
1809effect of @code{OUTPUT(@var{filename})} is identical to the effect of
867a1b8a
DM
1810@w{@samp{-o @var{filename}}}, and whichever is encountered last
1811(@samp{-T} or @samp{-o} will control the name actually used to name the
1812output file. In particular, you can use this command to supply a
1813default output-file name other than @code{a.out}.
2c5c0674 1814
ec40bbb8 1815@ifclear SingleFormat
2c5c0674
RP
1816@item OUTPUT_ARCH ( @var{bfdname} )
1817@kindex OUTPUT_ARCH ( @var{bfdname} )
1818@cindex machine architecture, output
1819Specify a particular output machine architecture, with one of the names
1820used by the BFD back-end routines (@pxref{BFD}). This command is often
1821unnecessary; the architecture is most often set implicitly by either the
1822system BFD configuration or as a side effect of the @code{OUTPUT_FORMAT}
ec40bbb8 1823command.
2c5c0674
RP
1824
1825@item OUTPUT_FORMAT ( @var{bfdname} )
1826@kindex OUTPUT_FORMAT ( @var{bfdname} )
1827@cindex format, output file
1828Specify a particular output format, with one of the names used by the
867a1b8a
DM
1829BFD back-end routines (@pxref{BFD}). The effect is identical to the
1830effect of the @samp{-oformat} command-line option.
1831This selection will only affect
2c5c0674 1832the output file; the related command @code{TARGET} affects primarily
ec40bbb8
DM
1833input files.
1834@end ifclear
2c5c0674
RP
1835
1836@item SEARCH_DIR ( @var{path} )
1837@kindex SEARCH_DIR ( @var{path} )
1838@cindex path for libraries
1839@cindex search path, libraries
246504a5 1840Add @var{path} to the list of paths where @code{ld} looks for
2c5c0674 1841archive libraries. @code{SEARCH_DIR(@var{path})} has the same
ec40bbb8 1842effect as @samp{-L@var{path}} on the command line.
2c5c0674
RP
1843
1844@item STARTUP ( @var{filename} )
1845@kindex STARTUP ( @var{filename} )
1846@cindex first input file
1847Ensure that @var{filename} is the first input file used in the link
1848process.
b4d4e8e3 1849
ec40bbb8 1850@ifclear SingleFormat
b4d4e8e3 1851@item TARGET ( @var{format} )
2c5c0674
RP
1852@cindex input file format
1853@kindex TARGET ( @var{format} )
1854Change the input-file object code format (like the command-line option
ec40bbb8 1855@samp{-b} or its synonym @samp{-format}). The argument @var{format} is
867a1b8a
DM
1856one of the strings used by BFD to name binary formats. If @code{TARGET}
1857is specified but @code{OUTPUT_FORMAT} is not, the last @code{TARGET}
1858argument is also used as the default format for the @code{ld} output
1859file. @xref{BFD}.
2c5c0674
RP
1860
1861@kindex GNUTARGET
246504a5 1862If you don't use the @code{TARGET} command, @code{ld} uses the value of
2c5c0674 1863the environment variable @code{GNUTARGET}, if available, to select the
246504a5 1864output file format. If that variable is also absent, @code{ld} uses
2c5c0674 1865the default format configured for your machine in the BFD libraries.
ec40bbb8 1866@end ifclear
b4d4e8e3
RP
1867@end table
1868
ec40bbb8
DM
1869@ifset GENERIC
1870@node Machine Dependent
1c48127e
RP
1871@chapter Machine Dependent Features
1872
1873@cindex machine dependencies
246504a5
RP
1874@code{ld} has additional features on some platforms; the following
1875sections describe them. Machines where @code{ld} has no additional
1c48127e
RP
1876functionality are not listed.
1877
1878@menu
246504a5
RP
1879* H8/300:: @code{ld} and the H8/300
1880* i960:: @code{ld} and the Intel 960 family
1c48127e 1881@end menu
ec40bbb8
DM
1882@end ifset
1883
1884@c FIXME! This could use @up/@down, but there seems to be a conflict
1885@c between those and node-defaulting.
1886@ifset H8300
1887@ifclear GENERIC
1888@up
1889@end ifclear
1890@node H8/300
246504a5 1891@section @code{ld} and the H8/300
1c48127e
RP
1892
1893@cindex H8/300 support
246504a5 1894For the H8/300, @code{ld} can perform these global optimizations when
1c48127e
RP
1895you specify the @samp{-relax} command-line option.
1896
1897@table @emph
1898@item relaxing address modes
d76ae847 1899@cindex relaxing on H8/300
246504a5 1900@code{ld} finds all @code{jsr} and @code{jmp} instructions whose
1c48127e
RP
1901targets are within eight bits, and turns them into eight-bit
1902program-counter relative @code{bsr} and @code{bra} instructions,
1903respectively.
1904
1905@item synthesizing instructions
d76ae847 1906@cindex synthesizing on H8/300
1c48127e 1907@c FIXME: specifically mov.b, or any mov instructions really?
246504a5 1908@code{ld} finds all @code{mov.b} instructions which use the
1c48127e
RP
1909sixteen-bit absolute address form, but refer to the top
1910page of memory, and changes them to use the eight-bit address form.
1911(That is: the linker turns @samp{mov.b @code{@@}@var{aa}:16} into
1912@samp{mov.b @code{@@}@var{aa}:8} whenever the address @var{aa} is in the
1913top page of memory).
1914@end table
ec40bbb8
DM
1915@ifclear GENERIC
1916@down
1917@end ifclear
1918@end ifset
1919
1920@ifset I960
1921@ifclear GENERIC
1922@up
1923@end ifclear
1924@node i960
246504a5 1925@section @code{ld} and the Intel 960 family
1c48127e
RP
1926
1927@cindex i960 support
d76ae847 1928
1c48127e
RP
1929You can use the @samp{-A@var{architecture}} command line option to
1930specify one of the two-letter names identifying members of the 960
1931family; the option specifies the desired output target, and warns of any
1932incompatible instructions in the input files. It also modifies the
1933linker's search strategy for archive libraries, to support the use of
1934libraries specific to each particular architecture, by including in the
1935search loop names suffixed with the string identifying the architecture.
1936
246504a5 1937For example, if your @code{ld} command line included @w{@samp{-ACA}} as
1c48127e 1938well as @w{@samp{-ltry}}, the linker would look (in its built-in search
ec40bbb8 1939paths, and in any paths you specify with @samp{-L}) for a library with
1c48127e 1940the names
ec40bbb8 1941
1c48127e
RP
1942@example
1943try
1944libtry.a
1945tryca
1946libtryca.a
1947@end example
ec40bbb8 1948
1c48127e
RP
1949@noindent
1950The first two possibilities would be considered in any event; the last
1951two are due to the use of @w{@samp{-ACA}}.
1952
ec40bbb8 1953You can meaningfully use @samp{-A} more than once on a command line, since
1c48127e 1954the 960 architecture family allows combination of target architectures; each
ec40bbb8 1955use will add another pair of name variants to search for when @w{@samp{-l}}
1c48127e 1956specifies a library.
ec40bbb8
DM
1957@ifclear GENERIC
1958@down
1959@end ifclear
1960@end ifset
1c48127e 1961
ec40bbb8
DM
1962@ifclear SingleFormat
1963@node BFD
f22eee08
RP
1964@chapter BFD
1965
2c5c0674
RP
1966@cindex back end
1967@cindex object file management
1968The linker accesses object and archive files using the BFD libraries.
1969These libraries allow the linker to use the same routines to operate on
1970object files whatever the object file format. A different object file
1971format can be supported simply by creating a new BFD back end and adding
1c48127e
RP
1972it to the library. You can use @code{objdump -i}
1973(@pxref{objdump,,objdump,binutils.info,The GNU Binary Utilities}) to
1974list all the formats available for each architecture under BFD. This
1975was the list of formats, and of architectures supported for each format,
1976as of the time this manual was prepared:
2c5c0674
RP
1977@cindex formats available
1978@cindex architectures available
2c5c0674 1979@example
1c48127e
RP
1980BFD header file version 0.18
1981a.out-i386
1982 (header big endian, data big endian)
1983 m68k:68020
1984 a29k
1985 sparc
1986 i386
1987a.out-sunos-big
1988 (header big endian, data big endian)
1989 m68k:68020
1990 a29k
1991 sparc
1992 i386
1993b.out.big
1994 (header big endian, data little endian)
1995 i960:core
1996b.out.little
1997 (header little endian, data little endian)
1998 i960:core
1999coff-a29k-big
2000 (header big endian, data big endian)
2001 a29k
2002coff-h8300
2003 (header big endian, data big endian)
2004 H8/300
2005coff-i386
2006 (header little endian, data little endian)
2007 i386
2008coff-Intel-big
2009 (header big endian, data little endian)
2010 i960:core
2011coff-Intel-little
2012 (header little endian, data little endian)
2013 i960:core
2014coff-m68k
2015 (header big endian, data big endian)
2016 m68k:68020
2017coff-m88kbcs
2018 (header big endian, data big endian)
2019 m88k:88100
2020ecoff-bigmips
2021 (header big endian, data big endian)
2022 mips
2023ecoff-littlemips
2024 (header little endian, data little endian)
2025 mips
2026elf-big
2027 (header big endian, data big endian)
2028 m68k:68020
2029 vax
2030 i960:core
2031 a29k
2032 sparc
2033 mips
2034 i386
2035 m88k:88100
2036 H8/300
2037 rs6000:6000
2038elf-little
2039 (header little endian, data little endian)
2040 m68k:68020
2041 vax
2042 i960:core
2043 a29k
2044 sparc
2045 mips
2046 i386
2047 m88k:88100
2048 H8/300
2049 rs6000:6000
2050ieee
2051 (header big endian, data big endian)
2052 m68k:68020
2053 vax
2054 i960:core
2055 a29k
2056 sparc
2057 mips
2058 i386
2059 m88k:88100
2060 H8/300
2061 rs6000:6000
2062srec
2063 (header big endian, data big endian)
2064 m68k:68020
2065 vax
2066 i960:core
2067 a29k
2068 sparc
2069 mips
2070 i386
2071 m88k:88100
2072 H8/300
2073 rs6000:6000
2c5c0674 2074@end example
f22eee08 2075
2c5c0674
RP
2076@cindex BFD requirements
2077@cindex requirements for BFD
2078As with most implementations, BFD is a compromise between
f22eee08 2079several conflicting requirements. The major factor influencing
2c5c0674
RP
2080BFD design was efficiency: any time used converting between
2081formats is time which would not have been spent had BFD not
f22eee08 2082been involved. This is partly offset by abstraction payback; since
2c5c0674 2083BFD simplifies applications and back ends, more time and care
f22eee08
RP
2084may be spent optimizing algorithms for a greater speed.
2085
2c5c0674
RP
2086One minor artifact of the BFD solution which you should bear in
2087mind is the potential for information loss. There are two places where
ec40bbb8 2088useful information can be lost using the BFD mechanism: during
2c5c0674
RP
2089conversion and during output. @xref{BFD information loss}.
2090
2091@menu
2d59b2c3 2092* BFD outline:: How it works: an outline of BFD
2c5c0674 2093@end menu
f22eee08 2094
ec40bbb8 2095@node BFD outline
b4d4e8e3 2096@section How it works: an outline of BFD
2c5c0674 2097@cindex opening object files
3e27cc11 2098@include bfdsumm.texi
ec40bbb8 2099@end ifclear
f22eee08 2100
ec40bbb8 2101@node MRI
2d59b2c3
RP
2102@appendix MRI Compatible Script Files
2103@cindex MRI compatibility
2104To aid users making the transition to @sc{gnu} @code{ld} from the MRI
2105linker, @code{ld} can use MRI compatible linker scripts as an
2106alternative to the more general-purpose linker scripting language
2107described in @ref{Commands,,Command Language}. MRI compatible linker
2108scripts have a much simpler command set than the scripting language
2109otherwise used with @code{ld}. @sc{gnu} @code{ld} supports the most
2110commonly used MRI linker commands; these commands are described here.
2111
867a1b8a
DM
2112In general, MRI scripts aren't of much use with the @code{a.out} object
2113file format, since it only has three sections and MRI scripts lack some
2114features to make use of them.
2115
2d59b2c3
RP
2116You can specify a file containing an MRI-compatible script using the
2117@samp{-c} command-line option.
2118
2119Each command in an MRI-compatible script occupies its own line; each
2120command line starts with the keyword that identifies the command (though
2121blank lines are also allowed for punctuation). If a line of an
2122MRI-compatible script begins with an unrecognized keyword, @code{ld}
2123issues a warning message, but continues processing the script.
2124
2125Lines beginning with @samp{*} are comments.
2126
2127You can write these commands using all upper-case letters, or all
2128lower case; for example, @samp{chip} is the same as @samp{CHIP}.
2129The following list shows only the upper-case form of each command.
2130
2131@table @code
2132@item ABSOLUTE @var{secname}
2133@item ABSOLUTE @var{secname}, @var{secname}, @dots{} @var{secname}
2134@cindex @code{ABSOLUTE} (MRI)
2135Normally, @code{ld} includes in the output file all sections from all
2136the input files. However, in an MRI-compatible script, you can use the
2137@code{ABSOLUTE} command to restrict the sections that will be present in
2138your output program. If the @code{ABSOLUTE} command is used at all in a
2139script, then only the sections named explicitly in @code{ABSOLUTE}
2140commands will appear in the linker output. You can still use other
2141input sections (whatever you select on the command line, or using
7b015547 2142@code{LOAD}) to resolve addresses in the output file.
2d59b2c3
RP
2143
2144@item ALIAS @var{out-secname}, @var{in-secname}
2145@cindex @code{ALIAS} (MRI)
2146Use this command to place the data from input section @var{in-secname}
2147in a section called @var{out-secname} in the linker output file.
2148
2149@var{in-secname} may be an integer.
2150
2151@item BASE @var{expression}
2152@cindex @code{BASE} (MRI)
2153Use the value of @var{expression} as the lowest address (other than
2154absolute addresses) in the output file.
2155
2156@item CHIP @var{expression}
2157@itemx CHIP @var{expression}, @var{expression}
2158@cindex @code{CHIP} (MRI)
ec40bbb8 2159This command does nothing; it is accepted only for compatibility.
2d59b2c3
RP
2160
2161@item END
2162@cindex @code{END} (MRI)
2163This command does nothing whatever; it's only accepted for compatibility.
2164
2165@item FORMAT @var{output-format}
2166@cindex @code{FORMAT} (MRI)
2167Similar to the @code{OUTPUT_FORMAT} command in the more general linker
2168language, but restricted to one of these output formats:
2169@enumerate
2170@item
2171S-records, if @var{output-format} is @samp{S}
2172
2173@item
2174IEEE, if @var{output-format} is @samp{IEEE}
2175
2176@item
2177COFF (the @samp{coff-m68k} variant in BFD), if @var{output-format} is
2178@samp{COFF}
2179@end enumerate
2180
8ddef552 2181@item LIST @var{anything}@dots{}
2d59b2c3
RP
2182@cindex @code{LIST} (MRI)
2183Print (to the standard output file) a link map, as produced by the
2184@code{ld} command-line option @samp{-M}.
2185
ec40bbb8
DM
2186The keyword @code{LIST} may be followed by anything on the
2187same line, with no change in its effect.
2d59b2c3
RP
2188
2189@item LOAD @var{filename}
2190@item LOAD @var{filename}, @var{filename}, @dots{} @var{filename}
2191@cindex @code{LOAD} (MRI)
2192Include one or more object file @var{filename} in the link; this has the
2193same effect as specifying @var{filename} directly on the @code{ld}
2194command line.
2195
2196@item NAME @var{output-name}
2197@cindex @code{NAME} (MRI)
2198@var{output-name} is the name for the program produced by @code{ld}; the
2199MRI-compatible command @code{NAME} is equivalent to the command-line
2200option @samp{-o} or the general script language command @code{OUTPUT}.
2201
2202@item ORDER @var{secname}, @var{secname}, @dots{} @var{secname}
2203@itemx ORDER @var{secname} @var{secname} @var{secname}
2204@cindex @code{ORDER} (MRI)
ec40bbb8
DM
2205Normally, @code{ld} orders the sections in its output file in the
2206order in which they first appear in the input files. In an MRI-compatible
2207script, you can override this ordering with the @code{ORDER} command. The
2d59b2c3
RP
2208sections you list with @code{ORDER} will appear first in your output
2209file, in the order specified.
2210
2211@item PUBLIC @var{name}=@var{expression}
2212@itemx PUBLIC @var{name},@var{expression}
2213@itemx PUBLIC @var{name} @var{expression}
2214@cindex @code{PUBLIC} (MRI)
ec40bbb8 2215Supply a value (@var{expression}) for external symbol
2d59b2c3
RP
2216@var{name} used in the linker input files.
2217
2218@item SECT @var{secname}, @var{expression}
2219@itemx SECT @var{secname}=@var{expression}
2220@itemx SECT @var{secname} @var{expression}
2221@cindex @code{SECT} (MRI)
2222You can use any of these three forms of the @code{SECT} command to
2223specify the start address (@var{expression}) for section @var{secname}.
2224If you have more than one @code{SECT} statement for the same
2225@var{secname}, only the @emph{first} sets the start address.
2226@end table
2227
2228
ec40bbb8 2229@node Index
2c5c0674
RP
2230@unnumbered Index
2231
2232@printindex cp
2233
2234@tex
2235% I think something like @colophon should be in texinfo. In the
2236% meantime:
2237\long\def\colophon{\hbox to0pt{}\vfill
2238\centerline{The body of this manual is set in}
2239\centerline{\fontname\tenrm,}
2240\centerline{with headings in {\bf\fontname\tenbf}}
2241\centerline{and examples in {\tt\fontname\tentt}.}
2242\centerline{{\it\fontname\tenit\/} and}
2243\centerline{{\sl\fontname\tensl\/}}
2244\centerline{are used for emphasis.}\vfill}
2245\page\colophon
2246% Blame: pesch@cygnus.com, 28mar91.
2247@end tex
2248
2249
b4d4e8e3 2250@contents
f22eee08
RP
2251@bye
2252
2253
This page took 0.196543 seconds and 4 git commands to generate.