]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - ld/ld.texinfo
* config/sh/tm-sh.h (BELIEVE_PCC_PROMOTION): Define, so that
[thirdparty/binutils-gdb.git] / ld / ld.texinfo
CommitLineData
f22eee08 1\input texinfo
c8072296 2@setfilename ld.info
b4d4e8e3 3@syncodeindex ky cp
7f9ae73e 4@include configdoc.texi
8de26d62 5@c (configdoc.texi is generated by the Makefile)
3964a18a 6@include ldver.texi
ec40bbb8
DM
7
8@c @smallbook
1c48127e
RP
9
10@ifinfo
11@format
12START-INFO-DIR-ENTRY
f9d3d71a 13* Ld: (ld). The GNU linker.
1c48127e
RP
14END-INFO-DIR-ENTRY
15@end format
16@end ifinfo
17
b4d4e8e3 18@ifinfo
3964a18a 19This file documents the @sc{gnu} linker LD version @value{VERSION}.
b4d4e8e3 20
f4175166 21Copyright (C) 1991, 92, 93, 94, 95, 96, 97, 1998 Free Software Foundation, Inc.
b4d4e8e3
RP
22
23Permission is granted to make and distribute verbatim copies of
24this manual provided the copyright notice and this permission notice
25are preserved on all copies.
26
d76ae847
RP
27Permission is granted to copy and distribute modified versions of this
28manual under the conditions for verbatim copying, provided also that
29the entire resulting derived work is distributed under the terms of a
30permission notice identical to this one.
31
32Permission is granted to copy and distribute translations of this manual
33into another language, under the above conditions for modified versions.
34
b4d4e8e3
RP
35@ignore
36Permission is granted to process this file through Tex and print the
37results, provided the printed document carries copying permission
38notice identical to this one except for the removal of this paragraph
39(this paragraph not being relevant to the printed manual).
40
41@end ignore
b4d4e8e3 42@end ifinfo
2c5c0674
RP
43@iftex
44@finalout
b4d4e8e3 45@setchapternewpage odd
246504a5 46@settitle Using LD, the GNU linker
f22eee08 47@titlepage
246504a5 48@title Using ld
c8072296 49@subtitle The GNU linker
f22eee08 50@sp 1
cb70c872 51@subtitle @code{ld} version 2
3964a18a 52@subtitle Version @value{VERSION}
c653b370 53@author Steve Chamberlain
ed1cc83d
ILT
54@author Ian Lance Taylor
55@author Cygnus Solutions
b4d4e8e3
RP
56@page
57
58@tex
b4d4e8e3 59{\parskip=0pt
ed1cc83d
ILT
60\hfill Cygnus Solutions\par
61\hfill ian\@cygnus.com, doc\@cygnus.com\par
ec40bbb8 62\hfill {\it Using LD, the GNU linker}\par
d4e5e3c3 63\hfill Edited by Jeffrey Osier (jeffrey\@cygnus.com)\par
b4d4e8e3
RP
64}
65\global\parindent=0pt % Steve likes it this way.
66@end tex
67
f22eee08 68@vskip 0pt plus 1filll
f4175166 69Copyright @copyright{} 1991, 92, 93, 94, 95, 96, 97, 1998 Free Software Foundation, Inc.
f22eee08
RP
70
71Permission is granted to make and distribute verbatim copies of
72this manual provided the copyright notice and this permission notice
73are preserved on all copies.
74
75Permission is granted to copy and distribute modified versions of this
76manual under the conditions for verbatim copying, provided also that
77the entire resulting derived work is distributed under the terms of a
78permission notice identical to this one.
79
80Permission is granted to copy and distribute translations of this manual
81into another language, under the above conditions for modified versions.
f22eee08 82@end titlepage
2c5c0674 83@end iftex
b4d4e8e3 84@c FIXME: Talk about importance of *order* of args, cmds to linker!
f22eee08 85
f22eee08 86@ifinfo
ec40bbb8
DM
87@node Top
88@top Using ld
3964a18a 89This file documents the @sc{gnu} linker ld version @value{VERSION}.
f22eee08 90
2c5c0674 91@menu
2d59b2c3
RP
92* Overview:: Overview
93* Invocation:: Invocation
af54556a 94* Scripts:: Linker Scripts
ec40bbb8 95@ifset GENERIC
2d59b2c3 96* Machine Dependent:: Machine Dependent Features
ec40bbb8
DM
97@end ifset
98@ifclear GENERIC
99@ifset H8300
100* H8/300:: ld and the H8/300
101@end ifset
f9d3d71a
ILT
102@ifset Hitachi
103* Hitachi:: ld and other Hitachi micros
104@end ifset
ec40bbb8
DM
105@ifset I960
106* i960:: ld and the Intel 960 family
107@end ifset
108@end ifclear
109@ifclear SingleFormat
2d59b2c3 110* BFD:: BFD
ec40bbb8
DM
111@end ifclear
112@c Following blank line required for remaining bug in makeinfo conds/menus
113
9fde46a4 114* Reporting Bugs:: Reporting Bugs
2d59b2c3
RP
115* MRI:: MRI Compatible Script Files
116* Index:: Index
2c5c0674 117@end menu
ec40bbb8 118@end ifinfo
2c5c0674 119
ec40bbb8 120@node Overview
f22eee08
RP
121@chapter Overview
122
c653b370 123@cindex @sc{gnu} linker
2c5c0674 124@cindex what is this?
246504a5 125@code{ld} combines a number of object and archive files, relocates
ec40bbb8
DM
126their data and ties up symbol references. Usually the last step in
127compiling a program is to run @code{ld}.
f22eee08 128
246504a5 129@code{ld} accepts Linker Command Language files written in
2c5c0674 130a superset of AT&T's Link Editor Command Language syntax,
b4d4e8e3 131to provide explicit and total control over the linking process.
f22eee08 132
ec40bbb8 133@ifclear SingleFormat
246504a5
RP
134This version of @code{ld} uses the general purpose BFD libraries
135to operate on object files. This allows @code{ld} to read, combine, and
b4d4e8e3
RP
136write object files in many different formats---for example, COFF or
137@code{a.out}. Different formats may be linked together to produce any
d4e5e3c3 138available kind of object file. @xref{BFD}, for more information.
ec40bbb8 139@end ifclear
f22eee08 140
c653b370 141Aside from its flexibility, the @sc{gnu} linker is more helpful than other
2c5c0674
RP
142linkers in providing diagnostic information. Many linkers abandon
143execution immediately upon encountering an error; whenever possible,
246504a5 144@code{ld} continues executing, allowing you to identify other errors
2c5c0674
RP
145(or, in some cases, to get an output file in spite of the error).
146
ec40bbb8 147@node Invocation
2c5c0674
RP
148@chapter Invocation
149
c653b370 150The @sc{gnu} linker @code{ld} is meant to cover a broad range of situations,
2c5c0674 151and to be as compatible as possible with other linkers. As a result,
ec40bbb8 152you have many choices to control its behavior.
2c5c0674 153
ec40bbb8 154@ifset UsesEnvVars
2c5c0674 155@menu
2d59b2c3
RP
156* Options:: Command Line Options
157* Environment:: Environment Variables
2c5c0674 158@end menu
f22eee08 159
ec40bbb8 160@node Options
2c5c0674 161@section Command Line Options
ec40bbb8 162@end ifset
2c5c0674
RP
163
164@cindex command line
165@cindex options
67afbcea
DE
166The linker supports a plethora of command-line options, but in actual
167practice few of them are used in any particular context.
2c5c0674 168@cindex standard Unix system
246504a5 169For instance, a frequent use of @code{ld} is to link standard Unix
b4d4e8e3
RP
170object files on a standard, supported Unix system. On such a system, to
171link a file @code{hello.o}:
ec40bbb8 172
c653b370 173@smallexample
ec40bbb8 174ld -o @var{output} /lib/crt0.o hello.o -lc
c653b370 175@end smallexample
ec40bbb8 176
d76ae847 177This tells @code{ld} to produce a file called @var{output} as the
b4d4e8e3 178result of linking the file @code{/lib/crt0.o} with @code{hello.o} and
ec40bbb8
DM
179the library @code{libc.a}, which will come from the standard search
180directories. (See the discussion of the @samp{-l} option below.)
f22eee08 181
246504a5 182The command-line options to @code{ld} may be specified in any order, and
67afbcea
DE
183may be repeated at will. Repeating most options with a different
184argument will either have no further effect, or override prior
ec40bbb8 185occurrences (those further to the left on the command line) of that
67afbcea
DE
186option. Options which may be meaningfully specified more than once are
187noted in the descriptions below.
f22eee08 188
2c5c0674 189@cindex object files
67afbcea
DE
190Non-option arguments are objects files which are to be linked together.
191They may follow, precede, or be mixed in with command-line options,
192except that an object file argument may not be placed between an option
193and its argument.
f22eee08 194
7f9ae73e
RP
195Usually the linker is invoked with at least one object file, but you can
196specify other forms of binary input files using @samp{-l}, @samp{-R},
197and the script command language. If @emph{no} binary input files at all
198are specified, the linker does not produce any output, and issues the
199message @samp{No input files}.
2c5c0674 200
0b3499f6
ILT
201If the linker can not recognize the format of an object file, it will
202assume that it is a linker script. A script specified in this way
203augments the main linker script used for the link (either the default
204linker script or the one specified by using @samp{-T}). This feature
205permits the linker to link against a file which appears to be an object
206or an archive, but actually merely defines some symbol values, or uses
cc28f8fb
ILT
207@code{INPUT} or @code{GROUP} to load other objects. Note that
208specifying a script in this way should only be used to augment the main
209linker script; if you want to use some command that logically can only
210appear once, such as the @code{SECTIONS} or @code{MEMORY} command, you
211must replace the default linker script using the @samp{-T} option.
af54556a 212@xref{Scripts}.
0b3499f6 213
d4e5e3c3
DM
214For options whose names are a single letter,
215option arguments must either follow the option letter without intervening
f22eee08
RP
216whitespace, or be given as separate arguments immediately following the
217option that requires them.
218
d4e5e3c3
DM
219For options whose names are multiple letters, either one dash or two can
220precede the option name; for example, @samp{--oformat} and
9fde46a4 221@samp{--oformat} are equivalent. Arguments to multiple-letter options
d4e5e3c3
DM
222must either be separated from the option name by an equals sign, or be
223given as separate arguments immediately following the option that
224requires them. For example, @samp{--oformat srec} and
225@samp{--oformat=srec} are equivalent. Unique abbreviations of the names
226of multiple-letter options are accepted.
227
f22eee08 228@table @code
67afbcea
DE
229@kindex -a@var{keyword}
230@item -a@var{keyword}
231This option is supported for HP/UX compatibility. The @var{keyword}
232argument must be one of the strings @samp{archive}, @samp{shared}, or
233@samp{default}. @samp{-aarchive} is functionally equivalent to
234@samp{-Bstatic}, and the other two keywords are functionally equivalent
235to @samp{-Bdynamic}. This option may be used any number of times.
236
ec40bbb8 237@ifset I960
2c5c0674
RP
238@cindex architectures
239@kindex -A@var{arch}
b4d4e8e3 240@item -A@var{architecture}
67afbcea
DE
241@kindex --architecture=@var{arch}
242@itemx --architecture=@var{architecture}
246504a5
RP
243In the current release of @code{ld}, this option is useful only for the
244Intel 960 family of architectures. In that @code{ld} configuration, the
1c48127e
RP
245@var{architecture} argument identifies the particular architecture in
246the 960 family, enabling some safeguards and modifying the
d76ae847
RP
247archive-library search path. @xref{i960,,@code{ld} and the Intel 960
248family}, for details.
b4d4e8e3 249
246504a5 250Future releases of @code{ld} may support similar functionality for
b4d4e8e3 251other architecture families.
ec40bbb8 252@end ifset
b4d4e8e3 253
ec40bbb8 254@ifclear SingleFormat
2c5c0674
RP
255@cindex binary input format
256@kindex -b @var{format}
67afbcea 257@kindex --format=@var{format}
2c5c0674 258@cindex input format
2c5c0674 259@cindex input format
c653b370 260@item -b @var{input-format}
67afbcea 261@itemx --format=@var{input-format}
1fb57a5d
RP
262@code{ld} may be configured to support more than one kind of object
263file. If your @code{ld} is configured this way, you can use the
264@samp{-b} option to specify the binary format for input object files
265that follow this option on the command line. Even when @code{ld} is
266configured to support alternative object formats, you don't usually need
267to specify this, as @code{ld} should be configured to expect as a
268default input format the most usual format on each machine.
269@var{input-format} is a text string, the name of a particular format
270supported by the BFD libraries. (You can list the available binary
67afbcea 271formats with @samp{objdump -i}.)
1fb57a5d 272@xref{BFD}.
2c5c0674
RP
273
274You may want to use this option if you are linking files with an unusual
ec40bbb8 275binary format. You can also use @samp{-b} to switch formats explicitly (when
2c5c0674 276linking object files of different formats), by including
ec40bbb8 277@samp{-b @var{input-format}} before each group of object files in a
2c5c0674
RP
278particular format.
279
280The default format is taken from the environment variable
ec40bbb8
DM
281@code{GNUTARGET}.
282@ifset UsesEnvVars
283@xref{Environment}.
284@end ifset
af54556a
ILT
285You can also define the input format from a script, using the command
286@code{TARGET}; see @ref{Format Commands}.
ec40bbb8 287@end ifclear
2c5c0674 288
2d59b2c3 289@kindex -c @var{MRI-cmdfile}
67afbcea 290@kindex --mri-script=@var{MRI-cmdfile}
2d59b2c3
RP
291@cindex compatibility, MRI
292@item -c @var{MRI-commandfile}
67afbcea 293@itemx --mri-script=@var{MRI-commandfile}
2d59b2c3
RP
294For compatibility with linkers produced by MRI, @code{ld} accepts script
295files written in an alternate, restricted command language, described in
d76ae847 296@ref{MRI,,MRI Compatible Script Files}. Introduce MRI script files with
ec40bbb8 297the option @samp{-c}; use the @samp{-T} option to run linker
d76ae847 298scripts written in the general-purpose @code{ld} scripting language.
8ddef552
DM
299If @var{MRI-cmdfile} does not exist, @code{ld} looks for it in the directories
300specified by any @samp{-L} options.
b4d4e8e3 301
2c5c0674
RP
302@cindex common allocation
303@kindex -d
2c5c0674 304@kindex -dc
2c5c0674 305@kindex -dp
c653b370
ILT
306@item -d
307@itemx -dc
b4d4e8e3
RP
308@itemx -dp
309These three options are equivalent; multiple forms are supported for
af54556a
ILT
310compatibility with other linkers. They assign space to common symbols
311even if a relocatable output file is specified (with @samp{-r}). The
312script command @code{FORCE_COMMON_ALLOCATION} has the same effect.
313@xref{Miscellaneous Commands}.
b4d4e8e3 314
2c5c0674
RP
315@cindex entry point, from command line
316@kindex -e @var{entry}
67afbcea 317@kindex --entry=@var{entry}
f22eee08 318@item -e @var{entry}
67afbcea 319@itemx --entry=@var{entry}
f22eee08 320Use @var{entry} as the explicit symbol for beginning execution of your
e2ebb8ed
JL
321program, rather than the default entry point. If there is no symbol
322named @var{entry}, the linker will try to parse @var{entry} as a number,
323and use that as the entry address (the number will be interpreted in
324base 10; you may use a leading @samp{0x} for base 16, or a leading
325@samp{0} for base 8). @xref{Entry Point}, for a discussion of defaults
326and other ways of specifying the entry point.
f22eee08 327
c653b370 328@cindex dynamic symbol table
7ec9d825 329@kindex -E
9fde46a4 330@kindex --export-dynamic
7ec9d825 331@item -E
9fde46a4 332@itemx --export-dynamic
67afbcea 333When creating a dynamically linked executable, add all symbols to the
5a59e34d
ILT
334dynamic symbol table. The dynamic symbol table is the set of symbols
335which are visible from dynamic objects at run time.
336
337If you do not use this option, the dynamic symbol table will normally
338contain only those symbols which are referenced by some dynamic object
339mentioned in the link.
340
341If you use @code{dlopen} to load a dynamic object which needs to refer
342back to the symbols defined by the program, rather than some other
343dynamic object, then you will probably need to use this option when
344linking the program itself.
c653b370 345
de220cbd
ILT
346@kindex -f
347@kindex --auxiliary
348@item -f
349@itemx --auxiliary @var{name}
350When creating an ELF shared object, set the internal DT_AUXILIARY field
351to the specified name. This tells the dynamic linker that the symbol
352table of the shared object should be used as an auxiliary filter on the
353symbol table of the shared object @var{name}.
354
cc28f8fb
ILT
355If you later link a program against this filter object, then, when you
356run the program, the dynamic linker will see the DT_AUXILIARY field. If
357the dynamic linker resolves any symbols from the filter object, it will
358first check whether there is a definition in the shared object
359@var{name}. If there is one, it will be used instead of the definition
360in the filter object. The shared object @var{name} need not exist.
361Thus the shared object @var{name} may be used to provide an alternative
362implementation of certain functions, perhaps for debugging or for
363machine specific performance.
364
5a59e34d
ILT
365This option may be specified more than once. The DT_AUXILIARY entries
366will be created in the order in which they appear on the command line.
367
2c5c0674 368@kindex -F
de220cbd
ILT
369@kindex --filter
370@item -F @var{name}
371@itemx --filter @var{name}
372When creating an ELF shared object, set the internal DT_FILTER field to
373the specified name. This tells the dynamic linker that the symbol table
cc28f8fb
ILT
374of the shared object which is being created should be used as a filter
375on the symbol table of the shared object @var{name}.
376
377If you later link a program against this filter object, then, when you
378run the program, the dynamic linker will see the DT_FILTER field. The
379dynamic linker will resolve symbols according to the symbol table of the
380filter object as usual, but it will actually link to the definitions
381found in the shared object @var{name}. Thus the filter object can be
382used to select a subset of the symbols provided by the object
383@var{name}.
de220cbd
ILT
384
385Some older linkers used the @code{-F} option throughout a compilation
ec40bbb8 386toolchain for specifying object-file format for both input and output
de220cbd
ILT
387object files. The @sc{gnu} linker uses other mechanisms for this
388purpose: the @code{-b}, @code{--format}, @code{--oformat} options, the
389@code{TARGET} command in linker scripts, and the @code{GNUTARGET}
390environment variable. The @sc{gnu} linker will ignore the @code{-F}
391option when not creating an ELF shared object.
2c5c0674 392
a1d393cf
ILT
393@kindex --force-exe-suffix
394@item --force-exe-suffix
395Make sure that an output file has a .exe suffix.
396
397If a successfully built fully linked output file does not have a
398@code{.exe} or @code{.dll} suffix, this option forces the linker to copy
399the output file to one of the same name with a @code{.exe} suffix. This
400option is useful when using unmodified Unix makefiles on a Microsoft
401Windows host, since some versions of Windows won't run an image unless
402it ends in a @code{.exe} suffix.
403
2c5c0674 404@kindex -g
b4d4e8e3 405@item -g
ec40bbb8 406Ignored. Provided for compatibility with other tools.
b4d4e8e3 407
8ddef552 408@kindex -G
67afbcea 409@kindex --gpsize
8ddef552
DM
410@cindex object size
411@item -G@var{value}
67afbcea 412@itemx --gpsize=@var{value}
8ddef552 413Set the maximum size of objects to be optimized using the GP register to
67afbcea
DE
414@var{size}. This is only meaningful for object file formats such as
415MIPS ECOFF which supports putting large and small objects into different
416sections. This is ignored for other object file formats.
8ddef552 417
71b012a8
RH
418@kindex --gc-sections
419@cindex garbage collection
420@item --gc-sections
421Enable garbage collection of unused input sections. It is ignored on
422targets that do not support this option. This option is not compatible
423with @samp{-r}, nor should it be used with dynamic linking.
424
67afbcea
DE
425@cindex runtime library name
426@kindex -h@var{name}
427@kindex -soname=@var{name}
428@item -h@var{name}
429@itemx -soname=@var{name}
430When creating an ELF shared object, set the internal DT_SONAME field to
431the specified name. When an executable is linked with a shared object
432which has a DT_SONAME field, then when the executable is run the dynamic
433linker will attempt to load the shared object specified by the DT_SONAME
434field rather than the using the file name given to the linker.
de87cdb4 435
2c5c0674
RP
436@kindex -i
437@cindex incremental link
f22eee08 438@item -i
ec40bbb8 439Perform an incremental link (same as option @samp{-r}).
f22eee08 440
2c5c0674 441@cindex archive files, from cmd line
de87cdb4 442@kindex -l@var{archive}
67afbcea
DE
443@kindex --library=@var{archive}
444@item -l@var{archive}
445@itemx --library=@var{archive}
446Add archive file @var{archive} to the list of files to link. This
f22eee08 447option may be used any number of times. @code{ld} will search its
67afbcea 448path-list for occurrences of @code{lib@var{archive}.a} for every
4164f2d5
ILT
449@var{archive} specified.
450
451On systems which support shared libraries, @code{ld} may also search for
452libraries with extensions other than @code{.a}. Specifically, on ELF
453and SunOS systems, @code{ld} will search a directory for a library with
454an extension of @code{.so} before searching for one with an extension of
455@code{.a}. By convention, a @code{.so} extension indicates a shared
456library.
f22eee08 457
b61364cc
ILT
458The linker will search an archive only once, at the location where it is
459specified on the command line. If the archive defines a symbol which
460was undefined in some object which appeared before the archive on the
461command line, the linker will include the appropriate file(s) from the
462archive. However, an undefined symbol in an object appearing later on
463the command line will not cause the linker to search the archive again.
464
465See the @code{-(} option for a way to force the linker to search
466archives multiple times.
467
468You may list the same archive multiple times on the command line.
469
470@ifset GENERIC
471This type of archive searching is standard for Unix linkers. However,
472if you are using @code{ld} on AIX, note that it is different from the
473behaviour of the AIX linker.
474@end ifset
475
2c5c0674
RP
476@cindex search directory, from cmd line
477@kindex -L@var{dir}
67afbcea 478@kindex --library-path=@var{dir}
b4d4e8e3 479@item -L@var{searchdir}
67afbcea 480@itemx --library-path=@var{searchdir}
ec40bbb8 481Add path @var{searchdir} to the list of paths that @code{ld} will search
8ddef552 482for archive libraries and @code{ld} control scripts. You may use this
0b0642d6
ILT
483option any number of times. The directories are searched in the order
484in which they are specified on the command line. Directories specified
485on the command line are searched before the default directories. All
486@code{-L} options apply to all @code{-l} options, regardless of the
487order in which the options appear.
f22eee08 488
ec40bbb8 489@ifset UsesEnvVars
2c5c0674 490The default set of paths searched (without being specified with
ec40bbb8
DM
491@samp{-L}) depends on which emulation mode @code{ld} is using, and in
492some cases also on how it was configured. @xref{Environment}.
493@end ifset
494
495The paths can also be specified in a link script with the
0b0642d6
ILT
496@code{SEARCH_DIR} command. Directories specified this way are searched
497at the point in which the linker script appears in the command line.
f22eee08 498
8ddef552
DM
499@cindex emulation
500@kindex -m @var{emulation}
501@item -m@var{emulation}
8ddef552 502Emulate the @var{emulation} linker. You can list the available
f4175166
ILT
503emulations with the @samp{--verbose} or @samp{-V} options.
504
505If the @samp{-m} option is not used, the emulation is taken from the
506@code{LDEMULATION} environment variable, if that is defined.
507
508Otherwise, the default emulation depends upon how the linker was
509configured.
8ddef552 510
67afbcea
DE
511@cindex link map
512@kindex -M
513@kindex --print-map
514@item -M
515@itemx --print-map
af54556a
ILT
516Print a link map to the standard output. A link map provides
517information about the link, including the following:
518
519@itemize @bullet
520@item
521Where object files and symbols are mapped into memory.
522@item
523How common symbols are allocated.
524@item
525All archive members included in the link, with a mention of the symbol
526which caused the archive member to be brought in.
527@end itemize
67afbcea
DE
528
529@kindex -n
530@cindex read-only text
531@cindex NMAGIC
532@kindex --nmagic
533@item -n
534@itemx --nmagic
535Set the text segment to be read only, and mark the output as
536@code{NMAGIC} if possible.
537
2c5c0674 538@kindex -N
67afbcea 539@kindex --omagic
2c5c0674 540@cindex read/write from cmd line
67afbcea 541@cindex OMAGIC
f22eee08 542@item -N
67afbcea 543@itemx --omagic
ec40bbb8
DM
544Set the text and data sections to be readable and writable. Also, do
545not page-align the data segment. If the output format supports Unix
546style magic numbers, mark the output as @code{OMAGIC}.
f22eee08 547
67afbcea
DE
548@kindex -o @var{output}
549@kindex --output=@var{output}
550@cindex naming the output file
551@item -o @var{output}
552@itemx --output=@var{output}
553Use @var{output} as the name for the program produced by @code{ld}; if this
554option is not specified, the name @file{a.out} is used by default. The
555script command @code{OUTPUT} can also specify the output file name.
f22eee08 556
c470f2eb
UD
557@kindex -O @var{level}
558@cindex generating optimized output
559@item -O @var{level}
560If @var{level} is a numeric values greater than zero @code{ld} optimizes
561the output. This might take significantly longer and therefore probably
562should only be enabled for the final binary.
563
67afbcea
DE
564@cindex partial link
565@cindex relocatable output
566@kindex -r
567@kindex --relocateable
568@item -r
569@itemx --relocateable
570Generate relocatable output---i.e., generate an output file that can in
571turn serve as input to @code{ld}. This is often called @dfn{partial
572linking}. As a side effect, in environments that support standard Unix
573magic numbers, this option also sets the output file's magic number to
574@code{OMAGIC}.
575@c ; see @code{-N}.
576If this option is not specified, an absolute file is produced. When
577linking C++ programs, this option @emph{will not} resolve references to
578constructors; to do that, use @samp{-Ur}.
579
580This option does the same thing as @samp{-i}.
581
582@kindex -R @var{file}
583@kindex --just-symbols=@var{file}
584@cindex symbol-only input
585@item -R @var{filename}
586@itemx --just-symbols=@var{filename}
587Read symbol names and their addresses from @var{filename}, but do not
588relocate it or include it in the output. This allows your output file
589to refer symbolically to absolute locations of memory defined in other
590programs. You may use this option more than once.
591
592For compatibility with other ELF linkers, if the @code{-R} option is
593followed by a directory name, rather than a file name, it is treated as
594the @code{-rpath} option.
595
596@kindex -s
597@kindex --strip-all
598@cindex strip all symbols
599@item -s
600@itemx --strip-all
601Omit all symbol information from the output file.
602
603@kindex -S
604@kindex --strip-debug
605@cindex strip debugger symbols
606@item -S
607@itemx --strip-debug
608Omit debugger symbol information (but not all symbols) from the output file.
609
610@kindex -t
611@kindex --trace
612@cindex input files, displaying
613@item -t
614@itemx --trace
615Print the names of the input files as @code{ld} processes them.
616
617@kindex -T @var{script}
618@kindex --script=@var{script}
619@cindex script files
af54556a
ILT
620@item -T @var{scriptfile}
621@itemx --script=@var{scriptfile}
622Use @var{scriptfile} as the linker script. This script replaces
623@code{ld}'s default linker script (rather than adding to it), so
cc28f8fb 624@var{commandfile} must specify everything necessary to describe the
af54556a 625output file. You must use this option if you want to use a command
cc28f8fb 626which can only appear once in a linker script, such as the
af54556a
ILT
627@code{SECTIONS} or @code{MEMORY} command. @xref{Scripts}. If
628@var{scriptfile} does not exist in the current directory, @code{ld}
629looks for it in the directories specified by any preceding @samp{-L}
630options. Multiple @samp{-T} options accumulate.
67afbcea
DE
631
632@kindex -u @var{symbol}
633@kindex --undefined=@var{symbol}
634@cindex undefined symbol
635@item -u @var{symbol}
636@itemx --undefined=@var{symbol}
b2529df1
ILT
637Force @var{symbol} to be entered in the output file as an undefined
638symbol. Doing this may, for example, trigger linking of additional
639modules from standard libraries. @samp{-u} may be repeated with
640different option arguments to enter additional undefined symbols. This
641option is equivalent to the @code{EXTERN} linker script command.
67afbcea
DE
642
643@kindex -v
644@kindex -V
645@kindex --version
646@cindex version
647@item -v
648@itemx --version
649@itemx -V
650Display the version number for @code{ld}. The @code{-V} option also
651lists the supported emulations.
652
653@kindex -x
654@kindex --discard-all
655@cindex deleting local symbols
656@item -x
657@itemx --discard-all
658Delete all local symbols.
659
660@kindex -X
661@kindex --discard-locals
662@cindex local symbols, deleting
663@cindex L, deleting symbols beginning
664@item -X
665@itemx --discard-locals
666Delete all temporary local symbols. For most targets, this is all local
667symbols whose names begin with @samp{L}.
668
669@kindex -y @var{symbol}
670@kindex --trace-symbol=@var{symbol}
671@cindex symbol tracing
672@item -y @var{symbol}
673@itemx --trace-symbol=@var{symbol}
674Print the name of each linked file in which @var{symbol} appears. This
675option may be given any number of times. On many systems it is necessary
676to prepend an underscore.
677
678This option is useful when you have an undefined symbol in your link but
679don't know where the reference is coming from.
680
681@kindex -Y @var{path}
682@item -Y @var{path}
683Add @var{path} to the default library search path. This option exists
684for Solaris compatibility.
685
686@kindex -z @var{keyword}
687@item -z @var{keyword}
688This option is ignored for Solaris compatibility.
689
690@kindex -(
691@cindex groups of archives
692@item -( @var{archives} -)
693@itemx --start-group @var{archives} --end-group
694The @var{archives} should be a list of archive files. They may be
695either explicit file names, or @samp{-l} options.
696
697The specified archives are searched repeatedly until no new undefined
698references are created. Normally, an archive is searched only once in
699the order that it is specified on the command line. If a symbol in that
700archive is needed to resolve an undefined symbol referred to by an
701object in an archive that appears later on the command line, the linker
702would not be able to resolve that reference. By grouping the archives,
703they all be searched repeatedly until all possible references are
704resolved.
705
706Using this option has a significant performance cost. It is best to use
707it only when there are unavoidable circular references between two or
708more archives.
709
710@kindex -assert @var{keyword}
711@item -assert @var{keyword}
712This option is ignored for SunOS compatibility.
713
714@kindex -Bdynamic
715@kindex -dy
716@kindex -call_shared
717@item -Bdynamic
718@itemx -dy
719@itemx -call_shared
720Link against dynamic libraries. This is only meaningful on platforms
721for which shared libraries are supported. This option is normally the
722default on such platforms. The different variants of this option are
723for compatibility with various systems. You may use this option
724multiple times on the command line: it affects library searching for
725@code{-l} options which follow it.
726
727@kindex -Bstatic
728@kindex -dn
729@kindex -non_shared
730@kindex -static
731@item -Bstatic
732@itemx -dn
733@itemx -non_shared
734@itemx -static
735Do not link against shared libraries. This is only meaningful on
736platforms for which shared libraries are supported. The different
737variants of this option are for compatibility with various systems. You
738may use this option multiple times on the command line: it affects
739library searching for @code{-l} options which follow it.
740
741@kindex -Bsymbolic
742@item -Bsymbolic
743When creating a shared library, bind references to global symbols to the
744definition within the shared library, if any. Normally, it is possible
745for a program linked against a shared library to override the definition
746within the shared library. This option is only meaningful on ELF
747platforms which support shared libraries.
748
86bc0974
ILT
749@cindex cross reference table
750@kindex --cref
751@item --cref
752Output a cross reference table. If a linker map file is being
753generated, the cross reference table is printed to the map file.
754Otherwise, it is printed on the standard output.
755
756The format of the table is intentionally simple, so that it may be
757easily processed by a script if necessary. The symbols are printed out,
758sorted by name. For each symbol, a list of file names is given. If the
759symbol is defined, the first file listed is the location of the
760definition. The remaining files contain references to the symbol.
761
67afbcea
DE
762@cindex symbols, from command line
763@kindex --defsym @var{symbol}=@var{exp}
764@item --defsym @var{symbol}=@var{expression}
765Create a global symbol in the output file, containing the absolute
766address given by @var{expression}. You may use this option as many
767times as necessary to define multiple symbols in the command line. A
768limited form of arithmetic is supported for the @var{expression} in this
769context: you may give a hexadecimal constant or the name of an existing
770symbol, or use @code{+} and @code{-} to add or subtract hexadecimal
771constants or symbols. If you need more elaborate expressions, consider
af54556a
ILT
772using the linker command language from a script (@pxref{Assignments,,
773Assignment: Symbol Definitions}). @emph{Note:} there should be no white
774space between @var{symbol}, the equals sign (``@key{=}''), and
67afbcea
DE
775@var{expression}.
776
777@cindex dynamic linker, from command line
778@kindex --dynamic-linker @var{file}
779@item --dynamic-linker @var{file}
780Set the name of the dynamic linker. This is only meaningful when
781generating dynamically linked ELF executables. The default dynamic
782linker is normally correct; don't use this unless you know what you are
783doing.
784
785@cindex big-endian objects
786@cindex endianness
787@kindex -EB
788@item -EB
789Link big-endian objects. This affects the default output format.
790
791@cindex little-endian objects
792@kindex -EL
793@item -EL
794Link little-endian objects. This affects the default output format.
795
796@cindex MIPS embedded PIC code
9fde46a4
ILT
797@kindex --embedded-relocs
798@item --embedded-relocs
67afbcea
DE
799This option is only meaningful when linking MIPS embedded PIC code,
800generated by the -membedded-pic option to the @sc{gnu} compiler and
801assembler. It causes the linker to create a table which may be used at
802runtime to relocate any data which was statically initialized to pointer
803values. See the code in testsuite/ld-empic for details.
804
805@cindex help
806@cindex usage
807@kindex --help
808@item --help
809Print a summary of the command-line options on the standard output and exit.
810
67afbcea
DE
811@kindex -Map
812@item -Map @var{mapfile}
af54556a
ILT
813Print a link map to the file @var{mapfile}. See the description of the
814@samp{-M} option, above.
b4d4e8e3 815
4551e108 816@cindex memory usage
67afbcea
DE
817@kindex --no-keep-memory
818@item --no-keep-memory
4551e108
ILT
819@code{ld} normally optimizes for speed over memory usage by caching the
820symbol tables of input files in memory. This option tells @code{ld} to
821instead optimize for memory usage, by rereading the symbol tables as
822necessary. This may be required if @code{ld} runs out of memory space
823while linking a large executable.
824
5a59e34d
ILT
825@kindex --no-warn-mismatch
826@item --no-warn-mismatch
827Normally @code{ld} will give an error if you try to link together input
828files that are mismatched for some reason, perhaps because they have
829been compiled for different processors or for different endiannesses.
830This option tells @code{ld} that it should silently permit such possible
831errors. This option should only be used with care, in cases when you
832have taken some special action that ensures that the linker errors are
833inappropriate.
834
67afbcea
DE
835@kindex --no-whole-archive
836@item --no-whole-archive
837Turn off the effect of the @code{--whole-archive} option for subsequent
838archive files.
839
840@cindex output file after errors
841@kindex --noinhibit-exec
842@item --noinhibit-exec
843Retain the executable output file whenever it is still usable.
844Normally, the linker will not produce an output file if it encounters
845errors during the link process; it exits without writing an output file
846when it issues any error whatsoever.
f22eee08 847
7f9ae73e 848@ifclear SingleFormat
9fde46a4
ILT
849@kindex --oformat
850@item --oformat @var{output-format}
1fb57a5d
RP
851@code{ld} may be configured to support more than one kind of object
852file. If your @code{ld} is configured this way, you can use the
9fde46a4 853@samp{--oformat} option to specify the binary format for the output
1fb57a5d
RP
854object file. Even when @code{ld} is configured to support alternative
855object formats, you don't usually need to specify this, as @code{ld}
856should be configured to produce as a default output format the most
857usual format on each machine. @var{output-format} is a text string, the
858name of a particular format supported by the BFD libraries. (You can
859list the available binary formats with @samp{objdump -i}.) The script
860command @code{OUTPUT_FORMAT} can also specify the output format, but
861this option overrides it. @xref{BFD}.
7f9ae73e 862@end ifclear
346535cc 863
67afbcea
DE
864@kindex -qmagic
865@item -qmagic
866This option is ignored for Linux compatibility.
c653b370 867
67afbcea
DE
868@kindex -Qy
869@item -Qy
870This option is ignored for SVR4 compatibility.
c653b370 871
67afbcea 872@kindex --relax
1c48127e
RP
873@cindex synthesizing linker
874@cindex relaxing addressing modes
67afbcea 875@item --relax
1fb57a5d
RP
876An option with machine dependent effects.
877@ifset GENERIC
67afbcea 878This option is only supported on a few targets.
1fb57a5d 879@end ifset
ec40bbb8
DM
880@ifset H8300
881@xref{H8/300,,@code{ld} and the H8/300}.
882@end ifset
1fb57a5d
RP
883@ifset I960
884@xref{i960,, @code{ld} and the Intel 960 family}.
885@end ifset
1c48127e 886
e2ebb8ed 887
67afbcea
DE
888On some platforms, the @samp{--relax} option performs global
889optimizations that become possible when the linker resolves addressing
890in the program, such as relaxing address modes and synthesizing new
891instructions in the output object file.
1c48127e 892
e2ebb8ed 893On some platforms these link time global optimizations may make symbolic
71b012a8
RH
894debugging of the resulting executable impossible.
895@ifset GENERIC
896This is known to be
e2ebb8ed 897the case for the Matsushita MN10200 and MN10300 family of processors.
71b012a8 898@end ifset
e2ebb8ed 899
1fb57a5d 900@ifset GENERIC
9fde46a4
ILT
901On platforms where this is not supported, @samp{--relax} is accepted,
902but ignored.
1fb57a5d 903@end ifset
1c48127e 904
7c8fab26
RP
905@cindex retaining specified symbols
906@cindex stripping all but some symbols
907@cindex symbols, retaining selectively
67afbcea 908@item --retain-symbols-file @var{filename}
7c8fab26
RP
909Retain @emph{only} the symbols listed in the file @var{filename},
910discarding all others. @var{filename} is simply a flat file, with one
911symbol name per line. This option is especially useful in environments
912@ifset GENERIC
913(such as VxWorks)
914@end ifset
915where a large global symbol table is accumulated gradually, to conserve
916run-time memory.
917
9fde46a4 918@samp{--retain-symbols-file} does @emph{not} discard undefined symbols,
7c8fab26
RP
919or symbols needed for relocations.
920
9fde46a4 921You may only specify @samp{--retain-symbols-file} once in the command
7c8fab26
RP
922line. It overrides @samp{-s} and @samp{-S}.
923
a1ad915d
ILT
924@ifset GENERIC
925@item -rpath @var{dir}
926@cindex runtime library search path
927@kindex -rpath
0b0642d6
ILT
928Add a directory to the runtime library search path. This is used when
929linking an ELF executable with shared objects. All @code{-rpath}
930arguments are concatenated and passed to the runtime linker, which uses
e54bf1c1
ILT
931them to locate shared objects at runtime. The @code{-rpath} option is
932also used when locating shared objects which are needed by shared
933objects explicitly included in the link; see the description of the
c653b370
ILT
934@code{-rpath-link} option. If @code{-rpath} is not used when linking an
935ELF executable, the contents of the environment variable
936@code{LD_RUN_PATH} will be used if it is defined.
0b0642d6
ILT
937
938The @code{-rpath} option may also be used on SunOS. By default, on
939SunOS, the linker will form a runtime search patch out of all the
e54bf1c1 940@code{-L} options it is given. If a @code{-rpath} option is used, the
0b0642d6
ILT
941runtime search path will be formed exclusively using the @code{-rpath}
942options, ignoring the @code{-L} options. This can be useful when using
943gcc, which adds many @code{-L} options which may be on NFS mounted
944filesystems.
c653b370
ILT
945
946For compatibility with other ELF linkers, if the @code{-R} option is
947followed by a directory name, rather than a file name, it is treated as
948the @code{-rpath} option.
a1ad915d
ILT
949@end ifset
950
e54bf1c1
ILT
951@ifset GENERIC
952@cindex link-time runtime library search path
953@kindex -rpath-link
954@item -rpath-link @var{DIR}
955When using ELF or SunOS, one shared library may require another. This
956happens when an @code{ld -shared} link includes a shared library as one
957of the input files.
958
959When the linker encounters such a dependency when doing a non-shared,
af54556a 960non-relocatable link, it will automatically try to locate the required
e54bf1c1
ILT
961shared library and include it in the link, if it is not included
962explicitly. In such a case, the @code{-rpath-link} option
963specifies the first set of directories to search. The
964@code{-rpath-link} option may specify a sequence of directory names
965either by specifying a list of names separated by colons, or by
966appearing multiple times.
967
968The linker uses the following search paths to locate required shared
969libraries.
970@enumerate
971@item
972Any directories specified by @code{-rpath-link} options.
973@item
974Any directories specified by @code{-rpath} options. The difference
975between @code{-rpath} and @code{-rpath-link} is that directories
976specified by @code{-rpath} options are included in the executable and
977used at runtime, whereas the @code{-rpath-link} option is only effective
978at link time.
979@item
c653b370
ILT
980On an ELF system, if the @code{-rpath} and @code{rpath-link} options
981were not used, search the contents of the environment variable
982@code{LD_RUN_PATH}.
983@item
e54bf1c1
ILT
984On SunOS, if the @code{-rpath} option was not used, search any
985directories specified using @code{-L} options.
986@item
987For a native linker, the contents of the environment variable
988@code{LD_LIBRARY_PATH}.
989@item
990The default directories, normally @file{/lib} and @file{/usr/lib}.
6581c418
ILT
991@item
992For a native linker on an ELF system, if the file @file{/etc/ld.so.conf}
993exists, the list of directories found in that file.
e54bf1c1
ILT
994@end enumerate
995
996If the required shared library is not found, the linker will issue a
997warning and continue with the link.
998@end ifset
999
67afbcea
DE
1000@kindex -shared
1001@kindex -Bshareable
4551e108 1002@item -shared
67afbcea 1003@itemx -Bshareable
4551e108 1004@cindex shared libraries
67afbcea
DE
1005Create a shared library. This is currently only supported on ELF, XCOFF
1006and SunOS platforms. On SunOS, the linker will automatically create a
e54bf1c1
ILT
1007shared library if the @code{-e} option is not used and there are
1008undefined symbols in the link.
4551e108 1009
67afbcea
DE
1010@item --sort-common
1011@kindex --sort-common
1012This option tells @code{ld} to sort the common symbols by size when it
1013places them in the appropriate output sections. First come all the one
1014byte symbols, then all the two bytes, then all the four bytes, and then
1015everything else. This is to prevent gaps between symbols due to
1016alignment constraints.
1017
1018@kindex --split-by-file
1019@item --split-by-file
1020Similar to @code{--split-by-reloc} but creates a new output section for
1021each input file.
1022
1023@kindex --split-by-reloc
1024@item --split-by-reloc @var{count}
1025Trys to creates extra sections in the output file so that no single
1026output section in the file contains more than @var{count} relocations.
1027This is useful when generating huge relocatable for downloading into
1028certain real time kernels with the COFF object file format; since COFF
1029cannot represent more than 65535 relocations in a single section. Note
1030that this will fail to work with object file formats which do not
1031support arbitrary sections. The linker will not split up individual
1032input sections for redistribution, so if a single input section contains
01bc8f35
ILT
1033more than @var{count} relocations one output section will contain that
1034many relocations.
1035
67afbcea
DE
1036@kindex --stats
1037@item --stats
1038Compute and display statistics about the operation of the linker, such
1039as execution time and memory usage.
f22eee08 1040
9fde46a4 1041@kindex --traditional-format
c96386c4 1042@cindex traditional format
9fde46a4 1043@item --traditional-format
c96386c4
ILT
1044For some targets, the output of @code{ld} is different in some ways from
1045the output of some existing linker. This switch requests @code{ld} to
1046use the traditional format instead.
1047
1048@cindex dbx
1049For example, on SunOS, @code{ld} combines duplicate entries in the
1050symbol string table. This can reduce the size of an output file with
1051full debugging information by over 30 percent. Unfortunately, the SunOS
1052@code{dbx} program can not read the resulting program (@code{gdb} has no
9fde46a4 1053trouble). The @samp{--traditional-format} switch tells @code{ld} to not
c96386c4
ILT
1054combine duplicate entries.
1055
67afbcea
DE
1056@kindex -Tbss @var{org}
1057@kindex -Tdata @var{org}
1058@kindex -Ttext @var{org}
1059@cindex segment origins, cmd line
1060@item -Tbss @var{org}
1061@itemx -Tdata @var{org}
1062@itemx -Ttext @var{org}
1063Use @var{org} as the starting address for---respectively---the
1064@code{bss}, @code{data}, or the @code{text} segment of the output file.
1065@var{org} must be a single hexadecimal integer;
1066for compatibility with other linkers, you may omit the leading
1067@samp{0x} usually associated with hexadecimal values.
f22eee08 1068
2c5c0674 1069@kindex -Ur
b4d4e8e3 1070@cindex constructors
d4e5e3c3 1071@item -Ur
b4d4e8e3 1072For anything other than C++ programs, this option is equivalent to
ec40bbb8
DM
1073@samp{-r}: it generates relocatable output---i.e., an output file that can in
1074turn serve as input to @code{ld}. When linking C++ programs, @samp{-Ur}
1fb57a5d 1075@emph{does} resolve references to constructors, unlike @samp{-r}.
3e27cc11 1076It does not work to use @samp{-Ur} on files that were themselves linked
1fb57a5d 1077with @samp{-Ur}; once the constructor table has been built, it cannot
3e27cc11
DM
1078be added to. Use @samp{-Ur} only for the last partial link, and
1079@samp{-r} for the others.
b4d4e8e3 1080
01bc8f35 1081@kindex --verbose
cf2e4f5f 1082@cindex verbose
01bc8f35 1083@item --verbose
1fb57a5d 1084Display the version number for @code{ld} and list the linker emulations
cf2e4f5f
ILT
1085supported. Display which input files can and cannot be opened. Display
1086the linker script if using a default builtin script.
8ddef552 1087
5a59e34d
ILT
1088@kindex --version-script=@var{version-scriptfile}
1089@cindex version script, symbol versions
1090@itemx --version-script=@var{version-scriptfile}
1091Specify the name of a version script to the linker. This is typically
1092used when creating shared libraries to specify additional information
1093about the version heirarchy for the library being created. This option
1094is only meaningful on ELF platforms which support shared libraries.
af54556a 1095@xref{VERSION}.
5a59e34d 1096
458fc056 1097@kindex --warn-comon
7f9ae73e
RP
1098@cindex warnings, on combining symbols
1099@cindex combining symbols, warnings on
458fc056 1100@item --warn-common
2a28d8b0
DM
1101Warn when a common symbol is combined with another common symbol or with
1102a symbol definition. Unix linkers allow this somewhat sloppy practice,
1103but linkers on some other operating systems do not. This option allows
1104you to find potential problems from combining global symbols.
1cd4cca9
DM
1105Unfortunately, some C libraries use this practice, so you may get some
1106warnings about symbols in the libraries as well as in your programs.
2a28d8b0
DM
1107
1108There are three kinds of global symbols, illustrated here by C examples:
1109
1110@table @samp
1111@item int i = 1;
1112A definition, which goes in the initialized data section of the output
1113file.
1114
1115@item extern int i;
1116An undefined reference, which does not allocate space.
1117There must be either a definition or a common symbol for the
1118variable somewhere.
1119
1120@item int i;
1121A common symbol. If there are only (one or more) common symbols for a
1122variable, it goes in the uninitialized data area of the output file.
1123The linker merges multiple common symbols for the same variable into a
1124single symbol. If they are of different sizes, it picks the largest
1125size. The linker turns a common symbol into a declaration, if there is
1126a definition of the same variable.
1127@end table
1128
458fc056
ILT
1129The @samp{--warn-common} option can produce five kinds of warnings.
1130Each warning consists of a pair of lines: the first describes the symbol
1131just encountered, and the second describes the previous symbol
1132encountered with the same name. One or both of the two symbols will be
1133a common symbol.
2a28d8b0
DM
1134
1135@enumerate
1136@item
1137Turning a common symbol into a reference, because there is already a
1138definition for the symbol.
1139@smallexample
8920addc
RP
1140@var{file}(@var{section}): warning: common of `@var{symbol}'
1141 overridden by definition
2a28d8b0
DM
1142@var{file}(@var{section}): warning: defined here
1143@end smallexample
1144
1145@item
1146Turning a common symbol into a reference, because a later definition for
1147the symbol is encountered. This is the same as the previous case,
1148except that the symbols are encountered in a different order.
1149@smallexample
8920addc
RP
1150@var{file}(@var{section}): warning: definition of `@var{symbol}'
1151 overriding common
2a28d8b0
DM
1152@var{file}(@var{section}): warning: common is here
1153@end smallexample
1154
1155@item
1156Merging a common symbol with a previous same-sized common symbol.
1157@smallexample
8920addc
RP
1158@var{file}(@var{section}): warning: multiple common
1159 of `@var{symbol}'
2a28d8b0
DM
1160@var{file}(@var{section}): warning: previous common is here
1161@end smallexample
1162
1163@item
1164Merging a common symbol with a previous larger common symbol.
1165@smallexample
8920addc
RP
1166@var{file}(@var{section}): warning: common of `@var{symbol}'
1167 overridden by larger common
2a28d8b0
DM
1168@var{file}(@var{section}): warning: larger common is here
1169@end smallexample
1170
1171@item
1172Merging a common symbol with a previous smaller common symbol. This is
1173the same as the previous case, except that the symbols are
1174encountered in a different order.
1175@smallexample
8920addc
RP
1176@var{file}(@var{section}): warning: common of `@var{symbol}'
1177 overriding smaller common
2a28d8b0
DM
1178@var{file}(@var{section}): warning: smaller common is here
1179@end smallexample
1180@end enumerate
1181
458fc056
ILT
1182@kindex --warn-constructors
1183@item --warn-constructors
0b0642d6
ILT
1184Warn if any global constructors are used. This is only useful for a few
1185object file formats. For formats like COFF or ELF, the linker can not
1186detect the use of global constructors.
1187
458fc056
ILT
1188@kindex --warn-multiple-gp
1189@item --warn-multiple-gp
4b7d2399
ILT
1190Warn if multiple global pointer values are required in the output file.
1191This is only meaningful for certain processors, such as the Alpha.
1192Specifically, some processors put large-valued constants in a special
1193section. A special register (the global pointer) points into the middle
1194of this section, so that constants can be loaded efficiently via a
1195base-register relative addressing mode. Since the offset in
1196base-register relative mode is fixed and relatively small (e.g., 16
1197bits), this limits the maximum size of the constant pool. Thus, in
1198large programs, it is often necessary to use multiple global pointer
1199values in order to be able to address all possible constants. This
1200option causes a warning to be issued whenever this case occurs.
1201
458fc056 1202@kindex --warn-once
01bc8f35
ILT
1203@cindex warnings, on undefined symbols
1204@cindex undefined symbols, warnings on
458fc056 1205@item --warn-once
01bc8f35
ILT
1206Only warn once for each undefined symbol, rather than once per module
1207which refers to it.
1208
458fc056
ILT
1209@kindex --warn-section-align
1210@cindex warnings, on section alignment
1211@cindex section alignment, warnings on
1212@item --warn-section-align
1213Warn if the address of an output section is changed because of
1214alignment. Typically, the alignment will be set by an input section.
1215The address will only be changed if it not explicitly specified; that
1216is, if the @code{SECTIONS} command does not specify a start address for
1217the section (@pxref{SECTIONS}).
1218
4551e108
ILT
1219@kindex --whole-archive
1220@cindex including an entire archive
4b7d2399 1221@item --whole-archive
3c8deccc
ILT
1222For each archive mentioned on the command line after the
1223@code{--whole-archive} option, include every object file in the archive
1224in the link, rather than searching the archive for the required object
1225files. This is normally used to turn an archive file into a shared
1226library, forcing every object to be included in the resulting shared
67afbcea 1227library. This option may be used more than once.
4551e108 1228
e3d73386
ILT
1229@kindex --wrap
1230@item --wrap @var{symbol}
1231Use a wrapper function for @var{symbol}. Any undefined reference to
1232@var{symbol} will be resolved to @code{__wrap_@var{symbol}}. Any
1233undefined reference to @code{__real_@var{symbol}} will be resolved to
1234@var{symbol}.
1235
1236This can be used to provide a wrapper for a system function. The
1237wrapper function should be called @code{__wrap_@var{symbol}}. If it
1238wishes to call the system function, it should call
1239@code{__real_@var{symbol}}.
1240
1241Here is a trivial example:
1242
1243@smallexample
1244void *
1245__wrap_malloc (int c)
1246@{
1247 printf ("malloc called with %ld\n", c);
1248 return __real_malloc (c);
1249@}
1250@end smallexample
1251
1252If you link other code with this file using @code{--wrap malloc}, then
1253all calls to @code{malloc} will call the function @code{__wrap_malloc}
1254instead. The call to @code{__real_malloc} in @code{__wrap_malloc} will
1255call the real @code{malloc} function.
1256
1257You may wish to provide a @code{__real_malloc} function as well, so that
1258links without the @code{--wrap} option will succeed. If you do this,
1259you should not put the definition of @code{__real_malloc} in the same
1260file as @code{__wrap_malloc}; if you do, the assembler may resolve the
1261call before the linker has a chance to wrap it to @code{malloc}.
1262
f22eee08 1263@end table
b4d4e8e3 1264
ec40bbb8
DM
1265@ifset UsesEnvVars
1266@node Environment
2c5c0674
RP
1267@section Environment Variables
1268
f4175166
ILT
1269You can change the behavior of @code{ld} with the environment variables
1270@code{GNUTARGET} and @code{LDEMULATION}.
2c5c0674
RP
1271
1272@kindex GNUTARGET
1273@cindex default input format
1274@code{GNUTARGET} determines the input-file object format if you don't
9fde46a4 1275use @samp{-b} (or its synonym @samp{--format}). Its value should be one
2c5c0674 1276of the BFD names for an input format (@pxref{BFD}). If there is no
246504a5 1277@code{GNUTARGET} in the environment, @code{ld} uses the natural format
9fde46a4
ILT
1278of the target. If @code{GNUTARGET} is set to @code{default} then BFD
1279attempts to discover the input format by examining binary input files;
1280this method often succeeds, but there are potential ambiguities, since
1281there is no method of ensuring that the magic number used to specify
1282object-file formats is unique. However, the configuration procedure for
1283BFD on each system places the conventional format for that system first
1284in the search-list, so ambiguities are resolved in favor of convention.
f4175166
ILT
1285
1286@kindex LDEMULATION
1287@cindex default emulation
1288@cindex emulation, default
1289@code{LDEMULATION} determines the default emulation if you don't use the
1290@samp{-m} option. The emulation can affect various aspects of linker
1291behaviour, particularly the default linker script. You can list the
1292available emulations with the @samp{--verbose} or @samp{-V} options. If
1293the @samp{-m} option is not used, and the @code{LDEMULATION} environment
1294variable is not defined, the default emulation depends upon how the
1295linker was configured.
ec40bbb8 1296@end ifset
2c5c0674 1297
af54556a
ILT
1298@node Scripts
1299@chapter Linker Scripts
f22eee08 1300
af54556a
ILT
1301@cindex scripts
1302@cindex linker scripts
2c5c0674 1303@cindex command files
af54556a
ILT
1304Every link is controlled by a @dfn{linker script}. This script is
1305written in the linker command language.
1306
1307The main purpose of the linker script is to describe how the sections in
1308the input files should be mapped into the output file, and to control
1309the memory layout of the output file. Most linker scripts do nothing
1310more than this. However, when necessary, the linker script can also
1311direct the linker to perform many other operations, using the commands
1312described below.
1313
1314The linker always uses a linker script. If you do not supply one
1315yourself, the linker will use a default script that is compiled into the
1316linker executable. You can use the @samp{--verbose} command line option
1317to display the default linker script. Certain command line options,
1318such as @samp{-r} or @samp{-N}, will affect the default linker script.
1319
1320You may supply your own linker script by using the @samp{-T} command
1321line option. When you do this, your linker script will replace the
1322default linker script.
1323
1324You may also use linker scripts implicitly by naming them as input files
f8cf2baa
ILT
1325to the linker, as though they were files to be linked. @xref{Implicit
1326Linker Scripts}.
f22eee08 1327
af54556a
ILT
1328@menu
1329* Basic Script Concepts:: Basic Linker Script Concepts
1330* Script Format:: Linker Script Format
1331* Simple Example:: Simple Linker Script Example
1332* Simple Commands:: Simple Linker Script Commands
1333* Assignments:: Assigning Values to Symbols
1334* SECTIONS:: SECTIONS Command
1335* MEMORY:: MEMORY Command
1336* PHDRS:: PHDRS Command
1337* VERSION:: VERSION Command
1338* Expressions:: Expressions in Linker Scripts
f8cf2baa 1339* Implicit Linker Scripts:: Implicit Linker Scripts
af54556a
ILT
1340@end menu
1341
1342@node Basic Script Concepts
1343@section Basic Linker Script Concepts
1344@cindex linker script concepts
1345We need to define some basic concepts and vocabulary in order to
1346describe the linker script language.
1347
1348The linker combines input files into a single output file. The output
1349file and each input file are in a special data format known as an
1350@dfn{object file format}. Each file is called an @dfn{object file}.
1351The output file is often called an @dfn{executable}, but for our
1352purposes we will also call it an object file. Each object file has,
1353among other things, a list of @dfn{sections}. We sometimes refer to a
1354section in an input file as an @dfn{input section}; similarly, a section
1355in the output file is an @dfn{output section}.
1356
1357Each section in an object file has a name and a size. Most sections
1358also have an associated block of data, known as the @dfn{section
1359contents}. A section may be marked as @dfn{loadable}, which mean that
1360the contents should be loaded into memory when the output file is run.
1361A section with no contents may be @dfn{allocatable}, which means that an
1362area in memory should be set aside, but nothing in particular should be
1363loaded there (in some cases this memory must be zeroed out). A section
1364which is neither loadable nor allocatable typically contains some sort
1365of debugging information.
1366
1367Every loadable or allocatable output section has two addresses. The
1368first is the @dfn{VMA}, or virtual memory address. This is the address
36a8f215 1369the section will have when the output file is run. The second is the
af54556a
ILT
1370@dfn{LMA}, or load memory address. This is the address at which the
1371section will be loaded. In most cases the two addresses will be the
1372same. An example of when they might be different is when a data section
1373is loaded into ROM, and then copied into RAM when the program starts up
1374(this technique is often used to initialize global variables in a ROM
1375based system). In this case the ROM address would be the LMA, and the
1376RAM address would be the VMA.
1377
1378You can see the sections in an object file by using the @code{objdump}
1379program with the @samp{-h} option.
1380
1381Every object file also has a list of @dfn{symbols}, known as the
1382@dfn{symbol table}. A symbol may be defined or undefined. Each symbol
1383has a name, and each defined symbol has an address, among other
1384information. If you compile a C or C++ program into an object file, you
1385will get a defined symbol for every defined function and global or
1386static variable. Every undefined function or global variable which is
1387referenced in the input file will become an undefined symbol.
1388
1389You can see the symbols in an object file by using the @code{nm}
1390program, or by using the @code{objdump} program with the @samp{-t}
1391option.
1392
1393@node Script Format
1394@section Linker Script Format
1395@cindex linker script format
1396Linker scripts are text files.
1397
1398You write a linker script as a series of commands. Each command is
1399either a keyword, possibly followed by arguments, or an assignment to a
1400symbol. You may separate commands using semicolons. Whitespace is
1401generally ignored.
1402
1403Strings such as file or format names can normally be entered directly.
1404If the file name contains a character such as a comma which would
1405otherwise serve to separate file names, you may put the file name in
1406double quotes. There is no way to use a double quote character in a
1407file name.
1408
1409You may include comments in linker scripts just as in C, delimited by
1410@samp{/*} and @samp{*/}. As in C, comments are syntactically equivalent
1411to whitespace.
1412
1413@node Simple Example
1414@section Simple Linker Script Example
1415@cindex linker script example
1416@cindex example of linker script
1417Many linker scripts are fairly simple.
1418
1419The simplest possible linker script has just one command:
1420@samp{SECTIONS}. You use the @samp{SECTIONS} command to describe the
1421memory layout of the output file.
1422
1423The @samp{SECTIONS} command is a powerful command. Here we will
1424describe a simple use of it. Let's assume your program consists only of
1425code, initialized data, and uninitialized data. These will be in the
1426@samp{.text}, @samp{.data}, and @samp{.bss} sections, respectively.
1427Let's assume further that these are the only sections which appear in
1428your input files.
1429
1430For this example, let's say that the code should be loaded at address
14310x10000, and that the data should start at address 0x8000000. Here is a
1432linker script which will do that:
1433@smallexample
1434SECTIONS
1435@{
1436 . = 0x10000;
1437 .text : @{ *(.text) @}
1438 . = 0x8000000;
1439 .data : @{ *(.data) @}
1440 .bss : @{ *(.bss) @}
1441@}
1442@end smallexample
f9c5c231 1443
af54556a
ILT
1444You write the @samp{SECTIONS} command as the keyword @samp{SECTIONS},
1445followed by a series of symbol assignments and output section
1446descriptions enclosed in curly braces.
1447
1448The first line in the above example sets the special symbol @samp{.},
1449which is the location counter. If you do not specify the address of an
1450output section in some other way (other ways are described later), the
1451address is set from the current value of the location counter. The
1452location counter is then incremented by the size of the output section.
1453
36a8f215
ILT
1454The first line inside the @samp{SECTIONS} command of the above example
1455sets the value of the special symbol @samp{.}, which is the location
1456counter. If you do not specify the address of an output section in some
1457other way (other ways are described later), the address is set from the
1458current value of the location counter. The location counter is then
1459incremented by the size of the output section. At the start of the
1460@samp{SECTIONS} command, the location counter has the value @samp{0}.
1461
af54556a
ILT
1462The second line defines an output section, @samp{.text}. The colon is
1463required syntax which may be ignored for now. Within the curly braces
1464after the output section name, you list the names of the input sections
1465which should be placed into this output section. The @samp{*} is a
1466wildcard which matches any file name. The expression @samp{*(.text)}
1467means all @samp{.text} input sections in all input files.
1468
1469Since the location counter is @samp{0x10000} when the output section
1470@samp{.text} is defined, the linker will set the address of the
1471@samp{.text} section in the output file to be @samp{0x10000}.
1472
1473The remaining lines define the @samp{.data} and @samp{.bss} sections in
36a8f215
ILT
1474the output file. The linker will place the @samp{.data} output section
1475at address @samp{0x8000000}. After the linker places the @samp{.data}
1476output section, the value of the location counter will be
1477@samp{0x8000000} plus the size of the @samp{.data} output section. The
1478effect is that the linker will place the @samp{.bss} output section
1479immediately after the @samp{.data} output section in memory
1480
1481The linker will ensure that each output section has the required
1482alignment, by increasing the location counter if necessary. In this
1483example, the specified addresses for the @samp{.text} and @samp{.data}
1484sections will probably satisfy any alignment constraints, but the linker
1485may have to create a small gap between the @samp{.data} and @samp{.bss}
1486sections.
af54556a
ILT
1487
1488That's it! That's a simple and complete linker script.
1489
1490@node Simple Commands
1491@section Simple Linker Script Commands
1492@cindex linker script simple commands
1493In this section we describe the simple linker script commands.
2c5c0674 1494
2c5c0674 1495@menu
af54556a
ILT
1496* Entry Point:: Setting the entry point
1497* File Commands:: Commands dealing with files
1498@ifclear SingleFormat
1499* Format Commands:: Commands dealing with object file formats
1500@end ifclear
1501
1502* Miscellaneous Commands:: Other linker script commands
2c5c0674
RP
1503@end menu
1504
af54556a
ILT
1505@node Entry Point
1506@subsection Setting the entry point
1507@kindex ENTRY(@var{symbol})
1508@cindex start of execution
1509@cindex first instruction
1510@cindex entry point
1511The first instruction to execute in a program is called the @dfn{entry
1512point}. You can use the @code{ENTRY} linker script command to set the
1513entry point. The argument is a symbol name:
1514@smallexample
1515ENTRY(@var{symbol})
1516@end smallexample
2c5c0674 1517
af54556a
ILT
1518There are several ways to set the entry point. The linker will set the
1519entry point by trying each of the following methods in order, and
1520stopping when one of them succeeds:
b4d4e8e3 1521@itemize @bullet
2c5c0674 1522@item
af54556a 1523the @samp{-e} @var{entry} command-line option;
2c5c0674 1524@item
af54556a 1525the @code{ENTRY(@var{symbol})} command in a linker script;
2c5c0674 1526@item
af54556a 1527the value of the symbol @code{start}, if defined;
2c5c0674 1528@item
af54556a 1529the address of the first byte of the @samp{.text} section, if present;
2c5c0674 1530@item
af54556a 1531The address @code{0}.
b4d4e8e3 1532@end itemize
f22eee08 1533
af54556a
ILT
1534@node File Commands
1535@subsection Commands dealing with files
1536@cindex linker script file commands
1537Several linker script commands deal with files.
f22eee08 1538
af54556a
ILT
1539@table @code
1540@item INCLUDE @var{filename}
1541@kindex INCLUDE @var{filename}
1542@cindex including a linker script
1543Include the linker script @var{filename} at this point. The file will
1544be searched for in the current directory, and in any directory specified
1545with the @code{-L} option. You can nest calls to @code{INCLUDE} up to
154610 levels deep.
f22eee08 1547
af54556a
ILT
1548@item INPUT(@var{file}, @var{file}, @dots{})
1549@itemx INPUT(@var{file} @var{file} @dots{})
1550@kindex INPUT(@var{files})
1551@cindex input files in linker scripts
1552@cindex input object files in linker scripts
1553@cindex linker script input object files
1554The @code{INPUT} command directs the linker to include the named files
1555in the link, as though they were named on the command line.
1556
1557For example, if you always want to include @file{subr.o} any time you do
1558a link, but you can't be bothered to put it on every link command line,
1559then you can put @samp{INPUT (subr.o)} in your linker script.
1560
1561In fact, if you like, you can list all of your input files in the linker
1562script, and then invoke the linker with nothing but a @samp{-T} option.
1563
1564The linker will first try to open the file in the current directory. If
1565it is not found, the linker will search through the archive library
1566search path. See the description of @samp{-L} in @ref{Options,,Command
1567Line Options}.
1568
1569If you use @samp{INPUT (-l@var{file})}, @code{ld} will transform the
1570name to @code{lib@var{file}.a}, as with the command line argument
1571@samp{-l}.
1572
1573When you use the @code{INPUT} command in an implicit linker script, the
1574files will be included in the link at the point at which the linker
1575script file is included. This can affect archive searching.
1576
1577@item GROUP(@var{file}, @var{file}, @dots{})
1578@itemx GROUP(@var{file} @var{file} @dots{})
1579@kindex GROUP(@var{files})
1580@cindex grouping input files
1581The @code{GROUP} command is like @code{INPUT}, except that the named
1582files should all be archives, and they are searched repeatedly until no
1583new undefined references are created. See the description of @samp{-(}
1584in @ref{Options,,Command Line Options}.
1585
1586@item OUTPUT(@var{filename})
1587@kindex OUTPUT(@var{filename})
1588@cindex output file name in linker scripot
1589The @code{OUTPUT} command names the output file. Using
1590@code{OUTPUT(@var{filename})} in the linker script is exactly like using
1591@samp{-o @var{filename}} on the command line (@pxref{Options,,Command
1592Line Options}). If both are used, the command line option takes
1593precedence.
1594
1595You can use the @code{OUTPUT} command to define a default name for the
1596output file other than the usual default of @file{a.out}.
1597
1598@item SEARCH_DIR(@var{path})
1599@kindex SEARCH_DIR(@var{path})
1600@cindex library search path in linker script
1601@cindex archive search path in linker script
1602@cindex search path in linker script
1603The @code{SEARCH_DIR} command adds @var{path} to the list of paths where
1604@code{ld} looks for archive libraries. Using
1605@code{SEARCH_DIR(@var{path})} is exactly like using @samp{-L @var{path}}
1606on the command line (@pxref{Options,,Command Line Options}). If both
1607are used, then the linker will search both paths. Paths specified using
1608the command line option are searched first.
1609
1610@item STARTUP(@var{filename})
1611@kindex STARTUP(@var{filename})
1612@cindex first input file
1613The @code{STARTUP} command is just like the @code{INPUT} command, except
1614that @var{filename} will become the first input file to be linked, as
1615though it were specified first on the command line. This may be useful
1616when using a system in which the entry point is always the start of the
1617first file.
1618@end table
f22eee08 1619
af54556a
ILT
1620@ifclear SingleFormat
1621@node Format Commands
1622@subsection Commands dealing with object file formats
1623A couple of linker script commands deal with object file formats.
f22eee08 1624
af54556a
ILT
1625@table @code
1626@item OUTPUT_FORMAT(@var{bfdname})
1627@itemx OUTPUT_FORMAT(@var{default}, @var{big}, @var{little})
1628@kindex OUTPUT_FORMAT(@var{bfdname})
1629@cindex output file format in linker script
1630The @code{OUTPUT_FORMAT} command names the BFD format to use for the
1631output file (@pxref{BFD}). Using @code{OUTPUT_FORMAT(@var{bfdname})} is
1632exactly like using @samp{-oformat @var{bfdname}} on the command line
1633(@pxref{Options,,Command Line Options}). If both are used, the command
1634line option takes precedence.
1635
1636You can use @code{OUTPUT_FORMAT} with three arguments to use different
1637formats based on the @samp{-EB} and @samp{-EL} command line options.
1638This permits the linker script to set the output format based on the
1639desired endianness.
1640
1641If neither @samp{-EB} nor @samp{-EL} are used, then the output format
1642will be the first argument, @var{default}. If @samp{-EB} is used, the
1643output format will be the second argument, @var{big}. If @samp{-EL} is
1644used, the output format will be the third argument, @var{little}.
1645
1646For example, the default linker script for the MIPS ELF target uses this
1647command:
c653b370 1648@smallexample
af54556a 1649OUTPUT_FORMAT(elf32-bigmips, elf32-bigmips, elf32-littlemips)
c653b370 1650@end smallexample
af54556a
ILT
1651This says that the default format for the output file is
1652@samp{elf32-bigmips}, but if the user uses the @samp{-EL} command line
1653option, the output file will be created in the @samp{elf32-littlemips}
1654format.
1655
1656@item TARGET(@var{bfdname})
1657@kindex TARGET(@var{bfdname})
1658@cindex input file format in linker script
1659The @code{TARGET} command names the BFD format to use when reading input
1660files. It affects subsequent @code{INPUT} and @code{GROUP} commands.
1661This command is like using @samp{-b @var{bfdname}} on the command line
1662(@pxref{Options,,Command Line Options}). If the @code{TARGET} command
1663is used but @code{OUTPUT_FORMAT} is not, then the last @code{TARGET}
1664command is also used to set the format for the output file. @xref{BFD}.
1665@end table
1666@end ifclear
b4d4e8e3 1667
af54556a
ILT
1668@node Miscellaneous Commands
1669@subsection Other linker script commands
1670There are a few other linker scripts commands.
b4d4e8e3 1671
af54556a 1672@table @code
c470f2eb
UD
1673@item ASSERT(@var{exp}, @var{message})
1674@kindex ASSERT
1675@cindex assertion in linker script
1676Ensure that @var{exp} is non-zero. If it is zero, then exit the linker
1677with an error code, and print @var{message}.
1678
b2529df1
ILT
1679@item EXTERN(@var{symbol} @var{symbol} @dots{})
1680@kindex EXTERN
1681@cindex undefined symbol in linker script
1682Force @var{symbol} to be entered in the output file as an undefined
1683symbol. Doing this may, for example, trigger linking of additional
1684modules from standard libraries. You may list several @var{symbol}s for
1685each @code{EXTERN}, and you may use @code{EXTERN} multiple times. This
1686command has the same effect as the @samp{-u} command-line option.
1687
af54556a
ILT
1688@item FORCE_COMMON_ALLOCATION
1689@kindex FORCE_COMMON_ALLOCATION
ed1cc83d 1690@cindex common allocation in linker script
af54556a
ILT
1691This command has the same effect as the @samp{-d} command-line option:
1692to make @code{ld} assign space to common symbols even if a relocatable
1693output file is specified (@samp{-r}).
1fb57a5d 1694
af54556a
ILT
1695@item NOCROSSREFS(@var{section} @var{section} @dots{})
1696@kindex NOCROSSREFS(@var{sections})
1697@cindex cross references
1698This command may be used to tell @code{ld} to issue an error about any
1699references among certain output sections.
b4d4e8e3 1700
af54556a
ILT
1701In certain types of programs, particularly on embedded systems when
1702using overlays, when one section is loaded into memory, another section
1703will not be. Any direct references between the two sections would be
1704errors. For example, it would be an error if code in one section called
1705a function defined in the other section.
d4e5e3c3 1706
af54556a
ILT
1707The @code{NOCROSSREFS} command takes a list of output section names. If
1708@code{ld} detects any cross references between the sections, it reports
1709an error and returns a non-zero exit status. Note that the
1710@code{NOCROSSREFS} command uses output section names, not input section
1711names.
f22eee08 1712
af54556a
ILT
1713@ifclear SingleFormat
1714@item OUTPUT_ARCH(@var{bfdarch})
1715@kindex OUTPUT_ARCH(@var{bfdarch})
1716@cindex machine architecture
1717@cindex architecture
1718Specify a particular output machine architecture. The argument is one
1719of the names used by the BFD library (@pxref{BFD}). You can see the
1720architecture of an object file by using the @code{objdump} program with
1721the @samp{-f} option.
1722@end ifclear
1723@end table
b4d4e8e3 1724
af54556a
ILT
1725@node Assignments
1726@section Assigning Values to Symbols
2c5c0674
RP
1727@cindex assignment in scripts
1728@cindex symbol definition, scripts
1729@cindex variables, defining
af54556a
ILT
1730You may assign a value to a symbol in a linker script. This will define
1731the symbol as a global symbol.
1732
1733@menu
1734* Simple Assignments:: Simple Assignments
1735* PROVIDE:: PROVIDE
1736@end menu
1737
1738@node Simple Assignments
1739@subsection Simple Assignments
1740
1741You may assign to a symbol using any of the C assignment operators:
b4d4e8e3
RP
1742
1743@table @code
af54556a 1744@item @var{symbol} = @var{expression} ;
b4d4e8e3
RP
1745@itemx @var{symbol} += @var{expression} ;
1746@itemx @var{symbol} -= @var{expression} ;
1747@itemx @var{symbol} *= @var{expression} ;
1748@itemx @var{symbol} /= @var{expression} ;
af54556a
ILT
1749@itemx @var{symbol} <<= @var{expression} ;
1750@itemx @var{symbol} >>= @var{expression} ;
1751@itemx @var{symbol} &= @var{expression} ;
1752@itemx @var{symbol} |= @var{expression} ;
b4d4e8e3
RP
1753@end table
1754
af54556a
ILT
1755The first case will define @var{symbol} to the value of
1756@var{expression}. In the other cases, @var{symbol} must already be
1757defined, and the value will be adjusted accordingly.
2c5c0674 1758
af54556a
ILT
1759The special symbol name @samp{.} indicates the location counter. You
1760may only use this within a @code{SECTIONS} command.
b4d4e8e3 1761
af54556a 1762The semicolon after @var{expression} is required.
b4d4e8e3 1763
af54556a 1764Expressions are defined below; see @ref{Expressions}.
b4d4e8e3 1765
af54556a
ILT
1766You may write symbol assignments as commands in their own right, or as
1767statements within a @code{SECTIONS} command, or as part of an output
1768section description in a @code{SECTIONS} command.
1769
1770The section of the symbol will be set from the section of the
1771expression; for more information, see @ref{Expression Section}.
1772
1773Here is an example showing the three different places that symbol
1774assignments may be used:
b4d4e8e3 1775
c653b370 1776@smallexample
af54556a
ILT
1777floating_point = 0;
1778SECTIONS
1779@{
1780 .text :
1781 @{
1782 *(.text)
1783 _etext = .;
d4e5e3c3 1784 @}
af54556a
ILT
1785 _bdata = (. + 3) & ~ 4;
1786 .data : @{ *(.data) @}
1787@}
c653b370 1788@end smallexample
2c5c0674 1789@noindent
af54556a
ILT
1790In this example, the symbol @samp{floating_point} will be defined as
1791zero. The symbol @samp{_etext} will be defined as the address following
1792the last @samp{.text} input section. The symbol @samp{_bdata} will be
1793defined as the address following the @samp{.text} output section aligned
1794upward to a 4 byte boundary.
1795
1796@node PROVIDE
1797@subsection PROVIDE
1798@cindex PROVIDE
0b3499f6 1799In some cases, it is desirable for a linker script to define a symbol
af54556a
ILT
1800only if it is referenced and is not defined by any object included in
1801the link. For example, traditional linkers defined the symbol
1802@samp{etext}. However, ANSI C requires that the user be able to use
1803@samp{etext} as a function name without encountering an error. The
1804@code{PROVIDE} keyword may be used to define a symbol, such as
0b3499f6
ILT
1805@samp{etext}, only if it is referenced but not defined. The syntax is
1806@code{PROVIDE(@var{symbol} = @var{expression})}.
b4d4e8e3 1807
af54556a 1808Here is an example of using @code{PROVIDE} to define @samp{etext}:
c653b370 1809@smallexample
af54556a
ILT
1810SECTIONS
1811@{
1812 .text :
d4e5e3c3 1813 @{
af54556a
ILT
1814 *(.text)
1815 _etext = .;
1816 PROVIDE(etext = .);
d4e5e3c3 1817 @}
af54556a 1818@}
c653b370 1819@end smallexample
d4e5e3c3 1820
36a8f215
ILT
1821In this example, if the program defines @samp{_etext} (with a leading
1822underscore), the linker will give a multiple definition error. If, on
1823the other hand, the program defines @samp{etext} (with no leading
1824underscore), the linker will silently use the definition in the program.
1825If the program references @samp{etext} but does not define it, the
1826linker will use the definition in the linker script.
f22eee08 1827
af54556a
ILT
1828@node SECTIONS
1829@section SECTIONS command
1830@kindex SECTIONS
1831The @code{SECTIONS} command tells the linker how to map input sections
1832into output sections, and how to place the output sections in memory.
2c5c0674 1833
af54556a 1834The format of the @code{SECTIONS} command is:
c653b370 1835@smallexample
af54556a
ILT
1836SECTIONS
1837@{
1838 @var{sections-command}
1839 @var{sections-command}
1840 @dots{}
1841@}
c653b370 1842@end smallexample
f22eee08 1843
af54556a 1844Each @var{sections-command} may of be one of the following:
b61364cc 1845
af54556a
ILT
1846@itemize @bullet
1847@item
1848an @code{ENTRY} command (@pxref{Entry Point,,Entry command})
1849@item
1850a symbol assignment (@pxref{Assignments})
1851@item
1852an output section description
1853@item
1854an overlay description
1855@end itemize
2c5c0674 1856
af54556a
ILT
1857The @code{ENTRY} command and symbol assignments are permitted inside the
1858@code{SECTIONS} command for convenience in using the location counter in
1859those commands. This can also make the linker script easier to
1860understand because you can use those commands at meaningful points in
1861the layout of the output file.
67afbcea 1862
af54556a
ILT
1863Output section descriptions and overlay descriptions are described
1864below.
67afbcea 1865
af54556a
ILT
1866If you do not use a @code{SECTIONS} command in your linker script, the
1867linker will place each input section into an identically named output
1868section in the order that the sections are first encountered in the
1869input files. If all input sections are present in the first file, for
1870example, the order of sections in the output file will match the order
1871in the first input file. The first section will be at address zero.
67afbcea 1872
af54556a
ILT
1873@menu
1874* Output Section Description:: Output section description
1875* Output Section Name:: Output section name
1876* Output Section Address:: Output section address
1877* Input Section:: Input section description
1878* Output Section Data:: Output section data
1879* Output Section Keywords:: Output section keywords
1880* Output Section Discarding:: Output section discarding
1881* Output Section Attributes:: Output section attributes
1882* Overlay Description:: Overlay description
1883@end menu
67afbcea 1884
af54556a
ILT
1885@node Output Section Description
1886@subsection Output section description
1887The full description of an output section looks like this:
c653b370 1888@smallexample
af54556a
ILT
1889@group
1890@var{section} [@var{address}] [(@var{type})] : [AT(@var{lma})]
d4e5e3c3 1891 @{
af54556a
ILT
1892 @var{output-section-command}
1893 @var{output-section-command}
d4e5e3c3 1894 @dots{}
af54556a 1895 @} [>@var{region}] [:@var{phdr} :@var{phdr} @dots{}] [=@var{fillexp}]
c653b370
ILT
1896@end group
1897@end smallexample
5a59e34d 1898
af54556a 1899Most output sections do not use most of the optional section attributes.
5a59e34d 1900
af54556a
ILT
1901The whitespace around @var{section} is required, so that the section
1902name is unambiguous. The colon and the curly braces are also required.
1903The line breaks and other white space are optional.
d4e5e3c3 1904
af54556a 1905Each @var{output-section-command} may be one of the following:
d4e5e3c3 1906
af54556a
ILT
1907@itemize @bullet
1908@item
1909a symbol assignment (@pxref{Assignments})
1910@item
1911an input section description (@pxref{Input Section})
1912@item
1913data values to include directly (@pxref{Output Section Data})
1914@item
1915a special output section keyword (@pxref{Output Section Keywords})
1916@end itemize
f22eee08 1917
af54556a
ILT
1918@node Output Section Name
1919@subsection Output section name
1920@cindex name, section
1921@cindex section name
1922The name of the output section is @var{section}. @var{section} must
1923meet the constraints of your output format. In formats which only
1924support a limited number of sections, such as @code{a.out}, the name
1925must be one of the names supported by the format (@code{a.out}, for
1926example, allows only @samp{.text}, @samp{.data} or @samp{.bss}). If the
1927output format supports any number of sections, but with numbers and not
1928names (as is the case for Oasys), the name should be supplied as a
1929quoted numeric string. A section name may consist of any sequence of
1930characters, but a name which contains any unusual characters such as
1931commas must be quoted.
1932
1933The output section name @samp{/DISCARD/} is special; @ref{Output Section
1934Discarding}.
1935
1936@node Output Section Address
1937@subsection Output section address
1938@cindex address, section
1939@cindex section address
1940The @var{address} is an expression for the VMA (the virtual memory
1941address) of the output section. If you do not provide @var{address},
1942the linker will set it based on @var{region} if present, or otherwise
1943based on the current value of the location counter.
1944
1945If you provide @var{address}, the address of the output section will be
1946set to precisely that. If you provide neither @var{address} nor
1947@var{region}, then the address of the output section will be set to the
1948current value of the location counter aligned to the alignment
1949requirements of the output section. The alignment requirement of the
1950output section is the strictest alignment of any input section contained
1951within the output section.
1952
1953For example,
c653b370 1954@smallexample
af54556a 1955.text . : @{ *(.text) @}
c653b370 1956@end smallexample
af54556a
ILT
1957@noindent
1958and
1959@smallexample
1960.text : @{ *(.text) @}
1961@end smallexample
1962@noindent
1963are subtly different. The first will set the address of the
1964@samp{.text} output section to the current value of the location
1965counter. The second will set it to the current value of the location
1966counter aligned to the strictest alignment of a @samp{.text} input
1967section.
1968
1969The @var{address} may be an arbitrary expression; @ref{Expressions}.
1970For example, if you want to align the section on a 0x10 byte boundary,
1971so that the lowest four bits of the section address are zero, you could
1972do something like this:
1973@smallexample
1974.text ALIGN(0x10) : @{ *(.text) @}
1975@end smallexample
1976@noindent
1977This works because @code{ALIGN} returns the current location counter
1978aligned upward to the specified value.
f22eee08 1979
af54556a
ILT
1980Specifying @var{address} for a section will change the value of the
1981location counter.
67c4333b 1982
af54556a
ILT
1983@node Input Section
1984@subsection Input section description
1985@cindex input sections
1986@cindex mapping input sections to output sections
1987The most common output section command is an input section description.
67c4333b 1988
af54556a
ILT
1989The input section description is the most basic linker script operation.
1990You use output sections to tell the linker how to lay out your program
1991in memory. You use input section descriptions to tell the linker how to
1992map the input files into your memory layout.
67c4333b 1993
af54556a
ILT
1994@menu
1995* Input Section Basics:: Input section basics
1996* Input Section Wildcards:: Input section wildcard patterns
1997* Input Section Common:: Input section for common symbols
71b012a8 1998* Input Section Keep:: Input section and garbage collection
af54556a
ILT
1999* Input Section Example:: Input section example
2000@end menu
b4d4e8e3 2001
af54556a
ILT
2002@node Input Section Basics
2003@subsubsection Input section basics
2004@cindex input section basics
2005An input section description consists of a file name optionally followed
2006by a list of section names in parentheses.
f22eee08 2007
af54556a
ILT
2008The file name and the section name may be wildcard patterns, which we
2009describe further below (@pxref{Input Section Wildcards}).
b4d4e8e3 2010
af54556a
ILT
2011The most common input section description is to include all input
2012sections with a particular name in the output section. For example, to
2013include all input @samp{.text} sections, you would write:
2014@smallexample
2015*(.text)
2016@end smallexample
2017@noindent
2018Here the @samp{*} is a wildcard which matches any file name.
2c5c0674 2019
af54556a 2020There are two ways to include more than one section:
c653b370 2021@smallexample
af54556a
ILT
2022*(.text .rdata)
2023*(.text) *(.rdata)
c653b370 2024@end smallexample
b4d4e8e3 2025@noindent
af54556a
ILT
2026The difference between these is the order in which the @samp{.text} and
2027@samp{.rdata} input sections will appear in the output section. In the
2028first example, they will be intermingled. In the second example, all
2029@samp{.text} input sections will appear first, followed by all
2030@samp{.rdata} input sections.
2031
2032You can specify a file name to include sections from a particular file.
2033You would do this if one or more of your files contain special data that
2034needs to be at a particular location in memory. For example:
c653b370 2035@smallexample
af54556a 2036data.o(.data)
c653b370 2037@end smallexample
f9d3d71a 2038
af54556a
ILT
2039If you use a file name without a list of sections, then all sections in
2040the input file will be included in the output section. This is not
2041commonly done, but it may by useful on occasion. For example:
2042@smallexample
2043data.o
2044@end smallexample
67c4333b 2045
af54556a
ILT
2046When you use a file name which does not contain any wild card
2047characters, the linker will first see if you also specified the file
2048name on the linker command line or in an @code{INPUT} command. If you
2049did not, the linker will attempt to open the file as an input file, as
2050though it appeared on the command line. Note that this differs from an
2051@code{INPUT} command, because the linker will not search for the file in
2052the archive search path.
b4d4e8e3 2053
af54556a
ILT
2054@node Input Section Wildcards
2055@subsubsection Input section wildcard patterns
2056@cindex input section wildcards
2057@cindex wildcard file name patterns
2058@cindex file name wildcard patterns
2059@cindex section name wildcard patterns
2060In an input section description, either the file name or the section
2061name or both may be wildcard patterns.
f22eee08 2062
af54556a
ILT
2063The file name of @samp{*} seen in many examples is a simple wildcard
2064pattern for the file name.
f22eee08 2065
af54556a 2066The wildcard patterns are like those used by the Unix shell.
b4d4e8e3 2067
af54556a
ILT
2068@table @samp
2069@item *
2070matches any number of characters
2071@item ?
2072matches any single character
2073@item [@var{chars}]
2074matches a single instance of any of the @var{chars}; the @samp{-}
2075character may be used to specify a range of characters, as in
2076@samp{[a-z]} to match any lower case letter
2077@item \
2078quotes the following character
2079@end table
86bc0974 2080
c2ba3684
ILT
2081When a file name is matched with a wildcard, the wildcard characters
2082will not match a @samp{/} character (used to separate directory names on
86bc0974 2083Unix). A pattern consisting of a single @samp{*} character is an
af54556a
ILT
2084exception; it will always match any file name, whether it contains a
2085@samp{/} or not. In a section name, the wildcard characters will match
2086a @samp{/} character.
2087
2088File name wildcard patterns only match files which are explicitly
2089specified on the command line or in an @code{INPUT} command. The linker
2090does not search directories to expand wildcards.
2091
2092If a file name matches more than one wildcard pattern, or if a file name
2093appears explicitly and is also matched by a wildcard pattern, the linker
2094will use the first match in the linker script. For example, this
2095sequence of input section descriptions is probably in error, because the
2096@file{data.o} rule will not be used:
2097@smallexample
2098.data : @{ *(.data) @}
2099.data1 : @{ data.o(.data) @}
2100@end smallexample
86bc0974 2101
da713b8f
ILT
2102@cindex SORT
2103Normally, the linker will place files and sections matched by wildcards
2104in the order in which they are seen during the link. You can change
2105this by using the @code{SORT} keyword, which appears before a wildcard
2106pattern in parentheses (e.g., @code{SORT(.text*)}). When the
2107@code{SORT} keyword is used, the linker will sort the files or sections
2108into ascending order by name before placing them in the output file.
2109
af54556a
ILT
2110If you ever get confused about where input sections are going, use the
2111@samp{-M} linker option to generate a map file. The map file shows
2112precisely how input sections are mapped to output sections.
d4e5e3c3 2113
af54556a
ILT
2114This example shows how wildcard patterns might be used to partition
2115files. This linker script directs the linker to place all @samp{.text}
2116sections in @samp{.text} and all @samp{.bss} sections in @samp{.bss}.
2117The linker will place the @samp{.data} section from all files beginning
2118with an upper case character in @samp{.DATA}; for all other files, the
2119linker will place the @samp{.data} section in @samp{.data}.
c653b370
ILT
2120@smallexample
2121@group
af54556a 2122SECTIONS @{
d76ae847 2123 .text : @{ *(.text) @}
af54556a
ILT
2124 .DATA : @{ [A-Z]*(.data) @}
2125 .data : @{ *(.data) @}
2126 .bss : @{ *(.bss) @}
2127@}
c653b370
ILT
2128@end group
2129@end smallexample
b4d4e8e3 2130
af54556a
ILT
2131@node Input Section Common
2132@subsubsection Input section for common symbols
2133@cindex common symbol placement
2134@cindex uninitialized data placement
2135A special notation is needed for common symbols, because in many object
2136file formats common symbols do not have a particular input section. The
2137linker treats common symbols as though they are in an input section
2138named @samp{COMMON}.
2139
2140You may use file names with the @samp{COMMON} section just as with any
2141other input sections. You can use this to place common symbols from a
2142particular input file in one section while common symbols from other
2143input files are placed in another section.
2144
2145In most cases, common symbols in input files will be placed in the
2146@samp{.bss} section in the output file. For example:
2147@smallexample
2148.bss @{ *(.bss) *(COMMON) @}
2149@end smallexample
2150
2151@cindex scommon section
2152@cindex small common symbols
2153Some object file formats have more than one type of common symbol. For
2154example, the MIPS ELF object file format distinguishes standard common
2155symbols and small common symbols. In this case, the linker will use a
2156different special section name for other types of common symbols. In
2157the case of MIPS ELF, the linker uses @samp{COMMON} for standard common
2158symbols and @samp{.scommon} for small common symbols. This permits you
2159to map the different types of common symbols into memory at different
2160locations.
2161
2162@cindex [COMMON]
2163You will sometimes see @samp{[COMMON]} in old linker scripts. This
2164notation is now considered obsolete. It is equivalent to
2165@samp{*(COMMON)}.
2166
71b012a8
RH
2167@node Input Section Keep
2168@subsubsection Input section and garbage collection
2169@cindex KEEP
2170@cindex garbage collection
2171When link-time garbage collection is in use (@samp{--gc-sections}),
2172it is often useful to mark sections that should not be eliminated.
2173This is accomplished by surrounding an input section's wildcard entry
2174with @code{KEEP()}, as in @code{KEEP(*(.init))} or
2175@code{KEEP(SORT(*)(.ctors))}.
2176
af54556a
ILT
2177@node Input Section Example
2178@subsubsection Input section example
2179The following example is a complete linker script. It tells the linker
2180to read all of the sections from file @file{all.o} and place them at the
2181start of output section @samp{outputa} which starts at location
2182@samp{0x10000}. All of section @samp{.input1} from file @file{foo.o}
2183follows immediately, in the same output section. All of section
2184@samp{.input2} from @file{foo.o} goes into output section
2185@samp{outputb}, followed by section @samp{.input1} from @file{foo1.o}.
2186All of the remaining @samp{.input1} and @samp{.input2} sections from any
2187files are written to output section @samp{outputc}.
b4d4e8e3 2188
c653b370
ILT
2189@smallexample
2190@group
2c5c0674 2191SECTIONS @{
d4e5e3c3
DM
2192 outputa 0x10000 :
2193 @{
2194 all.o
2195 foo.o (.input1)
2196 @}
2197 outputb :
2198 @{
2199 foo.o (.input2)
2200 foo1.o (.input1)
2201 @}
2202 outputc :
2203 @{
2204 *(.input1)
2205 *(.input2)
2206 @}
2c5c0674 2207@}
c653b370
ILT
2208@end group
2209@end smallexample
b4d4e8e3 2210
af54556a
ILT
2211@node Output Section Data
2212@subsection Output section data
2213@cindex data
2214@cindex section data
2215@cindex output section data
2216@kindex BYTE(@var{expression})
2217@kindex SHORT(@var{expression})
2218@kindex LONG(@var{expression})
2219@kindex QUAD(@var{expression})
2220@kindex SQUAD(@var{expression})
2221You can include explicit bytes of data in an output section by using
2222@code{BYTE}, @code{SHORT}, @code{LONG}, @code{QUAD}, or @code{SQUAD} as
2223an output section command. Each keyword is followed by an expression in
2224parentheses providing the value to store (@pxref{Expressions}). The
2225value of the expression is stored at the current value of the location
2226counter.
2227
2228The @code{BYTE}, @code{SHORT}, @code{LONG}, and @code{QUAD} commands
2229store one, two, four, and eight bytes (respectively). After storing the
2230bytes, the location counter is incremented by the number of bytes
2231stored.
2232
2233For example, this will store the byte 1 followed by the four byte value
2234of the symbol @samp{addr}:
2235@smallexample
2236BYTE(1)
2237LONG(addr)
2238@end smallexample
2239
2240When using a 64 bit host or target, @code{QUAD} and @code{SQUAD} are the
2241same; they both store an 8 byte, or 64 bit, value. When both host and
2242target are 32 bits, an expression is computed as 32 bits. In this case
2243@code{QUAD} stores a 32 bit value zero extended to 64 bits, and
2244@code{SQUAD} stores a 32 bit value sign extended to 64 bits.
86bc0974 2245
af54556a
ILT
2246If the object file format of the output file has an explicit endianness,
2247which is the normal case, the value will be stored in that endianness.
2248When the object file format does not have an explicit endianness, as is
2249true of, for example, S-records, the value will be stored in the
2250endianness of the first input object file.
2251
2252@kindex FILL(@var{expression})
2253@cindex holes, filling
2254@cindex unspecified memory
2255You may use the @code{FILL} command to set the fill pattern for the
2256current section. It is followed by an expression in parentheses. Any
2257otherwise unspecified regions of memory within the section (for example,
2258gaps left due to the required alignment of input sections) are filled
2259with the two least significant bytes of the expression, repeated as
2260necessary. A @code{FILL} statement covers memory locations after the
2261point at which it occurs in the section definition; by including more
2262than one @code{FILL} statement, you can have different fill patterns in
2263different parts of an output section.
2264
2265This example shows how to fill unspecified regions of memory with the
2266value @samp{0x9090}:
86bc0974 2267@smallexample
af54556a 2268FILL(0x9090)
86bc0974
ILT
2269@end smallexample
2270
af54556a
ILT
2271The @code{FILL} command is similar to the @samp{=@var{fillexp}} output
2272section attribute (@pxref{Output Section Fill}), but it only affects the
2273part of the section following the @code{FILL} command, rather than the
2274entire section. If both are used, the @code{FILL} command takes
2275precedence.
67c4333b 2276
af54556a
ILT
2277@node Output Section Keywords
2278@subsection Output section keywords
2279There are a couple of keywords which can appear as output section
2280commands.
f22eee08 2281
b4d4e8e3 2282@table @code
af54556a 2283@kindex CREATE_OBJECT_SYMBOLS
2c5c0674
RP
2284@cindex input filename symbols
2285@cindex filename symbols
d4e5e3c3 2286@item CREATE_OBJECT_SYMBOLS
af54556a
ILT
2287The command tells the linker to create a symbol for each input file.
2288The name of each symbol will be the name of the corresponding input
2289file. The section of each symbol will be the output section in which
2290the @code{CREATE_OBJECT_SYMBOLS} command appears.
b4d4e8e3 2291
af54556a
ILT
2292This is conventional for the a.out object file format. It is not
2293normally used for any other object file format.
f22eee08 2294
af54556a
ILT
2295@kindex CONSTRUCTORS
2296@cindex C++ constructors, arranging in link
2297@cindex constructors, arranging in link
2298@item CONSTRUCTORS
2299When linking using the a.out object file format, the linker uses an
2300unusual set construct to support C++ global constructors and
2301destructors. When linking object file formats which do not support
2302arbitrary sections, such as ECOFF and XCOFF, the linker will
2303automatically recognize C++ global constructors and destructors by name.
2304For these object file formats, the @code{CONSTRUCTORS} command tells the
2305linker to place constructor information in the output section where the
2306@code{CONSTRUCTORS} command appears. The @code{CONSTRUCTORS} command is
2307ignored for other object file formats.
f22eee08 2308
af54556a
ILT
2309The symbol @w{@code{__CTOR_LIST__}} marks the start of the global
2310constructors, and the symbol @w{@code{__DTOR_LIST}} marks the end. The
2311first word in the list is the number of entries, followed by the address
2312of each constructor or destructor, followed by a zero word. The
2313compiler must arrange to actually run the code. For these object file
2314formats @sc{gnu} C++ normally calls constructors from a subroutine
2315@code{__main}; a call to @code{__main} is automatically inserted into
2316the startup code for @code{main}. @sc{gnu} C++ normally runs
2317destructors either by using @code{atexit}, or directly from the function
2318@code{exit}.
2c5c0674 2319
af54556a
ILT
2320For object file formats such as @code{COFF} or @code{ELF} which support
2321arbitrary section names, @sc{gnu} C++ will normally arrange to put the
2322addresses of global constructors and destructors into the @code{.ctors}
2323and @code{.dtors} sections. Placing the following sequence into your
2324linker script will build the sort of table which the @sc{gnu} C++
2325runtime code expects to see.
d4e5e3c3 2326
c653b370 2327@smallexample
af54556a
ILT
2328 __CTOR_LIST__ = .;
2329 LONG((__CTOR_END__ - __CTOR_LIST__) / 4 - 2)
2330 *(.ctors)
2331 LONG(0)
2332 __CTOR_END__ = .;
2333 __DTOR_LIST__ = .;
2334 LONG((__DTOR_END__ - __DTOR_LIST__) / 4 - 2)
2335 *(.dtors)
2336 LONG(0)
2337 __DTOR_END__ = .;
c653b370 2338@end smallexample
d4e5e3c3 2339
c470f2eb
UD
2340If you are using the @sc{gnu} C++ support for initialization priority,
2341which provides some control over the order in which global constructors
2342are run, you must sort the constructors at link time to ensure that they
2343are executed in the correct order. When using the @code{CONSTRUCTORS}
2344command, use @samp{SORT(CONSTRUCTORS)} instead. When using the
2345@code{.ctors} and @code{.dtors} sections, use @samp{*(SORT(.ctors))} and
2346@samp{*(SORT(.dtors))} instead of just @samp{*(.ctors)} and
2347@samp{*(.dtors)}.
2348
af54556a
ILT
2349Normally the compiler and linker will handle these issues automatically,
2350and you will not need to concern yourself with them. However, you may
2351need to consider this if you are using C++ and writing your own linker
2352scripts.
c470f2eb 2353
b4d4e8e3
RP
2354@end table
2355
af54556a
ILT
2356@node Output Section Discarding
2357@subsection Output section discarding
2358@cindex discarding sections
2359@cindex sections, discarding
2360@cindex removing sections
2361The linker will not create output section which do not have any
2362contents. This is for convenience when referring to input sections that
2363may or may not be present in any of the input files. For example:
d76ae847 2364@smallexample
af54556a 2365.foo @{ *(.foo) @}
d76ae847 2366@end smallexample
af54556a
ILT
2367@noindent
2368will only create a @samp{.foo} section in the output file if there is a
2369@samp{.foo} section in at least one input file.
b4d4e8e3 2370
af54556a
ILT
2371If you use anything other than an input section description as an output
2372section command, such as a symbol assignment, then the output section
2373will always be created, even if there are no matching input sections.
f22eee08 2374
71b012a8 2375@cindex /DISCARD/
af54556a
ILT
2376The special output section name @samp{/DISCARD/} may be used to discard
2377input sections. Any input sections which are assigned to an output
2378section named @samp{/DISCARD/} are not included in the output file.
d4e5e3c3 2379
af54556a
ILT
2380@node Output Section Attributes
2381@subsection Output section attributes
2382@cindex output section attributes
2383We showed above that the full description of an output section looked
2384like this:
c653b370 2385@smallexample
af54556a
ILT
2386@group
2387@var{section} [@var{address}] [(@var{type})] : [AT(@var{lma})]
2388 @{
2389 @var{output-section-command}
2390 @var{output-section-command}
d4e5e3c3 2391 @dots{}
af54556a 2392 @} [>@var{region}] [:@var{phdr} :@var{phdr} @dots{}] [=@var{fillexp}]
c653b370
ILT
2393@end group
2394@end smallexample
af54556a
ILT
2395We've already described @var{section}, @var{address}, and
2396@var{output-section-command}. In this section we will describe the
2397remaining section attributes.
2398
2399@menu
2400* Output Section Type:: Output section type
2401* Output Section LMA:: Output section LMA
2402* Output Section Region:: Output section region
2403* Output Section Phdr:: Output section phdr
2404* Output Section Fill:: Output section fill
2405@end menu
f22eee08 2406
af54556a
ILT
2407@node Output Section Type
2408@subsubsection Output section type
2409Each output section may have a type. The type is a keyword in
2410parentheses. The following types are defined:
2411
2412@table @code
2413@item NOLOAD
2414The section should be marked as not loadable, so that it will not be
2415loaded into memory when the program is run.
2416@item DSECT
2417@itemx COPY
2418@itemx INFO
2419@itemx OVERLAY
2420These type names are supported for backward compatibility, and are
2421rarely used. They all have the same effect: the section should be
2422marked as not allocatable, so that no memory is allocated for the
2423section when the program is run.
2424@end table
f22eee08 2425
d76ae847
RP
2426@kindex NOLOAD
2427@cindex prevent unnecessary loading
67c4333b 2428@cindex loading, preventing
af54556a
ILT
2429The linker normally sets the attributes of an output section based on
2430the input sections which map into it. You can override this by using
2431the section type. For example, in the script sample below, the
2432@samp{ROM} section is addressed at memory location @samp{0} and does not
2433need to be loaded when the program is run. The contents of the
2434@samp{ROM} section will appear in the linker output file as usual.
c653b370
ILT
2435@smallexample
2436@group
d76ae847 2437SECTIONS @{
af54556a 2438 ROM 0 (NOLOAD) : @{ @dots{} @}
d4e5e3c3 2439 @dots{}
d76ae847 2440@}
c653b370
ILT
2441@end group
2442@end smallexample
d76ae847 2443
af54556a
ILT
2444@node Output Section LMA
2445@subsubsection Output section LMA
2446@kindex AT(@var{lma})
2447@cindex load address
2448@cindex section load address
2449Every section has a virtual address (VMA) and a load address (LMA); see
2450@ref{Basic Script Concepts}. The address expression which may appear in
2451an output section description sets the VMA (@pxref{Output Section
2452Address}).
2453
2454The linker will normally set the LMA equal to the VMA. You can change
2455that by using the @code{AT} keyword. The expression @var{lma} that
2456follows the @code{AT} keyword specifies the load address of the section.
2457
2458@cindex ROM initialized data
2459@cindex initialized data in ROM
2460This feature is designed to make it easy to build a ROM image. For
2461example, the following linker script creates three output sections: one
2462called @samp{.text}, which starts at @code{0x1000}, one called
2463@samp{.mdata}, which is loaded at the end of the @samp{.text} section
2464even though its VMA is @code{0x2000}, and one called @samp{.bss} to hold
2465uninitialized data at address @code{0x3000}. The symbol @code{_data} is
2466defined with the value @code{0x2000}, which shows that the location
2467counter holds the VMA value, not the LMA value.
67c4333b
RP
2468
2469@smallexample
c653b370 2470@group
67c4333b 2471SECTIONS
139c8857
RP
2472 @{
2473 .text 0x1000 : @{ *(.text) _etext = . ; @}
2474 .mdata 0x2000 :
af54556a 2475 AT ( ADDR (.text) + SIZEOF (.text) )
139c8857
RP
2476 @{ _data = . ; *(.data); _edata = . ; @}
2477 .bss 0x3000 :
2478 @{ _bstart = . ; *(.bss) *(COMMON) ; _bend = . ;@}
67c4333b 2479@}
c653b370 2480@end group
67c4333b
RP
2481@end smallexample
2482
af54556a
ILT
2483The run-time initialization code for use with a program generated with
2484this linker script would include something like the following, to copy
2485the initialized data from the ROM image to its runtime address. Notice
2486how this code takes advantage of the symbols defined by the linker
2487script.
67c4333b 2488
139c8857 2489@smallexample
c653b370 2490@group
af54556a
ILT
2491extern char _etext, _data, _edata, _bstart, _bend;
2492char *src = &_etext;
2493char *dst = &_data;
67c4333b 2494
139c8857 2495/* ROM has data at end of text; copy it. */
af54556a 2496while (dst < &_edata) @{
139c8857 2497 *dst++ = *src++;
67c4333b
RP
2498@}
2499
2500/* Zero bss */
af54556a 2501for (dst = &_bstart; dst< &_bend; dst++)
139c8857 2502 *dst = 0;
c653b370 2503@end group
139c8857 2504@end smallexample
67c4333b 2505
af54556a
ILT
2506@node Output Section Region
2507@subsubsection Output section region
f9d3d71a
ILT
2508@kindex >@var{region}
2509@cindex section, assigning to memory region
2510@cindex memory regions and sections
af54556a
ILT
2511You can assign a section to a previously defined region of memory by
2512using @samp{>@var{region}}. @xref{MEMORY}.
2513
2514Here is a simple example:
2515@smallexample
2516@group
2517MEMORY @{ rom : ORIGIN = 0x1000, LENGTH = 0x1000 @}
2518SECTIONS @{ ROM : @{ *(.text) @} >rom @}
2519@end group
2520@end smallexample
f9d3d71a 2521
af54556a
ILT
2522@node Output Section Phdr
2523@subsubsection Output section phdr
c653b370
ILT
2524@kindex :@var{phdr}
2525@cindex section, assigning to program header
2526@cindex program headers and sections
af54556a
ILT
2527You can assign a section to a previously defined program segment by
2528using @samp{:@var{phdr}}. @xref{PHDRS}. If a section is assigned to
2529one or more segments, then all subsequent allocated sections will be
2530assigned to those segments as well, unless they use an explicitly
36a8f215
ILT
2531@code{:@var{phdr}} modifier. You can use @code{:NONE} to tell the
2532linker to not put the section in any segment at all.
af54556a
ILT
2533
2534Here is a simple example:
2535@smallexample
2536@group
2537PHDRS @{ text PT_LOAD ; @}
2538SECTIONS @{ .text : @{ *(.text) @} :text @}
2539@end group
2540@end smallexample
2541
2542@node Output Section Fill
2543@subsubsection Output section fill
2544@kindex =@var{fillexp}
2c5c0674
RP
2545@cindex section fill pattern
2546@cindex fill pattern, entire section
af54556a
ILT
2547You can set the fill pattern for an entire section by using
2548@samp{=@var{fillexp}}. @var{fillexp} is an expression
2549(@pxref{Expressions}). Any otherwise unspecified regions of memory
2550within the output section (for example, gaps left due to the required
2551alignment of input sections) will be filled with the two least
2552significant bytes of the value, repeated as necessary.
f22eee08 2553
af54556a
ILT
2554You can also change the fill value with a @code{FILL} command in the
2555output section commands; see @ref{Output Section Data}.
b4d4e8e3 2556
af54556a
ILT
2557Here is a simple example:
2558@smallexample
2559@group
2560SECTIONS @{ .text : @{ *(.text) @} =0x9090 @}
2561@end group
2562@end smallexample
2563
2564@node Overlay Description
2565@subsection Overlay description
b61364cc
ILT
2566@kindex OVERLAY
2567@cindex overlays
af54556a
ILT
2568An overlay description provides an easy way to describe sections which
2569are to be loaded as part of a single memory image but are to be run at
2570the same memory address. At run time, some sort of overlay manager will
2571copy the overlaid sections in and out of the runtime memory address as
2572required, perhaps by simply manipulating addressing bits. This approach
2573can be useful, for example, when a certain region of memory is faster
2574than another.
2575
2576Overlays are described using the @code{OVERLAY} command. The
2577@code{OVERLAY} command is used within a @code{SECTIONS} command, like an
2578output section description. The full syntax of the @code{OVERLAY}
2579command is as follows:
b61364cc
ILT
2580@smallexample
2581@group
af54556a
ILT
2582OVERLAY [@var{start}] : [NOCROSSREFS] [AT ( @var{ldaddr} )]
2583 @{
2584 @var{secname1}
2585 @{
2586 @var{output-section-command}
2587 @var{output-section-command}
2588 @dots{}
2589 @} [:@var{phdr}@dots{}] [=@var{fill}]
2590 @var{secname2}
2591 @{
2592 @var{output-section-command}
2593 @var{output-section-command}
2594 @dots{}
2595 @} [:@var{phdr}@dots{}] [=@var{fill}]
2596 @dots{}
2597 @} [>@var{region}] [:@var{phdr}@dots{}] [=@var{fill}]
b61364cc
ILT
2598@end group
2599@end smallexample
2600
2601Everything is optional except @code{OVERLAY} (a keyword), and each
2602section must have a name (@var{secname1} and @var{secname2} above). The
2603section definitions within the @code{OVERLAY} construct are identical to
2604those within the general @code{SECTIONS} contruct (@pxref{SECTIONS}),
2605except that no addresses and no memory regions may be defined for
2606sections within an @code{OVERLAY}.
2607
2608The sections are all defined with the same starting address. The load
2609addresses of the sections are arranged such that they are consecutive in
2610memory starting at the load address used for the @code{OVERLAY} as a
2611whole (as with normal section definitions, the load address is optional,
2612and defaults to the start address; the start address is also optional,
af54556a 2613and defaults to the current value of the location counter).
b61364cc
ILT
2614
2615If the @code{NOCROSSREFS} keyword is used, and there any references
2616among the sections, the linker will report an error. Since the sections
2617all run at the same address, it normally does not make sense for one
af54556a 2618section to refer directly to another. @xref{Miscellaneous Commands,
b61364cc
ILT
2619NOCROSSREFS}.
2620
2621For each section within the @code{OVERLAY}, the linker automatically
2622defines two symbols. The symbol @code{__load_start_@var{secname}} is
2623defined as the starting load address of the section. The symbol
2624@code{__load_stop_@var{secname}} is defined as the final load address of
2625the section. Any characters within @var{secname} which are not legal
2626within C identifiers are removed. C (or assembler) code may use these
2627symbols to move the overlaid sections around as necessary.
2628
af54556a
ILT
2629At the end of the overlay, the value of the location counter is set to
2630the start address of the overlay plus the size of the largest section.
b61364cc
ILT
2631
2632Here is an example. Remember that this would appear inside a
2633@code{SECTIONS} construct.
b61364cc
ILT
2634@smallexample
2635@group
2636 OVERLAY 0x1000 : AT (0x4000)
2637 @{
2638 .text0 @{ o1/*.o(.text) @}
2639 .text1 @{ o2/*.o(.text) @}
2640 @}
2641@end group
2642@end smallexample
af54556a
ILT
2643@noindent
2644This will define both @samp{.text0} and @samp{.text1} to start at
2645address 0x1000. @samp{.text0} will be loaded at address 0x4000, and
2646@samp{.text1} will be loaded immediately after @samp{.text0}. The
b61364cc
ILT
2647following symbols will be defined: @code{__load_start_text0},
2648@code{__load_stop_text0}, @code{__load_start_text1},
2649@code{__load_stop_text1}.
2650
2651C code to copy overlay @code{.text1} into the overlay area might look
2652like the following.
2653
2654@smallexample
2655@group
2656 extern char __load_start_text1, __load_stop_text1;
2657 memcpy ((char *) 0x1000, &__load_start_text1,
2658 &__load_stop_text1 - &__load_start_text1);
2659@end group
2660@end smallexample
2661
2662Note that the @code{OVERLAY} command is just syntactic sugar, since
2663everything it does can be done using the more basic commands. The above
2664example could have been written identically as follows.
2665
2666@smallexample
2667@group
2668 .text0 0x1000 : AT (0x4000) @{ o1/*.o(.text) @}
2669 __load_start_text0 = LOADADDR (.text0);
2670 __load_stop_text0 = LOADADDR (.text0) + SIZEOF (.text0);
2671 .text1 0x1000 : AT (0x4000 + SIZEOF (.text0)) @{ o2/*.o(.text) @}
2672 __load_start_text1 = LOADADDR (.text1);
2673 __load_stop_text1 = LOADADDR (.text1) + SIZEOF (.text1);
2674 . = 0x1000 + MAX (SIZEOF (.text0), SIZEOF (.text1));
2675@end group
2676@end smallexample
2677
af54556a
ILT
2678@node MEMORY
2679@section MEMORY command
2680@kindex MEMORY
2681@cindex memory regions
2682@cindex regions of memory
2683@cindex allocating memory
2684@cindex discontinuous memory
2685The linker's default configuration permits allocation of all available
2686memory. You can override this by using the @code{MEMORY} command.
2687
2688The @code{MEMORY} command describes the location and size of blocks of
2689memory in the target. You can use it to describe which memory regions
2690may be used by the linker, and which memory regions it must avoid. You
2691can then assign sections to particular memory regions. The linker will
2692set section addresses based on the memory regions, and will warn about
2693regions that become too full. The linker will not shuffle sections
2694around to fit into the available regions.
2695
2696A linker script may contain at most one use of the @code{MEMORY}
2697command. However, you can define as many blocks of memory within it as
2698you wish. The syntax is:
2699@smallexample
2700@group
2701MEMORY
2702 @{
2703 @var{name} [(@var{attr})] : ORIGIN = @var{origin}, LENGTH = @var{len}
2704 @dots{}
2705 @}
2706@end group
2707@end smallexample
2708
2709The @var{name} is a name used in the linker script to refer to the
2710region. The region name has no meaning outside of the linker script.
2711Region names are stored in a separate name space, and will not conflict
2712with symbol names, file names, or section names. Each memory region
2713must have a distinct name.
2714
2715@cindex memory region attributes
2716The @var{attr} string is an optional list of attributes that specify
2717whether to use a particular memory region for an input section which is
2718not explicitly mapped in the linker script. As described in
2719@ref{SECTIONS}, if you do not specify an output section for some input
2720section, the linker will create an output section with the same name as
2721the input section. If you define region attributes, the linker will use
2722them to select the memory region for the output section that it creates.
2723
2724The @var{attr} string must consist only of the following characters:
2725@table @samp
2726@item R
2727Read-only section
2728@item W
2729Read/write section
2730@item X
2731Executable section
2732@item A
2733Allocatable section
2734@item I
2735Initialized section
2736@item L
2737Same as @samp{I}
2738@item !
2739Invert the sense of any of the preceding attributes
2740@end table
2741
2742If a unmapped section matches any of the listed attributes other than
2743@samp{!}, it will be placed in the memory region. The @samp{!}
2744attribute reverses this test, so that an unmapped section will be placed
2745in the memory region only if it does not match any of the listed
2746attributes.
2747
2748@kindex ORIGIN =
2749@kindex o =
2750@kindex org =
2751The @var{origin} is an expression for the start address of the memory
2752region. The expression must evaluate to a constant before memory
2753allocation is performed, which means that you may not use any section
2754relative symbols. The keyword @code{ORIGIN} may be abbreviated to
2755@code{org} or @code{o} (but not, for example, @code{ORG}).
2756
2757@kindex LENGTH =
2758@kindex len =
2759@kindex l =
2760The @var{len} is an expression for the size in bytes of the memory
2761region. As with the @var{origin} expression, the expression must
2762evaluate to a constant before memory allocation is performed. The
2763keyword @code{LENGTH} may be abbreviated to @code{len} or @code{l}.
2764
2765In the following example, we specify that there are two memory regions
2766available for allocation: one starting at @samp{0} for 256 kilobytes,
2767and the other starting at @samp{0x40000000} for four megabytes. The
2768linker will place into the @samp{rom} memory region every section which
2769is not explicitly mapped into a memory region, and is either read-only
2770or executable. The linker will place other sections which are not
2771explicitly mapped into a memory region into the @samp{ram} memory
2772region.
2773
2774@smallexample
2775@group
2776MEMORY
2777 @{
2778 rom (rx) : ORIGIN = 0, LENGTH = 256K
2779 ram (!rx) : org = 0x40000000, l = 4M
2780 @}
2781@end group
2782@end smallexample
2783
f8a86f8f
ILT
2784Once you define a memory region, you can direct the linker to place
2785specific output sections into that memory region by using the
2786@samp{>@var{region}} output section attribute. For example, if you have
2787a memory region named @samp{mem}, you would use @samp{>mem} in the
2788output section definition. @xref{Output Section Region}. If no address
2789was specified for the output section, the linker will set the address to
2790the next available address within the memory region. If the combined
2791output sections directed to a memory region are too large for the
2792region, the linker will issue an error message.
af54556a 2793
c653b370 2794@node PHDRS
af54556a 2795@section PHDRS Command
c653b370 2796@kindex PHDRS
b61364cc
ILT
2797@cindex program headers
2798@cindex ELF program headers
af54556a
ILT
2799@cindex program segments
2800@cindex segments, ELF
2801The ELF object file format uses @dfn{program headers}, also knows as
2802@dfn{segments}. The program headers describe how the program should be
2803loaded into memory. You can print them out by using the @code{objdump}
2804program with the @samp{-p} option.
2805
2806When you run an ELF program on a native ELF system, the system loader
2807reads the program headers in order to figure out how to load the
2808program. This will only work if the program headers are set correctly.
2809This manual does not describe the details of how the system loader
2810interprets program headers; for more information, see the ELF ABI.
2811
2812The linker will create reasonable program headers by default. However,
2813in some cases, you may need to specify the program headers more
2814precisely. You may use the @code{PHDRS} command for this purpose. When
2815the linker sees the @code{PHDRS} command in the linker script, it will
2816not create any program headers other than the ones specified.
2817
2818The linker only pays attention to the @code{PHDRS} command when
2819generating an ELF output file. In other cases, the linker will simply
2820ignore @code{PHDRS}.
c653b370
ILT
2821
2822This is the syntax of the @code{PHDRS} command. The words @code{PHDRS},
2823@code{FILEHDR}, @code{AT}, and @code{FLAGS} are keywords.
2824
2825@smallexample
2826@group
2827PHDRS
2828@{
2829 @var{name} @var{type} [ FILEHDR ] [ PHDRS ] [ AT ( @var{address} ) ]
2830 [ FLAGS ( @var{flags} ) ] ;
2831@}
2832@end group
2833@end smallexample
2834
2835The @var{name} is used only for reference in the @code{SECTIONS} command
af54556a
ILT
2836of the linker script. It is not put into the output file. Program
2837header names are stored in a separate name space, and will not conflict
2838with symbol names, file names, or section names. Each program header
2839must have a distinct name.
2840
2841Certain program header types describe segments of memory which the
2842system loader will load from the file. In the linker script, you
2843specify the contents of these segments by placing allocatable output
2844sections in the segments. You use the @samp{:@var{phdr}} output section
2845attribute to place a section in a particular segment. @xref{Output
2846Section Phdr}.
2847
2848It is normal to put certain sections in more than one segment. This
2849merely implies that one segment of memory contains another. You may
2850repeat @samp{:@var{phdr}}, using it once for each segment which should
2851contain the section.
2852
2853If you place a section in one or more segments using @samp{:@var{phdr}},
2854then the linker will place all subsequent allocatable sections which do
2855not specify @samp{:@var{phdr}} in the same segments. This is for
c653b370 2856convenience, since generally a whole set of contiguous sections will be
36a8f215
ILT
2857placed in a single segment. You can use @code{:NONE} to override the
2858default segment and tell the linker to not put the section in any
2859segment at all.
c653b370 2860
af54556a
ILT
2861@kindex FILEHDR
2862@kindex PHDRS
2863You may use the @code{FILEHDR} and @code{PHDRS} keywords appear after
2864the program header type to further describe the contents of the segment.
c653b370
ILT
2865The @code{FILEHDR} keyword means that the segment should include the ELF
2866file header. The @code{PHDRS} keyword means that the segment should
2867include the ELF program headers themselves.
2868
2869The @var{type} may be one of the following. The numbers indicate the
2870value of the keyword.
2871
2872@table @asis
2873@item @code{PT_NULL} (0)
2874Indicates an unused program header.
2875
2876@item @code{PT_LOAD} (1)
2877Indicates that this program header describes a segment to be loaded from
2878the file.
2879
2880@item @code{PT_DYNAMIC} (2)
2881Indicates a segment where dynamic linking information can be found.
2882
2883@item @code{PT_INTERP} (3)
2884Indicates a segment where the name of the program interpreter may be
2885found.
2886
2887@item @code{PT_NOTE} (4)
2888Indicates a segment holding note information.
2889
2890@item @code{PT_SHLIB} (5)
2891A reserved program header type, defined but not specified by the ELF
2892ABI.
2893
2894@item @code{PT_PHDR} (6)
2895Indicates a segment where the program headers may be found.
2896
2897@item @var{expression}
2898An expression giving the numeric type of the program header. This may
2899be used for types not defined above.
2900@end table
2901
af54556a
ILT
2902You can specify that a segment should be loaded at a particular address
2903in memory by using an @code{AT} expression. This is identical to the
2904@code{AT} command used as an output section attribute (@pxref{Output
2905Section LMA}). The @code{AT} command for a program header overrides the
2906output section attribute.
c653b370 2907
af54556a
ILT
2908The linker will normally set the segment flags based on the sections
2909which comprise the segment. You may use the @code{FLAGS} keyword to
2910explicitly specify the segment flags. The value of @var{flags} must be
2911an integer. It is used to set the @code{p_flags} field of the program
2912header.
c653b370 2913
af54556a
ILT
2914Here is an example of @code{PHDRS}. This shows a typical set of program
2915headers used on a native ELF system.
c653b370
ILT
2916
2917@example
2918@group
2919PHDRS
2920@{
2921 headers PT_PHDR PHDRS ;
2922 interp PT_INTERP ;
2923 text PT_LOAD FILEHDR PHDRS ;
2924 data PT_LOAD ;
2925 dynamic PT_DYNAMIC ;
2926@}
2927
2928SECTIONS
2929@{
2930 . = SIZEOF_HEADERS;
2931 .interp : @{ *(.interp) @} :text :interp
2932 .text : @{ *(.text) @} :text
2933 .rodata : @{ *(.rodata) @} /* defaults to :text */
2934 @dots{}
2935 . = . + 0x1000; /* move to a new page in memory */
2936 .data : @{ *(.data) @} :data
2937 .dynamic : @{ *(.dynamic) @} :data :dynamic
2938 @dots{}
2939@}
2940@end group
2941@end example
2942
af54556a
ILT
2943@node VERSION
2944@section VERSION Command
5a59e34d
ILT
2945@kindex VERSION @{script text@}
2946@cindex symbol versions
2947@cindex version script
2948@cindex versions of symbols
af54556a
ILT
2949The linker supports symbol versions when using ELF. Symbol versions are
2950only useful when using shared libraries. The dynamic linker can use
2951symbol versions to select a specific version of a function when it runs
2952a program that may have been linked against an earlier version of the
2953shared library.
2954
2955You can include a version script directly in the main linker script, or
2956you can supply the version script as an implicit linker script. You can
2957also use the @samp{--version-script} linker option.
2958
2959The syntax of the @code{VERSION} command is simply
5a59e34d 2960@smallexample
af54556a 2961VERSION @{ version-script-commands @}
5a59e34d 2962@end smallexample
af54556a
ILT
2963
2964The format of the version script commands is identical to that used by
2965Sun's linker in Solaris 2.5. The version script defines a tree of
2966version nodes. You specify the node names and interdependencies in the
2967version script. You can specify which symbols are bound to which
2968version nodes, and you can reduce a specified set of symbols to local
2969scope so that they are not globally visible outside of the shared
5a59e34d
ILT
2970library.
2971
2972The easiest way to demonstrate the version script language is with a few
2973examples.
2974
2975@smallexample
2976VERS_1.1 @{
2977 global:
2978 foo1;
2979 local:
2980 old*;
2981 original*;
2982 new*;
2983@};
2984
2985VERS_1.2 @{
2986 foo2;
2987@} VERS_1.1;
2988
2989VERS_2.0 @{
2990 bar1; bar2;
2991@} VERS_1.2;
2992@end smallexample
2993
af54556a
ILT
2994This example version script defines three version nodes. The first
2995version node defined is @samp{VERS_1.1}; it has no other dependencies.
2996The script binds the symbol @samp{foo1} to @samp{VERS_1.1}. It reduces
2997a number of symbols to local scope so that they are not visible outside
2998of the shared library.
5a59e34d 2999
af54556a
ILT
3000Next, the version script defines node @samp{VERS_1.2}. This node
3001depends upon @samp{VERS_1.1}. The script binds the symbol @samp{foo2}
3002to the version node @samp{VERS_1.2}.
5a59e34d 3003
af54556a
ILT
3004Finally, the version script defines node @samp{VERS_2.0}. This node
3005depends upon @samp{VERS_1.2}. The scripts binds the symbols @samp{bar1}
3006and @samp{bar2} are bound to the version node @samp{VERS_2.0}.
5a59e34d 3007
af54556a
ILT
3008When the linker finds a symbol defined in a library which is not
3009specifically bound to a version node, it will effectively bind it to an
3010unspecified base version of the library. You can bind all otherwise
3011unspecified symbols to a given version node by using @samp{global: *}
3012somewhere in the version script.
5a59e34d 3013
af54556a
ILT
3014The names of the version nodes have no specific meaning other than what
3015they might suggest to the person reading them. The @samp{2.0} version
3016could just as well have appeared in between @samp{1.1} and @samp{1.2}.
3017However, this would be a confusing way to write a version script.
5a59e34d
ILT
3018
3019When you link an application against a shared library that has versioned
af54556a
ILT
3020symbols, the application itself knows which version of each symbol it
3021requires, and it also knows which version nodes it needs from each
3022shared library it is linked against. Thus at runtime, the dynamic
3023loader can make a quick check to make sure that the libraries you have
3024linked against do in fact supply all of the version nodes that the
3025application will need to resolve all of the dynamic symbols. In this
3026way it is possible for the dynamic linker to know with certainty that
3027all external symbols that it needs will be resolvable without having to
3028search for each symbol reference.
5a59e34d
ILT
3029
3030The symbol versioning is in effect a much more sophisticated way of
3031doing minor version checking that SunOS does. The fundamental problem
3032that is being addressed here is that typically references to external
3033functions are bound on an as-needed basis, and are not all bound when
3034the application starts up. If a shared library is out of date, a
3035required interface may be missing; when the application tries to use
3036that interface, it may suddenly and unexpectedly fail. With symbol
3037versioning, the user will get a warning when they start their program if
3038the libraries being used with the application are too old.
3039
3040There are several GNU extensions to Sun's versioning approach. The
3041first of these is the ability to bind a symbol to a version node in the
3042source file where the symbol is defined instead of in the versioning
3043script. This was done mainly to reduce the burden on the library
af54556a 3044maintainer. You can do this by putting something like:
5a59e34d
ILT
3045@smallexample
3046__asm__(".symver original_foo,foo@@VERS_1.1");
3047@end smallexample
af54556a
ILT
3048@noindent
3049in the C source file. This renames the function @samp{original_foo} to
5a59e34d
ILT
3050be an alias for @samp{foo} bound to the version node @samp{VERS_1.1}.
3051The @samp{local:} directive can be used to prevent the symbol
3052@samp{original_foo} from being exported.
3053
af54556a
ILT
3054The second GNU extension is to allow multiple versions of the same
3055function to appear in a given shared library. In this way you can make
3056an incompatible change to an interface without increasing the major
3057version number of the shared library, while still allowing applications
3058linked against the old interface to continue to function.
5a59e34d 3059
af54556a
ILT
3060To do this, you must use multiple @samp{.symver} directives in the
3061source file. Here is an example:
5a59e34d
ILT
3062
3063@smallexample
3064__asm__(".symver original_foo,foo@@");
3065__asm__(".symver old_foo,foo@@VERS_1.1");
3066__asm__(".symver old_foo1,foo@@VERS_1.2");
3067__asm__(".symver new_foo,foo@@@@VERS_2.0");
3068@end smallexample
3069
3070In this example, @samp{foo@@} represents the symbol @samp{foo} bound to the
3071unspecified base version of the symbol. The source file that contains this
3072example would define 4 C functions: @samp{original_foo}, @samp{old_foo},
3073@samp{old_foo1}, and @samp{new_foo}.
3074
3075When you have multiple definitions of a given symbol, there needs to be
3076some way to specify a default version to which external references to
af54556a
ILT
3077this symbol will be bound. You can do this with the
3078@samp{foo@@@@VERS_2.0} type of @samp{.symver} directive. You can only
3079declare one version of a symbol as the default in this manner; otherwise
3080you would effectively have multiple definitions of the same symbol.
5a59e34d
ILT
3081
3082If you wish to bind a reference to a specific version of the symbol
3083within the shared library, you can use the aliases of convenience
3084(i.e. @samp{old_foo}), or you can use the @samp{.symver} directive to
3085specifically bind to an external version of the function in question.
3086
af54556a
ILT
3087@node Expressions
3088@section Expressions in Linker Scripts
3089@cindex expressions
3090@cindex arithmetic
3091The syntax for expressions in the linker script language is identical to
3092that of C expressions. All expressions are evaluated as integers. All
3093expressions are evaluated in the same size, which is 32 bits if both the
3094host and target are 32 bits, and is otherwise 64 bits.
b4d4e8e3 3095
af54556a 3096You can use and set symbol values in expressions.
a1d393cf 3097
af54556a
ILT
3098The linker defines several special purpose builtin functions for use in
3099expressions.
a1d393cf 3100
af54556a
ILT
3101@menu
3102* Constants:: Constants
3103* Symbols:: Symbol Names
3104* Location Counter:: The Location Counter
3105* Operators:: Operators
3106* Evaluation:: Evaluation
3107* Expression Section:: The Section of an Expression
3108* Builtin Functions:: Builtin Functions
3109@end menu
a1d393cf 3110
af54556a
ILT
3111@node Constants
3112@subsection Constants
3113@cindex integer notation
3114@cindex constants in linker scripts
3115All constants are integers.
3116
3117As in C, the linker considers an integer beginning with @samp{0} to be
3118octal, and an integer beginning with @samp{0x} or @samp{0X} to be
3119hexadecimal. The linker considers other integers to be decimal.
3120
3121@cindex scaled integers
3122@cindex K and M integer suffixes
3123@cindex M and K integer suffixes
3124@cindex suffixes for integers
3125@cindex integer suffixes
3126In addition, you can use the suffixes @code{K} and @code{M} to scale a
3127constant by
3128@c TEXI2ROFF-KILL
3129@ifinfo
3130@c END TEXI2ROFF-KILL
3131@code{1024} or @code{1024*1024}
3132@c TEXI2ROFF-KILL
3133@end ifinfo
3134@tex
3135${\rm 1024}$ or ${\rm 1024}^2$
3136@end tex
3137@c END TEXI2ROFF-KILL
3138respectively. For example, the following all refer to the same quantity:
a1d393cf 3139@smallexample
af54556a
ILT
3140 _fourk_1 = 4K;
3141 _fourk_2 = 4096;
3142 _fourk_3 = 0x1000;
a1d393cf
ILT
3143@end smallexample
3144
af54556a
ILT
3145@node Symbols
3146@subsection Symbol Names
3147@cindex symbol names
3148@cindex names
3149@cindex quoted symbol names
3150@kindex "
3151Unless quoted, symbol names start with a letter, underscore, or period
3152and may include letters, digits, underscores, periods, and hyphens.
3153Unquoted symbol names must not conflict with any keywords. You can
3154specify a symbol which contains odd characters or has the same name as a
3155keyword by surrounding the symbol name in double quotes:
3156@smallexample
3157 "SECTION" = 9;
3158 "with a space" = "also with a space" + 10;
3159@end smallexample
1fb57a5d 3160
af54556a
ILT
3161Since symbols can contain many non-alphabetic characters, it is safest
3162to delimit symbols with spaces. For example, @samp{A-B} is one symbol,
3163whereas @samp{A - B} is an expression involving subtraction.
2c5c0674 3164
af54556a
ILT
3165@node Location Counter
3166@subsection The Location Counter
3167@kindex .
3168@cindex dot
3169@cindex location counter
3170@cindex current output location
3171The special linker variable @dfn{dot} @samp{.} always contains the
3172current output location counter. Since the @code{.} always refers to a
3173location in an output section, it may only appear in an expression
3174within a @code{SECTIONS} command. The @code{.} symbol may appear
3175anywhere that an ordinary symbol is allowed in an expression.
b4d4e8e3 3176
af54556a
ILT
3177@cindex holes
3178Assigning a value to @code{.} will cause the location counter to be
3179moved. This may be used to create holes in the output section. The
3180location counter may never be moved backwards.
3181
3182@smallexample
3183SECTIONS
3184@{
3185 output :
3186 @{
3187 file1(.text)
3188 . = . + 1000;
3189 file2(.text)
3190 . += 1000;
3191 file3(.text)
3192 @} = 0x1234;
3193@}
3194@end smallexample
3195@noindent
3196In the previous example, the @samp{.text} section from @file{file1} is
3197located at the beginning of the output section @samp{output}. It is
3198followed by a 1000 byte gap. Then the @samp{.text} section from
3199@file{file2} appears, also with a 1000 byte gap following before the
3200@samp{.text} section from @file{file3}. The notation @samp{= 0x1234}
3201specifies what data to write in the gaps (@pxref{Output Section Fill}).
5a59e34d 3202
af54556a
ILT
3203@need 2000
3204@node Operators
3205@subsection Operators
3206@cindex operators for arithmetic
3207@cindex arithmetic operators
3208@cindex precedence in expressions
3209The linker recognizes the standard C set of arithmetic operators, with
3210the standard bindings and precedence levels:
3211@c TEXI2ROFF-KILL
3212@ifinfo
3213@c END TEXI2ROFF-KILL
3214@smallexample
3215precedence associativity Operators Notes
3216(highest)
32171 left ! - ~ (1)
32182 left * / %
32193 left + -
32204 left >> <<
32215 left == != > < <= >=
32226 left &
32237 left |
32248 left &&
32259 left ||
322610 right ? :
322711 right &= += -= *= /= (2)
3228(lowest)
3229@end smallexample
3230Notes:
3231(1) Prefix operators
3232(2) @xref{Assignments}.
3233@c TEXI2ROFF-KILL
3234@end ifinfo
3235@tex
3236\vskip \baselineskip
3237%"lispnarrowing" is the extra indent used generally for smallexample
3238\hskip\lispnarrowing\vbox{\offinterlineskip
3239\hrule
3240\halign
3241{\vrule#&\strut\hfil\ #\ \hfil&\vrule#&\strut\hfil\ #\ \hfil&\vrule#&\strut\hfil\ {\tt #}\ \hfil&\vrule#\cr
3242height2pt&\omit&&\omit&&\omit&\cr
3243&Precedence&& Associativity &&{\rm Operators}&\cr
3244height2pt&\omit&&\omit&&\omit&\cr
3245\noalign{\hrule}
3246height2pt&\omit&&\omit&&\omit&\cr
3247&highest&&&&&\cr
3248% '176 is tilde, '~' in tt font
3249&1&&left&&\qquad- \char'176\ !\qquad\dag&\cr
3250&2&&left&&* / \%&\cr
3251&3&&left&&+ -&\cr
3252&4&&left&&>> <<&\cr
3253&5&&left&&== != > < <= >=&\cr
3254&6&&left&&\&&\cr
3255&7&&left&&|&\cr
3256&8&&left&&{\&\&}&\cr
3257&9&&left&&||&\cr
3258&10&&right&&? :&\cr
3259&11&&right&&\qquad\&= += -= *= /=\qquad\ddag&\cr
3260&lowest&&&&&\cr
3261height2pt&\omit&&\omit&&\omit&\cr}
3262\hrule}
3263@end tex
3264@iftex
3265{
3266@obeylines@parskip=0pt@parindent=0pt
3267@dag@quad Prefix operators.
3268@ddag@quad @xref{Assignments}.
3269}
3270@end iftex
3271@c END TEXI2ROFF-KILL
7f9ae73e 3272
af54556a
ILT
3273@node Evaluation
3274@subsection Evaluation
3275@cindex lazy evaluation
3276@cindex expression evaluation order
3277The linker evaluates expressions lazily. It only computes the value of
3278an expression when absolutely necessary.
b4d4e8e3 3279
af54556a
ILT
3280The linker needs some information, such as the value of the start
3281address of the first section, and the origins and lengths of memory
3282regions, in order to do any linking at all. These values are computed
3283as soon as possible when the linker reads in the linker script.
01bc8f35 3284
af54556a
ILT
3285However, other values (such as symbol values) are not known or needed
3286until after storage allocation. Such values are evaluated later, when
3287other information (such as the sizes of output sections) is available
3288for use in the symbol assignment expression.
0b3499f6 3289
af54556a
ILT
3290The sizes of sections cannot be known until after allocation, so
3291assignments dependent upon these are not performed until after
3292allocation.
b4d4e8e3 3293
af54556a
ILT
3294Some expressions, such as those depending upon the location counter
3295@samp{.}, must be evaluated during section allocation.
2c5c0674 3296
af54556a
ILT
3297If the result of an expression is required, but the value is not
3298available, then an error results. For example, a script like the
3299following
3300@smallexample
3301@group
3302SECTIONS
3303 @{
3304 .text 9+this_isnt_constant :
3305 @{ *(.text) @}
3306 @}
3307@end group
3308@end smallexample
3309@noindent
3310will cause the error message @samp{non constant expression for initial
3311address}.
3312
3313@node Expression Section
3314@subsection The Section of an Expression
3315@cindex expression sections
3316@cindex absolute expressions
3317@cindex relative expressions
3318@cindex absolute and relocatable symbols
3319@cindex relocatable and absolute symbols
3320@cindex symbols, relocatable and absolute
3321When the linker evaluates an expression, the result is either absolute
3322or relative to some section. A relative expression is expressed as a
3323fixed offset from the base of a section.
3324
3325The position of the expression within the linker script determines
3326whether it is absolute or relative. An expression which appears within
3327an output section definition is relative to the base of the output
3328section. An expression which appears elsewhere will be absolute.
3329
3330A symbol set to a relative expression will be relocatable if you request
3331relocatable output using the @samp{-r} option. That means that a
3332further link operation may change the value of the symbol. The symbol's
3333section will be the section of the relative expression.
3334
3335A symbol set to an absolute expression will retain the same value
3336through any further link operation. The symbol will be absolute, and
3337will not have any particular associated section.
3338
3339You can use the builtin function @code{ABSOLUTE} to force an expression
3340to be absolute when it would otherwise be relative. For example, to
3341create an absolute symbol set to the address of the end of the output
3342section @samp{.data}:
3343@smallexample
3344SECTIONS
3345 @{
3346 .data : @{ *(.data) _edata = ABSOLUTE(.); @}
3347 @}
3348@end smallexample
3349@noindent
3350If @samp{ABSOLUTE} were not used, @samp{_edata} would be relative to the
3351@samp{.data} section.
2c5c0674 3352
af54556a
ILT
3353@node Builtin Functions
3354@subsection Builtin Functions
3355@cindex functions in expressions
3356The linker script language includes a number of builtin functions for
3357use in linker script expressions.
2c5c0674 3358
af54556a
ILT
3359@table @code
3360@item ABSOLUTE(@var{exp})
3361@kindex ABSOLUTE(@var{exp})
3362@cindex expression, absolute
3363Return the absolute (non-relocatable, as opposed to non-negative) value
3364of the expression @var{exp}. Primarily useful to assign an absolute
3365value to a symbol within a section definition, where symbol values are
3366normally section relative. @xref{Expression Section}.
b4d4e8e3 3367
af54556a
ILT
3368@item ADDR(@var{section})
3369@kindex ADDR(@var{section})
3370@cindex section address in expression
3371Return the absolute address (the VMA) of the named @var{section}. Your
3372script must previously have defined the location of that section. In
3373the following example, @code{symbol_1} and @code{symbol_2} are assigned
3374identical values:
3375@smallexample
3376@group
3377SECTIONS @{ @dots{}
3378 .output1 :
3379 @{
3380 start_of_output_1 = ABSOLUTE(.);
3381 @dots{}
3382 @}
3383 .output :
3384 @{
3385 symbol_1 = ADDR(.output1);
3386 symbol_2 = start_of_output_1;
3387 @}
3388@dots{} @}
3389@end group
3390@end smallexample
2c5c0674 3391
af54556a
ILT
3392@item ALIGN(@var{exp})
3393@kindex ALIGN(@var{exp})
3394@cindex round up location counter
3395@cindex align location counter
3396Return the location counter (@code{.}) aligned to the next @var{exp}
3397boundary. @var{exp} must be an expression whose value is a power of
3398two. This is equivalent to
3399@smallexample
3400(. + @var{exp} - 1) & ~(@var{exp} - 1)
3401@end smallexample
582dd77f 3402
af54556a
ILT
3403@code{ALIGN} doesn't change the value of the location counter---it just
3404does arithmetic on it. Here is an example which aligns the output
3405@code{.data} section to the next @code{0x2000} byte boundary after the
3406preceding section and sets a variable within the section to the next
3407@code{0x8000} boundary after the input sections:
3408@smallexample
3409@group
3410SECTIONS @{ @dots{}
3411 .data ALIGN(0x2000): @{
3412 *(.data)
3413 variable = ALIGN(0x8000);
3414 @}
3415@dots{} @}
3416@end group
3417@end smallexample
3418@noindent
3419The first use of @code{ALIGN} in this example specifies the location of
3420a section because it is used as the optional @var{address} attribute of
3421a section definition (@pxref{Output Section Address}). The second use
3422of @code{ALIGN} is used to defines the value of a symbol.
582dd77f 3423
af54556a 3424The builtin function @code{NEXT} is closely related to @code{ALIGN}.
582dd77f 3425
af54556a
ILT
3426@item BLOCK(@var{exp})
3427@kindex BLOCK(@var{exp})
3428This is a synonym for @code{ALIGN}, for compatibility with older linker
3429scripts. It is most often seen when setting the address of an output
3430section.
3431
3432@item DEFINED(@var{symbol})
3433@kindex DEFINED(@var{symbol})
3434@cindex symbol defaults
3435Return 1 if @var{symbol} is in the linker global symbol table and is
3436defined, otherwise return 0. You can use this function to provide
3437default values for symbols. For example, the following script fragment
3438shows how to set a global symbol @samp{begin} to the first location in
3439the @samp{.text} section---but if a symbol called @samp{begin} already
3440existed, its value is preserved:
3441
3442@smallexample
3443@group
da713b8f 3444SECTIONS @{ @dots{}
af54556a
ILT
3445 .text : @{
3446 begin = DEFINED(begin) ? begin : . ;
3447 @dots{}
3448 @}
da713b8f
ILT
3449 @dots{}
3450@}
af54556a
ILT
3451@end group
3452@end smallexample
3453
3454@item LOADADDR(@var{section})
3455@kindex LOADADDR(@var{section})
3456@cindex section load address in expression
3457Return the absolute LMA of the named @var{section}. This is normally
3458the same as @code{ADDR}, but it may be different if the @code{AT}
3459attribute is used in the output section definition (@pxref{Output
3460Section LMA}).
3461
3462@kindex MAX
3463@item MAX(@var{exp1}, @var{exp2})
3464Returns the maximum of @var{exp1} and @var{exp2}.
3465
3466@kindex MIN
3467@item MIN(@var{exp1}, @var{exp2})
3468Returns the minimum of @var{exp1} and @var{exp2}.
3469
3470@item NEXT(@var{exp})
3471@kindex NEXT(@var{exp})
3472@cindex unallocated address, next
3473Return the next unallocated address that is a multiple of @var{exp}.
3474This function is closely related to @code{ALIGN(@var{exp})}; unless you
3475use the @code{MEMORY} command to define discontinuous memory for the
3476output file, the two functions are equivalent.
3477
3478@item SIZEOF(@var{section})
3479@kindex SIZEOF(@var{section})
3480@cindex section size
3481Return the size in bytes of the named @var{section}, if that section has
3482been allocated. If the section has not been allocated when this is
3483evaluated, the linker will report an error. In the following example,
3484@code{symbol_1} and @code{symbol_2} are assigned identical values:
3485@smallexample
3486@group
3487SECTIONS@{ @dots{}
3488 .output @{
3489 .start = . ;
3490 @dots{}
3491 .end = . ;
3492 @}
3493 symbol_1 = .end - .start ;
3494 symbol_2 = SIZEOF(.output);
3495@dots{} @}
3496@end group
3497@end smallexample
3498
3499@item SIZEOF_HEADERS
3500@itemx sizeof_headers
3501@kindex SIZEOF_HEADERS
3502@cindex header size
3503Return the size in bytes of the output file's headers. This is
3504information which appears at the start of the output file. You can use
3505this number when setting the start address of the first section, if you
3506choose, to facilitate paging.
3507
3508@cindex not enough room for program headers
3509@cindex program headers, not enough room
3510When producing an ELF output file, if the linker script uses the
3511@code{SIZEOF_HEADERS} builtin function, the linker must compute the
3512number of program headers before it has determined all the section
3513addresses and sizes. If the linker later discovers that it needs
3514additional program headers, it will report an error @samp{not enough
3515room for program headers}. To avoid this error, you must avoid using
3516the @code{SIZEOF_HEADERS} function, or you must rework your linker
3517script to avoid forcing the linker to use additional program headers, or
3518you must define the program headers yourself using the @code{PHDRS}
3519command (@pxref{PHDRS}).
b4d4e8e3
RP
3520@end table
3521
f8cf2baa
ILT
3522@node Implicit Linker Scripts
3523@section Implicit Linker Scripts
3524@cindex implicit linker scripts
3525If you specify a linker input file which the linker can not recognize as
3526an object file or an archive file, it will try to read the file as a
3527linker script. If the file can not be parsed as a linker script, the
3528linker will report an error.
3529
3530An implicit linker script will not replace the default linker script.
3531
3532Typically an implicit linker script would contain only symbol
3533assignments, or the @code{INPUT}, @code{GROUP}, or @code{VERSION}
3534commands.
3535
3536Any input files read because of an implicit linker script will be read
3537at the position in the command line where the implicit linker script was
3538read. This can affect archive searching.
3539
ec40bbb8
DM
3540@ifset GENERIC
3541@node Machine Dependent
1c48127e
RP
3542@chapter Machine Dependent Features
3543
3544@cindex machine dependencies
246504a5
RP
3545@code{ld} has additional features on some platforms; the following
3546sections describe them. Machines where @code{ld} has no additional
1c48127e
RP
3547functionality are not listed.
3548
3549@menu
246504a5
RP
3550* H8/300:: @code{ld} and the H8/300
3551* i960:: @code{ld} and the Intel 960 family
da713b8f 3552* ARM:: @code{ld} and the ARM family
1c48127e 3553@end menu
ec40bbb8
DM
3554@end ifset
3555
7f9ae73e 3556@c FIXME! This could use @raisesections/@lowersections, but there seems to be a conflict
ec40bbb8
DM
3557@c between those and node-defaulting.
3558@ifset H8300
3559@ifclear GENERIC
7f9ae73e 3560@raisesections
ec40bbb8 3561@end ifclear
da713b8f 3562
ec40bbb8 3563@node H8/300
246504a5 3564@section @code{ld} and the H8/300
1c48127e
RP
3565
3566@cindex H8/300 support
246504a5 3567For the H8/300, @code{ld} can perform these global optimizations when
9fde46a4 3568you specify the @samp{--relax} command-line option.
1c48127e
RP
3569
3570@table @emph
d76ae847 3571@cindex relaxing on H8/300
c653b370 3572@item relaxing address modes
246504a5 3573@code{ld} finds all @code{jsr} and @code{jmp} instructions whose
1c48127e
RP
3574targets are within eight bits, and turns them into eight-bit
3575program-counter relative @code{bsr} and @code{bra} instructions,
3576respectively.
3577
d76ae847 3578@cindex synthesizing on H8/300
c653b370 3579@item synthesizing instructions
1c48127e 3580@c FIXME: specifically mov.b, or any mov instructions really?
246504a5 3581@code{ld} finds all @code{mov.b} instructions which use the
1c48127e
RP
3582sixteen-bit absolute address form, but refer to the top
3583page of memory, and changes them to use the eight-bit address form.
3584(That is: the linker turns @samp{mov.b @code{@@}@var{aa}:16} into
3585@samp{mov.b @code{@@}@var{aa}:8} whenever the address @var{aa} is in the
3586top page of memory).
3587@end table
da713b8f 3588
ec40bbb8 3589@ifclear GENERIC
7f9ae73e 3590@lowersections
ec40bbb8
DM
3591@end ifclear
3592@end ifset
3593
f9d3d71a
ILT
3594@ifclear GENERIC
3595@ifset Hitachi
3596@c This stuff is pointless to say unless you're especially concerned
3597@c with Hitachi chips; don't enable it for generic case, please.
3598@node Hitachi
3599@chapter @code{ld} and other Hitachi chips
3600
3601@code{ld} also supports the H8/300H, the H8/500, and the Hitachi SH. No
3602special features, commands, or command-line options are required for
3603these chips.
3604@end ifset
3605@end ifclear
3606
ec40bbb8
DM
3607@ifset I960
3608@ifclear GENERIC
7f9ae73e 3609@raisesections
ec40bbb8 3610@end ifclear
da713b8f 3611
ec40bbb8 3612@node i960
246504a5 3613@section @code{ld} and the Intel 960 family
1c48127e
RP
3614
3615@cindex i960 support
d76ae847 3616
1c48127e
RP
3617You can use the @samp{-A@var{architecture}} command line option to
3618specify one of the two-letter names identifying members of the 960
3619family; the option specifies the desired output target, and warns of any
3620incompatible instructions in the input files. It also modifies the
3621linker's search strategy for archive libraries, to support the use of
3622libraries specific to each particular architecture, by including in the
3623search loop names suffixed with the string identifying the architecture.
3624
246504a5 3625For example, if your @code{ld} command line included @w{@samp{-ACA}} as
1c48127e 3626well as @w{@samp{-ltry}}, the linker would look (in its built-in search
ec40bbb8 3627paths, and in any paths you specify with @samp{-L}) for a library with
1c48127e 3628the names
ec40bbb8 3629
c653b370
ILT
3630@smallexample
3631@group
1c48127e
RP
3632try
3633libtry.a
3634tryca
3635libtryca.a
c653b370
ILT
3636@end group
3637@end smallexample
ec40bbb8 3638
1c48127e
RP
3639@noindent
3640The first two possibilities would be considered in any event; the last
3641two are due to the use of @w{@samp{-ACA}}.
3642
ec40bbb8 3643You can meaningfully use @samp{-A} more than once on a command line, since
1c48127e 3644the 960 architecture family allows combination of target architectures; each
ec40bbb8 3645use will add another pair of name variants to search for when @w{@samp{-l}}
1c48127e 3646specifies a library.
1fb57a5d 3647
9fde46a4 3648@cindex @code{--relax} on i960
1fb57a5d 3649@cindex relaxing on i960
9fde46a4
ILT
3650@code{ld} supports the @samp{--relax} option for the i960 family. If
3651you specify @samp{--relax}, @code{ld} finds all @code{balx} and
3652@code{calx} instructions whose targets are within 24 bits, and turns
3653them into 24-bit program-counter relative @code{bal} and @code{cal}
1fb57a5d
RP
3654instructions, respectively. @code{ld} also turns @code{cal}
3655instructions into @code{bal} instructions when it determines that the
3656target subroutine is a leaf routine (that is, the target subroutine does
3657not itself call any subroutines).
3658
ec40bbb8 3659@ifclear GENERIC
7f9ae73e 3660@lowersections
ec40bbb8
DM
3661@end ifclear
3662@end ifset
1c48127e 3663
da713b8f
ILT
3664@ifclear GENERIC
3665@raisesections
3666@end ifclear
3667
3668@node ARM
3669@section @code{ld}'s support for interworking between ARM and Thumb code
3670
3671@cindex ARM interworking support
3672@cindex --support-old-code
3673For the ARM, @code{ld} will generate code stubs to allow functions calls
3674betweem ARM and Thumb code. These stubs only work with code that has
3675been compiled and assembled with the @samp{-mthumb-interwork} command
3676line option. If it is necessary to link with old ARM object files or
3677libraries, which have not been compiled with the -mthumb-interwork
3678option then the @samp{--support-old-code} command line switch should be
3679given to the linker. This will make it generate larger stub functions
3680which will work with non-interworking aware ARM code. Note, however,
3681the linker does not support generating stubs for function calls to
3682non-interworking aware Thumb code.
3683
3684@ifclear GENERIC
3685@lowersections
3686@end ifclear
3687
ec40bbb8
DM
3688@ifclear SingleFormat
3689@node BFD
f22eee08
RP
3690@chapter BFD
3691
2c5c0674
RP
3692@cindex back end
3693@cindex object file management
d4e5e3c3
DM
3694@cindex object formats available
3695@kindex objdump -i
2c5c0674
RP
3696The linker accesses object and archive files using the BFD libraries.
3697These libraries allow the linker to use the same routines to operate on
3698object files whatever the object file format. A different object file
3699format can be supported simply by creating a new BFD back end and adding
d4e5e3c3
DM
3700it to the library. To conserve runtime memory, however, the linker and
3701associated tools are usually configured to support only a subset of the
3702object file formats available. You can use @code{objdump -i}
1c48127e 3703(@pxref{objdump,,objdump,binutils.info,The GNU Binary Utilities}) to
d4e5e3c3 3704list all the formats available for your configuration.
f22eee08 3705
2c5c0674
RP
3706@cindex BFD requirements
3707@cindex requirements for BFD
3708As with most implementations, BFD is a compromise between
f22eee08 3709several conflicting requirements. The major factor influencing
2c5c0674
RP
3710BFD design was efficiency: any time used converting between
3711formats is time which would not have been spent had BFD not
f22eee08 3712been involved. This is partly offset by abstraction payback; since
2c5c0674 3713BFD simplifies applications and back ends, more time and care
f22eee08
RP
3714may be spent optimizing algorithms for a greater speed.
3715
2c5c0674
RP
3716One minor artifact of the BFD solution which you should bear in
3717mind is the potential for information loss. There are two places where
ec40bbb8 3718useful information can be lost using the BFD mechanism: during
2c5c0674
RP
3719conversion and during output. @xref{BFD information loss}.
3720
3721@menu
2d59b2c3 3722* BFD outline:: How it works: an outline of BFD
2c5c0674 3723@end menu
f22eee08 3724
ec40bbb8 3725@node BFD outline
b4d4e8e3 3726@section How it works: an outline of BFD
2c5c0674 3727@cindex opening object files
3e27cc11 3728@include bfdsumm.texi
ec40bbb8 3729@end ifclear
f22eee08 3730
9fde46a4
ILT
3731@node Reporting Bugs
3732@chapter Reporting Bugs
3733@cindex bugs in @code{ld}
3734@cindex reporting bugs in @code{ld}
3735
3736Your bug reports play an essential role in making @code{ld} reliable.
3737
3738Reporting a bug may help you by bringing a solution to your problem, or
3739it may not. But in any case the principal function of a bug report is
3740to help the entire community by making the next version of @code{ld}
3741work better. Bug reports are your contribution to the maintenance of
3742@code{ld}.
3743
3744In order for a bug report to serve its purpose, you must include the
3745information that enables us to fix the bug.
3746
3747@menu
3748* Bug Criteria:: Have you found a bug?
3749* Bug Reporting:: How to report bugs
3750@end menu
3751
3752@node Bug Criteria
3753@section Have you found a bug?
3754@cindex bug criteria
3755
3756If you are not sure whether you have found a bug, here are some guidelines:
3757
3758@itemize @bullet
3759@cindex fatal signal
3760@cindex linker crash
3761@cindex crash of linker
3762@item
3763If the linker gets a fatal signal, for any input whatever, that is a
3764@code{ld} bug. Reliable linkers never crash.
3765
3766@cindex error on valid input
3767@item
3768If @code{ld} produces an error message for valid input, that is a bug.
3769
3770@cindex invalid input
3771@item
3772If @code{ld} does not produce an error message for invalid input, that
3773may be a bug. In the general case, the linker can not verify that
3774object files are correct.
3775
3776@item
3777If you are an experienced user of linkers, your suggestions for
3778improvement of @code{ld} are welcome in any case.
3779@end itemize
3780
3781@node Bug Reporting
3782@section How to report bugs
3783@cindex bug reports
3784@cindex @code{ld} bugs, reporting
3785
3786A number of companies and individuals offer support for @sc{gnu}
3787products. If you obtained @code{ld} from a support organization, we
3788recommend you contact that organization first.
3789
3790You can find contact information for many support companies and
3791individuals in the file @file{etc/SERVICE} in the @sc{gnu} Emacs
3792distribution.
3793
af54556a
ILT
3794Otherwise, send bug reports for @code{ld} to
3795@samp{bug-gnu-utils@@gnu.org}.
9fde46a4
ILT
3796
3797The fundamental principle of reporting bugs usefully is this:
3798@strong{report all the facts}. If you are not sure whether to state a
3799fact or leave it out, state it!
3800
3801Often people omit facts because they think they know what causes the
3802problem and assume that some details do not matter. Thus, you might
3803assume that the name of a symbol you use in an example does not matter.
3804Well, probably it does not, but one cannot be sure. Perhaps the bug is
3805a stray memory reference which happens to fetch from the location where
3806that name is stored in memory; perhaps, if the name were different, the
3807contents of that location would fool the linker into doing the right
3808thing despite the bug. Play it safe and give a specific, complete
3809example. That is the easiest thing for you to do, and the most helpful.
3810
3811Keep in mind that the purpose of a bug report is to enable us to fix the bug if
3812it is new to us. Therefore, always write your bug reports on the assumption
3813that the bug has not been reported previously.
3814
3815Sometimes people give a few sketchy facts and ask, ``Does this ring a
3816bell?'' Those bug reports are useless, and we urge everyone to
3817@emph{refuse to respond to them} except to chide the sender to report
3818bugs properly.
3819
3820To enable us to fix the bug, you should include all these things:
3821
3822@itemize @bullet
3823@item
3824The version of @code{ld}. @code{ld} announces it if you start it with
3825the @samp{--version} argument.
3826
3827Without this, we will not know whether there is any point in looking for
3828the bug in the current version of @code{ld}.
3829
3830@item
3831Any patches you may have applied to the @code{ld} source, including any
3832patches made to the @code{BFD} library.
3833
3834@item
3835The type of machine you are using, and the operating system name and
3836version number.
3837
3838@item
3839What compiler (and its version) was used to compile @code{ld}---e.g.
3840``@code{gcc-2.7}''.
3841
3842@item
3843The command arguments you gave the linker to link your example and
3844observe the bug. To guarantee you will not omit something important,
3845list them all. A copy of the Makefile (or the output from make) is
3846sufficient.
3847
3848If we were to try to guess the arguments, we would probably guess wrong
3849and then we might not encounter the bug.
3850
3851@item
3852A complete input file, or set of input files, that will reproduce the
3853bug. It is generally most helpful to send the actual object files,
3854uuencoded if necessary to get them through the mail system. Making them
3855available for anonymous FTP is not as good, but may be the only
3856reasonable choice for large object files.
3857
3858If the source files were assembled using @code{gas} or compiled using
3859@code{gcc}, then it may be OK to send the source files rather than the
3860object files. In this case, be sure to say exactly what version of
3861@code{gas} or @code{gcc} was used to produce the object files. Also say
3862how @code{gas} or @code{gcc} were configured.
3863
3864@item
3865A description of what behavior you observe that you believe is
3866incorrect. For example, ``It gets a fatal signal.''
3867
3868Of course, if the bug is that @code{ld} gets a fatal signal, then we
3869will certainly notice it. But if the bug is incorrect output, we might
3870not notice unless it is glaringly wrong. You might as well not give us
3871a chance to make a mistake.
3872
3873Even if the problem you experience is a fatal signal, you should still
3874say so explicitly. Suppose something strange is going on, such as, your
3875copy of @code{ld} is out of synch, or you have encountered a bug in the
3876C library on your system. (This has happened!) Your copy might crash
3877and ours would not. If you told us to expect a crash, then when ours
3878fails to crash, we would know that the bug was not happening for us. If
3879you had not told us to expect a crash, then we would not be able to draw
3880any conclusion from our observations.
3881
3882@item
3883If you wish to suggest changes to the @code{ld} source, send us context
3884diffs, as generated by @code{diff} with the @samp{-u}, @samp{-c}, or
3885@samp{-p} option. Always send diffs from the old file to the new file.
3886If you even discuss something in the @code{ld} source, refer to it by
3887context, not by line number.
3888
3889The line numbers in our development sources will not match those in your
3890sources. Your line numbers would convey no useful information to us.
3891@end itemize
3892
3893Here are some things that are not necessary:
3894
3895@itemize @bullet
3896@item
3897A description of the envelope of the bug.
3898
3899Often people who encounter a bug spend a lot of time investigating
3900which changes to the input file will make the bug go away and which
3901changes will not affect it.
3902
3903This is often time consuming and not very useful, because the way we
3904will find the bug is by running a single example under the debugger
3905with breakpoints, not by pure deduction from a series of examples.
3906We recommend that you save your time for something else.
3907
3908Of course, if you can find a simpler example to report @emph{instead}
3909of the original one, that is a convenience for us. Errors in the
3910output will be easier to spot, running under the debugger will take
3911less time, and so on.
3912
3913However, simplification is not vital; if you do not want to do this,
3914report the bug anyway and send us the entire test case you used.
3915
3916@item
3917A patch for the bug.
3918
3919A patch for the bug does help us if it is a good one. But do not omit
3920the necessary information, such as the test case, on the assumption that
3921a patch is all we need. We might see problems with your patch and decide
3922to fix the problem another way, or we might not understand it at all.
3923
de220cbd
ILT
3924Sometimes with a program as complicated as @code{ld} it is very hard to
3925construct an example that will make the program follow a certain path
3926through the code. If you do not send us the example, we will not be
3927able to construct one, so we will not be able to verify that the bug is
3928fixed.
9fde46a4
ILT
3929
3930And if we cannot understand what bug you are trying to fix, or why your
3931patch should be an improvement, we will not install it. A test case will
3932help us to understand.
3933
3934@item
3935A guess about what the bug is or what it depends on.
3936
3937Such guesses are usually wrong. Even we cannot guess right about such
3938things without first using the debugger to find the facts.
3939@end itemize
3940
ec40bbb8 3941@node MRI
2d59b2c3
RP
3942@appendix MRI Compatible Script Files
3943@cindex MRI compatibility
3944To aid users making the transition to @sc{gnu} @code{ld} from the MRI
3945linker, @code{ld} can use MRI compatible linker scripts as an
3946alternative to the more general-purpose linker scripting language
af54556a
ILT
3947described in @ref{Scripts}. MRI compatible linker scripts have a much
3948simpler command set than the scripting language otherwise used with
3949@code{ld}. @sc{gnu} @code{ld} supports the most commonly used MRI
3950linker commands; these commands are described here.
2d59b2c3 3951
867a1b8a
DM
3952In general, MRI scripts aren't of much use with the @code{a.out} object
3953file format, since it only has three sections and MRI scripts lack some
3954features to make use of them.
3955
2d59b2c3
RP
3956You can specify a file containing an MRI-compatible script using the
3957@samp{-c} command-line option.
3958
3959Each command in an MRI-compatible script occupies its own line; each
3960command line starts with the keyword that identifies the command (though
3961blank lines are also allowed for punctuation). If a line of an
3962MRI-compatible script begins with an unrecognized keyword, @code{ld}
3963issues a warning message, but continues processing the script.
3964
3965Lines beginning with @samp{*} are comments.
3966
3967You can write these commands using all upper-case letters, or all
3968lower case; for example, @samp{chip} is the same as @samp{CHIP}.
3969The following list shows only the upper-case form of each command.
3970
3971@table @code
d4e5e3c3 3972@cindex @code{ABSOLUTE} (MRI)
2d59b2c3 3973@item ABSOLUTE @var{secname}
c653b370 3974@itemx ABSOLUTE @var{secname}, @var{secname}, @dots{} @var{secname}
2d59b2c3
RP
3975Normally, @code{ld} includes in the output file all sections from all
3976the input files. However, in an MRI-compatible script, you can use the
3977@code{ABSOLUTE} command to restrict the sections that will be present in
3978your output program. If the @code{ABSOLUTE} command is used at all in a
3979script, then only the sections named explicitly in @code{ABSOLUTE}
3980commands will appear in the linker output. You can still use other
3981input sections (whatever you select on the command line, or using
7b015547 3982@code{LOAD}) to resolve addresses in the output file.
2d59b2c3 3983
2d59b2c3 3984@cindex @code{ALIAS} (MRI)
d4e5e3c3 3985@item ALIAS @var{out-secname}, @var{in-secname}
2d59b2c3
RP
3986Use this command to place the data from input section @var{in-secname}
3987in a section called @var{out-secname} in the linker output file.
3988
3989@var{in-secname} may be an integer.
3990
e54bf1c1
ILT
3991@cindex @code{ALIGN} (MRI)
3992@item ALIGN @var{secname} = @var{expression}
3993Align the section called @var{secname} to @var{expression}. The
3994@var{expression} should be a power of two.
3995
2d59b2c3 3996@cindex @code{BASE} (MRI)
d4e5e3c3 3997@item BASE @var{expression}
2d59b2c3
RP
3998Use the value of @var{expression} as the lowest address (other than
3999absolute addresses) in the output file.
4000
d4e5e3c3 4001@cindex @code{CHIP} (MRI)
2d59b2c3
RP
4002@item CHIP @var{expression}
4003@itemx CHIP @var{expression}, @var{expression}
ec40bbb8 4004This command does nothing; it is accepted only for compatibility.
2d59b2c3 4005
2d59b2c3 4006@cindex @code{END} (MRI)
d4e5e3c3 4007@item END
2d59b2c3
RP
4008This command does nothing whatever; it's only accepted for compatibility.
4009
2d59b2c3 4010@cindex @code{FORMAT} (MRI)
d4e5e3c3 4011@item FORMAT @var{output-format}
2d59b2c3
RP
4012Similar to the @code{OUTPUT_FORMAT} command in the more general linker
4013language, but restricted to one of these output formats:
d4e5e3c3 4014
2d59b2c3
RP
4015@enumerate
4016@item
4017S-records, if @var{output-format} is @samp{S}
4018
4019@item
4020IEEE, if @var{output-format} is @samp{IEEE}
4021
4022@item
4023COFF (the @samp{coff-m68k} variant in BFD), if @var{output-format} is
4024@samp{COFF}
4025@end enumerate
4026
2d59b2c3 4027@cindex @code{LIST} (MRI)
d4e5e3c3 4028@item LIST @var{anything}@dots{}
2d59b2c3
RP
4029Print (to the standard output file) a link map, as produced by the
4030@code{ld} command-line option @samp{-M}.
4031
ec40bbb8
DM
4032The keyword @code{LIST} may be followed by anything on the
4033same line, with no change in its effect.
2d59b2c3 4034
d4e5e3c3 4035@cindex @code{LOAD} (MRI)
2d59b2c3 4036@item LOAD @var{filename}
c653b370 4037@itemx LOAD @var{filename}, @var{filename}, @dots{} @var{filename}
2d59b2c3
RP
4038Include one or more object file @var{filename} in the link; this has the
4039same effect as specifying @var{filename} directly on the @code{ld}
4040command line.
4041
2d59b2c3 4042@cindex @code{NAME} (MRI)
d4e5e3c3 4043@item NAME @var{output-name}
2d59b2c3
RP
4044@var{output-name} is the name for the program produced by @code{ld}; the
4045MRI-compatible command @code{NAME} is equivalent to the command-line
4046option @samp{-o} or the general script language command @code{OUTPUT}.
4047
d4e5e3c3 4048@cindex @code{ORDER} (MRI)
2d59b2c3
RP
4049@item ORDER @var{secname}, @var{secname}, @dots{} @var{secname}
4050@itemx ORDER @var{secname} @var{secname} @var{secname}
ec40bbb8
DM
4051Normally, @code{ld} orders the sections in its output file in the
4052order in which they first appear in the input files. In an MRI-compatible
4053script, you can override this ordering with the @code{ORDER} command. The
2d59b2c3
RP
4054sections you list with @code{ORDER} will appear first in your output
4055file, in the order specified.
4056
d4e5e3c3 4057@cindex @code{PUBLIC} (MRI)
2d59b2c3
RP
4058@item PUBLIC @var{name}=@var{expression}
4059@itemx PUBLIC @var{name},@var{expression}
4060@itemx PUBLIC @var{name} @var{expression}
ec40bbb8 4061Supply a value (@var{expression}) for external symbol
2d59b2c3
RP
4062@var{name} used in the linker input files.
4063
d4e5e3c3 4064@cindex @code{SECT} (MRI)
2d59b2c3
RP
4065@item SECT @var{secname}, @var{expression}
4066@itemx SECT @var{secname}=@var{expression}
4067@itemx SECT @var{secname} @var{expression}
2d59b2c3
RP
4068You can use any of these three forms of the @code{SECT} command to
4069specify the start address (@var{expression}) for section @var{secname}.
4070If you have more than one @code{SECT} statement for the same
4071@var{secname}, only the @emph{first} sets the start address.
4072@end table
4073
ec40bbb8 4074@node Index
2c5c0674
RP
4075@unnumbered Index
4076
4077@printindex cp
4078
4079@tex
4080% I think something like @colophon should be in texinfo. In the
4081% meantime:
4082\long\def\colophon{\hbox to0pt{}\vfill
4083\centerline{The body of this manual is set in}
4084\centerline{\fontname\tenrm,}
4085\centerline{with headings in {\bf\fontname\tenbf}}
4086\centerline{and examples in {\tt\fontname\tentt}.}
4087\centerline{{\it\fontname\tenit\/} and}
4088\centerline{{\sl\fontname\tensl\/}}
4089\centerline{are used for emphasis.}\vfill}
4090\page\colophon
c653b370 4091% Blame: doc@cygnus.com, 28mar91.
2c5c0674
RP
4092@end tex
4093
4094
b4d4e8e3 4095@contents
f22eee08
RP
4096@bye
4097
4098