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