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