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