4 @include configdoc.texi
5 @c (configdoc.texi is generated by the Makefile)
13 * Ld: (ld). The GNU linker.
19 This file documents the @sc{gnu} linker LD version @value{VERSION}.
21 Copyright (C) 1991, 92, 93, 94, 95, 96, 97, 98, 99, 2000 Free Software Foundation, Inc.
23 Permission is granted to make and distribute verbatim copies of
24 this manual provided the copyright notice and this permission notice
25 are preserved on all copies.
27 Permission is granted to copy and distribute modified versions of this
28 manual under the conditions for verbatim copying, provided also that
29 the entire resulting derived work is distributed under the terms of a
30 permission notice identical to this one.
32 Permission is granted to copy and distribute translations of this manual
33 into another language, under the above conditions for modified versions.
36 Permission is granted to process this file through Tex and print the
37 results, provided the printed document carries copying permission
38 notice identical to this one except for the removal of this paragraph
39 (this paragraph not being relevant to the printed manual).
45 @setchapternewpage odd
46 @settitle Using LD, the GNU linker
49 @subtitle The GNU linker
51 @subtitle @code{ld} version 2
52 @subtitle Version @value{VERSION}
53 @author Steve Chamberlain
54 @author Ian Lance Taylor
55 @author Cygnus Solutions
60 \hfill Cygnus Solutions\par
61 \hfill ian\@cygnus.com, doc\@cygnus.com\par
62 \hfill {\it Using LD, the GNU linker}\par
63 \hfill Edited by Jeffrey Osier (jeffrey\@cygnus.com)\par
65 \global\parindent=0pt % Steve likes it this way.
68 @vskip 0pt plus 1filll
69 Copyright @copyright{} 1991, 92, 93, 94, 95, 96, 97, 98, 1999 Free Software Foundation, Inc.
71 Permission is granted to make and distribute verbatim copies of
72 this manual provided the copyright notice and this permission notice
73 are preserved on all copies.
75 Permission is granted to copy and distribute modified versions of this
76 manual under the conditions for verbatim copying, provided also that
77 the entire resulting derived work is distributed under the terms of a
78 permission notice identical to this one.
80 Permission is granted to copy and distribute translations of this manual
81 into another language, under the above conditions for modified versions.
84 @c FIXME: Talk about importance of *order* of args, cmds to linker!
89 This file documents the @sc{gnu} linker ld version @value{VERSION}.
93 * Invocation:: Invocation
94 * Scripts:: Linker Scripts
96 * Machine Dependent:: Machine Dependent Features
100 * H8/300:: ld and the H8/300
103 * Hitachi:: ld and other Hitachi micros
106 * i960:: ld and the Intel 960 family
109 * TI COFF:: ld and the TI COFF
112 @ifclear SingleFormat
115 @c Following blank line required for remaining bug in makeinfo conds/menus
117 * Reporting Bugs:: Reporting Bugs
118 * MRI:: MRI Compatible Script Files
126 @cindex @sc{gnu} linker
127 @cindex what is this?
128 @code{ld} combines a number of object and archive files, relocates
129 their data and ties up symbol references. Usually the last step in
130 compiling a program is to run @code{ld}.
132 @code{ld} accepts Linker Command Language files written in
133 a superset of AT&T's Link Editor Command Language syntax,
134 to provide explicit and total control over the linking process.
136 @ifclear SingleFormat
137 This version of @code{ld} uses the general purpose BFD libraries
138 to operate on object files. This allows @code{ld} to read, combine, and
139 write object files in many different formats---for example, COFF or
140 @code{a.out}. Different formats may be linked together to produce any
141 available kind of object file. @xref{BFD}, for more information.
144 Aside from its flexibility, the @sc{gnu} linker is more helpful than other
145 linkers in providing diagnostic information. Many linkers abandon
146 execution immediately upon encountering an error; whenever possible,
147 @code{ld} continues executing, allowing you to identify other errors
148 (or, in some cases, to get an output file in spite of the error).
153 The @sc{gnu} linker @code{ld} is meant to cover a broad range of situations,
154 and to be as compatible as possible with other linkers. As a result,
155 you have many choices to control its behavior.
159 * Options:: Command Line Options
160 * Environment:: Environment Variables
164 @section Command Line Options
169 The linker supports a plethora of command-line options, but in actual
170 practice few of them are used in any particular context.
171 @cindex standard Unix system
172 For instance, a frequent use of @code{ld} is to link standard Unix
173 object files on a standard, supported Unix system. On such a system, to
174 link a file @code{hello.o}:
177 ld -o @var{output} /lib/crt0.o hello.o -lc
180 This tells @code{ld} to produce a file called @var{output} as the
181 result of linking the file @code{/lib/crt0.o} with @code{hello.o} and
182 the library @code{libc.a}, which will come from the standard search
183 directories. (See the discussion of the @samp{-l} option below.)
185 Some of the command-line options to @code{ld} may be specified at any
186 point in the command line. However, options which refer to files, such
187 as @samp{-l} or @samp{-T}, cause the file to be read at the point at
188 which the option appears in the command line, relative to the object
189 files and other file options. Repeating non-file options with a
190 different argument will either have no further effect, or override prior
191 occurrences (those further to the left on the command line) of that
192 option. Options which may be meaningfully specified more than once are
193 noted in the descriptions below.
196 Non-option arguments are object files or archives which are to be linked
197 together. They may follow, precede, or be mixed in with command-line
198 options, except that an object file argument may not be placed between
199 an option and its argument.
201 Usually the linker is invoked with at least one object file, but you can
202 specify other forms of binary input files using @samp{-l}, @samp{-R},
203 and the script command language. If @emph{no} binary input files at all
204 are specified, the linker does not produce any output, and issues the
205 message @samp{No input files}.
207 If the linker can not recognize the format of an object file, it will
208 assume that it is a linker script. A script specified in this way
209 augments the main linker script used for the link (either the default
210 linker script or the one specified by using @samp{-T}). This feature
211 permits the linker to link against a file which appears to be an object
212 or an archive, but actually merely defines some symbol values, or uses
213 @code{INPUT} or @code{GROUP} to load other objects. Note that
214 specifying a script in this way should only be used to augment the main
215 linker script; if you want to use some command that logically can only
216 appear once, such as the @code{SECTIONS} or @code{MEMORY} command, you
217 must replace the default linker script using the @samp{-T} option.
220 For options whose names are a single letter,
221 option arguments must either follow the option letter without intervening
222 whitespace, or be given as separate arguments immediately following the
223 option that requires them.
225 For options whose names are multiple letters, either one dash or two can
226 precede the option name; for example, @samp{--oformat} and
227 @samp{--oformat} are equivalent. Arguments to multiple-letter options
228 must either be separated from the option name by an equals sign, or be
229 given as separate arguments immediately following the option that
230 requires them. For example, @samp{--oformat srec} and
231 @samp{--oformat=srec} are equivalent. Unique abbreviations of the names
232 of multiple-letter options are accepted.
234 Note - if the linker is being invoked indirectly, via a compiler driver
235 (eg @samp{gcc}) then all the linker command line options should be
236 prefixed by @samp{-Wl,} (or whatever is appropriate for the particular
237 compiler driver) like this:
240 gcc -Wl,--startgroup foo.o bar.o -Wl,--endgroup
243 This is important, because otherwise the compiler driver program may
244 silently drop the linker options, resulting in a bad link.
246 Here is a table of the generic command line switches accepted by the GNU
250 @kindex -a@var{keyword}
251 @item -a@var{keyword}
252 This option is supported for HP/UX compatibility. The @var{keyword}
253 argument must be one of the strings @samp{archive}, @samp{shared}, or
254 @samp{default}. @samp{-aarchive} is functionally equivalent to
255 @samp{-Bstatic}, and the other two keywords are functionally equivalent
256 to @samp{-Bdynamic}. This option may be used any number of times.
259 @cindex architectures
261 @item -A@var{architecture}
262 @kindex --architecture=@var{arch}
263 @itemx --architecture=@var{architecture}
264 In the current release of @code{ld}, this option is useful only for the
265 Intel 960 family of architectures. In that @code{ld} configuration, the
266 @var{architecture} argument identifies the particular architecture in
267 the 960 family, enabling some safeguards and modifying the
268 archive-library search path. @xref{i960,,@code{ld} and the Intel 960
269 family}, for details.
271 Future releases of @code{ld} may support similar functionality for
272 other architecture families.
275 @ifclear SingleFormat
276 @cindex binary input format
277 @kindex -b @var{format}
278 @kindex --format=@var{format}
281 @item -b @var{input-format}
282 @itemx --format=@var{input-format}
283 @code{ld} may be configured to support more than one kind of object
284 file. If your @code{ld} is configured this way, you can use the
285 @samp{-b} option to specify the binary format for input object files
286 that follow this option on the command line. Even when @code{ld} is
287 configured to support alternative object formats, you don't usually need
288 to specify this, as @code{ld} should be configured to expect as a
289 default input format the most usual format on each machine.
290 @var{input-format} is a text string, the name of a particular format
291 supported by the BFD libraries. (You can list the available binary
292 formats with @samp{objdump -i}.)
295 You may want to use this option if you are linking files with an unusual
296 binary format. You can also use @samp{-b} to switch formats explicitly (when
297 linking object files of different formats), by including
298 @samp{-b @var{input-format}} before each group of object files in a
301 The default format is taken from the environment variable
306 You can also define the input format from a script, using the command
307 @code{TARGET}; see @ref{Format Commands}.
310 @kindex -c @var{MRI-cmdfile}
311 @kindex --mri-script=@var{MRI-cmdfile}
312 @cindex compatibility, MRI
313 @item -c @var{MRI-commandfile}
314 @itemx --mri-script=@var{MRI-commandfile}
315 For compatibility with linkers produced by MRI, @code{ld} accepts script
316 files written in an alternate, restricted command language, described in
317 @ref{MRI,,MRI Compatible Script Files}. Introduce MRI script files with
318 the option @samp{-c}; use the @samp{-T} option to run linker
319 scripts written in the general-purpose @code{ld} scripting language.
320 If @var{MRI-cmdfile} does not exist, @code{ld} looks for it in the directories
321 specified by any @samp{-L} options.
323 @cindex common allocation
330 These three options are equivalent; multiple forms are supported for
331 compatibility with other linkers. They assign space to common symbols
332 even if a relocatable output file is specified (with @samp{-r}). The
333 script command @code{FORCE_COMMON_ALLOCATION} has the same effect.
334 @xref{Miscellaneous Commands}.
336 @cindex entry point, from command line
337 @kindex -e @var{entry}
338 @kindex --entry=@var{entry}
340 @itemx --entry=@var{entry}
341 Use @var{entry} as the explicit symbol for beginning execution of your
342 program, rather than the default entry point. If there is no symbol
343 named @var{entry}, the linker will try to parse @var{entry} as a number,
344 and use that as the entry address (the number will be interpreted in
345 base 10; you may use a leading @samp{0x} for base 16, or a leading
346 @samp{0} for base 8). @xref{Entry Point}, for a discussion of defaults
347 and other ways of specifying the entry point.
349 @cindex dynamic symbol table
351 @kindex --export-dynamic
353 @itemx --export-dynamic
354 When creating a dynamically linked executable, add all symbols to the
355 dynamic symbol table. The dynamic symbol table is the set of symbols
356 which are visible from dynamic objects at run time.
358 If you do not use this option, the dynamic symbol table will normally
359 contain only those symbols which are referenced by some dynamic object
360 mentioned in the link.
362 If you use @code{dlopen} to load a dynamic object which needs to refer
363 back to the symbols defined by the program, rather than some other
364 dynamic object, then you will probably need to use this option when
365 linking the program itself.
367 @cindex big-endian objects
371 Link big-endian objects. This affects the default output format.
373 @cindex little-endian objects
376 Link little-endian objects. This affects the default output format.
381 @itemx --auxiliary @var{name}
382 When creating an ELF shared object, set the internal DT_AUXILIARY field
383 to the specified name. This tells the dynamic linker that the symbol
384 table of the shared object should be used as an auxiliary filter on the
385 symbol table of the shared object @var{name}.
387 If you later link a program against this filter object, then, when you
388 run the program, the dynamic linker will see the DT_AUXILIARY field. If
389 the dynamic linker resolves any symbols from the filter object, it will
390 first check whether there is a definition in the shared object
391 @var{name}. If there is one, it will be used instead of the definition
392 in the filter object. The shared object @var{name} need not exist.
393 Thus the shared object @var{name} may be used to provide an alternative
394 implementation of certain functions, perhaps for debugging or for
395 machine specific performance.
397 This option may be specified more than once. The DT_AUXILIARY entries
398 will be created in the order in which they appear on the command line.
403 @itemx --filter @var{name}
404 When creating an ELF shared object, set the internal DT_FILTER field to
405 the specified name. This tells the dynamic linker that the symbol table
406 of the shared object which is being created should be used as a filter
407 on the symbol table of the shared object @var{name}.
409 If you later link a program against this filter object, then, when you
410 run the program, the dynamic linker will see the DT_FILTER field. The
411 dynamic linker will resolve symbols according to the symbol table of the
412 filter object as usual, but it will actually link to the definitions
413 found in the shared object @var{name}. Thus the filter object can be
414 used to select a subset of the symbols provided by the object
417 Some older linkers used the @code{-F} option throughout a compilation
418 toolchain for specifying object-file format for both input and output
419 object files. The @sc{gnu} linker uses other mechanisms for this
420 purpose: the @code{-b}, @code{--format}, @code{--oformat} options, the
421 @code{TARGET} command in linker scripts, and the @code{GNUTARGET}
422 environment variable. The @sc{gnu} linker will ignore the @code{-F}
423 option when not creating an ELF shared object.
425 @cindex finalization function
427 @item -fini @var{name}
428 When creating an ELF executable or shared object, call NAME when the
429 executable or shared object is unloaded, by setting DT_FINI to the
430 address of the function. By default, the linker uses @code{_fini} as
431 the function to call.
435 Ignored. Provided for compatibility with other tools.
441 @itemx --gpsize=@var{value}
442 Set the maximum size of objects to be optimized using the GP register to
443 @var{size}. This is only meaningful for object file formats such as
444 MIPS ECOFF which supports putting large and small objects into different
445 sections. This is ignored for other object file formats.
447 @cindex runtime library name
449 @kindex -soname=@var{name}
451 @itemx -soname=@var{name}
452 When creating an ELF shared object, set the internal DT_SONAME field to
453 the specified name. When an executable is linked with a shared object
454 which has a DT_SONAME field, then when the executable is run the dynamic
455 linker will attempt to load the shared object specified by the DT_SONAME
456 field rather than the using the file name given to the linker.
459 @cindex incremental link
461 Perform an incremental link (same as option @samp{-r}).
463 @cindex initialization function
465 @item -init @var{name}
466 When creating an ELF executable or shared object, call NAME when the
467 executable or shared object is loaded, by setting DT_INIT to the address
468 of the function. By default, the linker uses @code{_init} as the
471 @cindex archive files, from cmd line
472 @kindex -l@var{archive}
473 @kindex --library=@var{archive}
474 @item -l@var{archive}
475 @itemx --library=@var{archive}
476 Add archive file @var{archive} to the list of files to link. This
477 option may be used any number of times. @code{ld} will search its
478 path-list for occurrences of @code{lib@var{archive}.a} for every
479 @var{archive} specified.
481 On systems which support shared libraries, @code{ld} may also search for
482 libraries with extensions other than @code{.a}. Specifically, on ELF
483 and SunOS systems, @code{ld} will search a directory for a library with
484 an extension of @code{.so} before searching for one with an extension of
485 @code{.a}. By convention, a @code{.so} extension indicates a shared
488 The linker will search an archive only once, at the location where it is
489 specified on the command line. If the archive defines a symbol which
490 was undefined in some object which appeared before the archive on the
491 command line, the linker will include the appropriate file(s) from the
492 archive. However, an undefined symbol in an object appearing later on
493 the command line will not cause the linker to search the archive again.
495 See the @code{-(} option for a way to force the linker to search
496 archives multiple times.
498 You may list the same archive multiple times on the command line.
501 This type of archive searching is standard for Unix linkers. However,
502 if you are using @code{ld} on AIX, note that it is different from the
503 behaviour of the AIX linker.
506 @cindex search directory, from cmd line
508 @kindex --library-path=@var{dir}
509 @item -L@var{searchdir}
510 @itemx --library-path=@var{searchdir}
511 Add path @var{searchdir} to the list of paths that @code{ld} will search
512 for archive libraries and @code{ld} control scripts. You may use this
513 option any number of times. The directories are searched in the order
514 in which they are specified on the command line. Directories specified
515 on the command line are searched before the default directories. All
516 @code{-L} options apply to all @code{-l} options, regardless of the
517 order in which the options appear.
520 The default set of paths searched (without being specified with
521 @samp{-L}) depends on which emulation mode @code{ld} is using, and in
522 some cases also on how it was configured. @xref{Environment}.
525 The paths can also be specified in a link script with the
526 @code{SEARCH_DIR} command. Directories specified this way are searched
527 at the point in which the linker script appears in the command line.
530 @kindex -m @var{emulation}
531 @item -m@var{emulation}
532 Emulate the @var{emulation} linker. You can list the available
533 emulations with the @samp{--verbose} or @samp{-V} options.
535 If the @samp{-m} option is not used, the emulation is taken from the
536 @code{LDEMULATION} environment variable, if that is defined.
538 Otherwise, the default emulation depends upon how the linker was
546 Print a link map to the standard output. A link map provides
547 information about the link, including the following:
551 Where object files and symbols are mapped into memory.
553 How common symbols are allocated.
555 All archive members included in the link, with a mention of the symbol
556 which caused the archive member to be brought in.
560 @cindex read-only text
565 Turn off page alignment of sections, and mark the output as
566 @code{NMAGIC} if possible.
570 @cindex read/write from cmd line
574 Set the text and data sections to be readable and writable. Also, do
575 not page-align the data segment. If the output format supports Unix
576 style magic numbers, mark the output as @code{OMAGIC}.
578 @kindex -o @var{output}
579 @kindex --output=@var{output}
580 @cindex naming the output file
581 @item -o @var{output}
582 @itemx --output=@var{output}
583 Use @var{output} as the name for the program produced by @code{ld}; if this
584 option is not specified, the name @file{a.out} is used by default. The
585 script command @code{OUTPUT} can also specify the output file name.
587 @kindex -O @var{level}
588 @cindex generating optimized output
590 If @var{level} is a numeric values greater than zero @code{ld} optimizes
591 the output. This might take significantly longer and therefore probably
592 should only be enabled for the final binary.
595 @kindex --emit-relocs
596 @cindex retain relocations in final executable
599 Leave relocation sections and contents in fully linked exececutables.
600 Post link analysis and optimization tools may need this information in
601 order to perform correct modifications of executables. This results
602 in larger executables.
605 @cindex relocatable output
607 @kindex --relocateable
609 @itemx --relocateable
610 Generate relocatable output---i.e., generate an output file that can in
611 turn serve as input to @code{ld}. This is often called @dfn{partial
612 linking}. As a side effect, in environments that support standard Unix
613 magic numbers, this option also sets the output file's magic number to
616 If this option is not specified, an absolute file is produced. When
617 linking C++ programs, this option @emph{will not} resolve references to
618 constructors; to do that, use @samp{-Ur}.
620 This option does the same thing as @samp{-i}.
622 @kindex -R @var{file}
623 @kindex --just-symbols=@var{file}
624 @cindex symbol-only input
625 @item -R @var{filename}
626 @itemx --just-symbols=@var{filename}
627 Read symbol names and their addresses from @var{filename}, but do not
628 relocate it or include it in the output. This allows your output file
629 to refer symbolically to absolute locations of memory defined in other
630 programs. You may use this option more than once.
632 For compatibility with other ELF linkers, if the @code{-R} option is
633 followed by a directory name, rather than a file name, it is treated as
634 the @code{-rpath} option.
638 @cindex strip all symbols
641 Omit all symbol information from the output file.
644 @kindex --strip-debug
645 @cindex strip debugger symbols
648 Omit debugger symbol information (but not all symbols) from the output file.
652 @cindex input files, displaying
655 Print the names of the input files as @code{ld} processes them.
657 @kindex -T @var{script}
658 @kindex --script=@var{script}
660 @item -T @var{scriptfile}
661 @itemx --script=@var{scriptfile}
662 Use @var{scriptfile} as the linker script. This script replaces
663 @code{ld}'s default linker script (rather than adding to it), so
664 @var{commandfile} must specify everything necessary to describe the
665 output file. You must use this option if you want to use a command
666 which can only appear once in a linker script, such as the
667 @code{SECTIONS} or @code{MEMORY} command. @xref{Scripts}. If
668 @var{scriptfile} does not exist in the current directory, @code{ld}
669 looks for it in the directories specified by any preceding @samp{-L}
670 options. Multiple @samp{-T} options accumulate.
672 @kindex -u @var{symbol}
673 @kindex --undefined=@var{symbol}
674 @cindex undefined symbol
675 @item -u @var{symbol}
676 @itemx --undefined=@var{symbol}
677 Force @var{symbol} to be entered in the output file as an undefined
678 symbol. Doing this may, for example, trigger linking of additional
679 modules from standard libraries. @samp{-u} may be repeated with
680 different option arguments to enter additional undefined symbols. This
681 option is equivalent to the @code{EXTERN} linker script command.
686 For anything other than C++ programs, this option is equivalent to
687 @samp{-r}: it generates relocatable output---i.e., an output file that can in
688 turn serve as input to @code{ld}. When linking C++ programs, @samp{-Ur}
689 @emph{does} resolve references to constructors, unlike @samp{-r}.
690 It does not work to use @samp{-Ur} on files that were themselves linked
691 with @samp{-Ur}; once the constructor table has been built, it cannot
692 be added to. Use @samp{-Ur} only for the last partial link, and
693 @samp{-r} for the others.
697 Creates a separate output section for every orphan input section. This
698 option prevents the normal merging of orphan input sections with the same
699 name. An orphan section is one not specifically mentioned in a linker
700 script, so this option along with a custom linker script allows any
701 selection of input sections to be merged while others are kept separate.
710 Display the version number for @code{ld}. The @code{-V} option also
711 lists the supported emulations.
714 @kindex --discard-all
715 @cindex deleting local symbols
718 Delete all local symbols.
721 @kindex --discard-locals
722 @cindex local symbols, deleting
723 @cindex L, deleting symbols beginning
725 @itemx --discard-locals
726 Delete all temporary local symbols. For most targets, this is all local
727 symbols whose names begin with @samp{L}.
729 @kindex -y @var{symbol}
730 @kindex --trace-symbol=@var{symbol}
731 @cindex symbol tracing
732 @item -y @var{symbol}
733 @itemx --trace-symbol=@var{symbol}
734 Print the name of each linked file in which @var{symbol} appears. This
735 option may be given any number of times. On many systems it is necessary
736 to prepend an underscore.
738 This option is useful when you have an undefined symbol in your link but
739 don't know where the reference is coming from.
741 @kindex -Y @var{path}
743 Add @var{path} to the default library search path. This option exists
744 for Solaris compatibility.
746 @kindex -z @var{keyword}
747 @item -z @var{keyword}
748 The recognized keywords are @code{initfirst}, @code{interpose},
749 @code{loadfltr}, @code{nodefaultlib}, @code{nodelete}, @code{nodlopen},
750 @code{nodump}, @code{now} and @code{origin}. The other keywords are
751 ignored for Solaris compatibility. @code{initfirst} marks the object
752 to be initialized first at runtime before any other objects.
753 @code{interpose} marks the object that its symbol table interposes
754 before all symbols but the primary executable. @code{loadfltr} marks
755 the object that its filtees be processed immediately at runtime.
756 @code{nodefaultlib} marks the object that the search for dependencies
757 of this object will ignore any default library search paths.
758 @code{nodelete} marks the object shouldn't be unloaded at runtime.
759 @code{nodlopen} marks the object not available to @code{dlopen}.
760 @code{nodump} marks the object can not be dumped by @code{dldump}.
761 @code{now} marks the object with the non-lazy runtime binding.
762 @code{origin} marks the object may contain $ORIGIN.
765 @cindex groups of archives
766 @item -( @var{archives} -)
767 @itemx --start-group @var{archives} --end-group
768 The @var{archives} should be a list of archive files. They may be
769 either explicit file names, or @samp{-l} options.
771 The specified archives are searched repeatedly until no new undefined
772 references are created. Normally, an archive is searched only once in
773 the order that it is specified on the command line. If a symbol in that
774 archive is needed to resolve an undefined symbol referred to by an
775 object in an archive that appears later on the command line, the linker
776 would not be able to resolve that reference. By grouping the archives,
777 they all be searched repeatedly until all possible references are
780 Using this option has a significant performance cost. It is best to use
781 it only when there are unavoidable circular references between two or
784 @kindex -assert @var{keyword}
785 @item -assert @var{keyword}
786 This option is ignored for SunOS compatibility.
794 Link against dynamic libraries. This is only meaningful on platforms
795 for which shared libraries are supported. This option is normally the
796 default on such platforms. The different variants of this option are
797 for compatibility with various systems. You may use this option
798 multiple times on the command line: it affects library searching for
799 @code{-l} options which follow it.
809 Do not link against shared libraries. This is only meaningful on
810 platforms for which shared libraries are supported. The different
811 variants of this option are for compatibility with various systems. You
812 may use this option multiple times on the command line: it affects
813 library searching for @code{-l} options which follow it.
817 When creating a shared library, bind references to global symbols to the
818 definition within the shared library, if any. Normally, it is possible
819 for a program linked against a shared library to override the definition
820 within the shared library. This option is only meaningful on ELF
821 platforms which support shared libraries.
823 @kindex --check-sections
824 @kindex --no-check-sections
825 @item --check-sections
826 @itemx --no-check-sections
827 Asks the linker @emph{not} to check section addresses after they have
828 been assigned to see if there any overlaps. Normally the linker will
829 perform this check, and if it finds any overlaps it will produce
830 suitable error messages. The linker does know about, and does make
831 allowances for sections in overlays. The default behaviour can be
832 restored by using the command line switch @samp{--check-sections}.
834 @cindex cross reference table
837 Output a cross reference table. If a linker map file is being
838 generated, the cross reference table is printed to the map file.
839 Otherwise, it is printed on the standard output.
841 The format of the table is intentionally simple, so that it may be
842 easily processed by a script if necessary. The symbols are printed out,
843 sorted by name. For each symbol, a list of file names is given. If the
844 symbol is defined, the first file listed is the location of the
845 definition. The remaining files contain references to the symbol.
847 @cindex symbols, from command line
848 @kindex --defsym @var{symbol}=@var{exp}
849 @item --defsym @var{symbol}=@var{expression}
850 Create a global symbol in the output file, containing the absolute
851 address given by @var{expression}. You may use this option as many
852 times as necessary to define multiple symbols in the command line. A
853 limited form of arithmetic is supported for the @var{expression} in this
854 context: you may give a hexadecimal constant or the name of an existing
855 symbol, or use @code{+} and @code{-} to add or subtract hexadecimal
856 constants or symbols. If you need more elaborate expressions, consider
857 using the linker command language from a script (@pxref{Assignments,,
858 Assignment: Symbol Definitions}). @emph{Note:} there should be no white
859 space between @var{symbol}, the equals sign (``@key{=}''), and
862 @cindex demangling, from command line
863 @kindex --demangle[=@var{style}]
864 @kindex --no-demangle
865 @item --demangle[=@var{style}]
867 These options control whether to demangle symbol names in error messages
868 and other output. When the linker is told to demangle, it tries to
869 present symbol names in a readable fashion: it strips leading
870 underscores if they are used by the object file format, and converts C++
871 mangled symbol names into user readable names. Different compilers have
872 different mangling styles. The optional demangling style argument can be used
873 to choose an appropriate demangling style for your compiler. The linker will
874 demangle by default unless the environment variable @samp{COLLECT_NO_DEMANGLE}
875 is set. These options may be used to override the default.
877 @cindex dynamic linker, from command line
878 @kindex --dynamic-linker @var{file}
879 @item --dynamic-linker @var{file}
880 Set the name of the dynamic linker. This is only meaningful when
881 generating dynamically linked ELF executables. The default dynamic
882 linker is normally correct; don't use this unless you know what you are
885 @cindex MIPS embedded PIC code
886 @kindex --embedded-relocs
887 @item --embedded-relocs
888 This option is only meaningful when linking MIPS embedded PIC code,
889 generated by the -membedded-pic option to the @sc{gnu} compiler and
890 assembler. It causes the linker to create a table which may be used at
891 runtime to relocate any data which was statically initialized to pointer
892 values. See the code in testsuite/ld-empic for details.
894 @kindex --force-exe-suffix
895 @item --force-exe-suffix
896 Make sure that an output file has a .exe suffix.
898 If a successfully built fully linked output file does not have a
899 @code{.exe} or @code{.dll} suffix, this option forces the linker to copy
900 the output file to one of the same name with a @code{.exe} suffix. This
901 option is useful when using unmodified Unix makefiles on a Microsoft
902 Windows host, since some versions of Windows won't run an image unless
903 it ends in a @code{.exe} suffix.
905 @kindex --gc-sections
906 @kindex --no-gc-sections
907 @cindex garbage collection
908 @item --no-gc-sections
910 Enable garbage collection of unused input sections. It is ignored on
911 targets that do not support this option. This option is not compatible
912 with @samp{-r}, nor should it be used with dynamic linking. The default
913 behaviour (of not performing this garbage collection) can be restored by
914 specifying @samp{--no-gc-sections} on the command line.
920 Print a summary of the command-line options on the standard output and exit.
922 @kindex --target-help
924 Print a summary of all target specific options on the standard output and exit.
927 @item -Map @var{mapfile}
928 Print a link map to the file @var{mapfile}. See the description of the
929 @samp{-M} option, above.
932 @kindex --no-keep-memory
933 @item --no-keep-memory
934 @code{ld} normally optimizes for speed over memory usage by caching the
935 symbol tables of input files in memory. This option tells @code{ld} to
936 instead optimize for memory usage, by rereading the symbol tables as
937 necessary. This may be required if @code{ld} runs out of memory space
938 while linking a large executable.
940 @kindex --no-undefined
942 Normally when creating a non-symbolic shared library, undefined symbols
943 are allowed and left to be resolved by the runtime loader. This option
944 disallows such undefined symbols.
946 @kindex --no-warn-mismatch
947 @item --no-warn-mismatch
948 Normally @code{ld} will give an error if you try to link together input
949 files that are mismatched for some reason, perhaps because they have
950 been compiled for different processors or for different endiannesses.
951 This option tells @code{ld} that it should silently permit such possible
952 errors. This option should only be used with care, in cases when you
953 have taken some special action that ensures that the linker errors are
956 @kindex --no-whole-archive
957 @item --no-whole-archive
958 Turn off the effect of the @code{--whole-archive} option for subsequent
961 @cindex output file after errors
962 @kindex --noinhibit-exec
963 @item --noinhibit-exec
964 Retain the executable output file whenever it is still usable.
965 Normally, the linker will not produce an output file if it encounters
966 errors during the link process; it exits without writing an output file
967 when it issues any error whatsoever.
969 @ifclear SingleFormat
971 @item --oformat @var{output-format}
972 @code{ld} may be configured to support more than one kind of object
973 file. If your @code{ld} is configured this way, you can use the
974 @samp{--oformat} option to specify the binary format for the output
975 object file. Even when @code{ld} is configured to support alternative
976 object formats, you don't usually need to specify this, as @code{ld}
977 should be configured to produce as a default output format the most
978 usual format on each machine. @var{output-format} is a text string, the
979 name of a particular format supported by the BFD libraries. (You can
980 list the available binary formats with @samp{objdump -i}.) The script
981 command @code{OUTPUT_FORMAT} can also specify the output format, but
982 this option overrides it. @xref{BFD}.
987 This option is ignored for Linux compatibility.
991 This option is ignored for SVR4 compatibility.
994 @cindex synthesizing linker
995 @cindex relaxing addressing modes
997 An option with machine dependent effects.
999 This option is only supported on a few targets.
1002 @xref{H8/300,,@code{ld} and the H8/300}.
1005 @xref{i960,, @code{ld} and the Intel 960 family}.
1009 On some platforms, the @samp{--relax} option performs global
1010 optimizations that become possible when the linker resolves addressing
1011 in the program, such as relaxing address modes and synthesizing new
1012 instructions in the output object file.
1014 On some platforms these link time global optimizations may make symbolic
1015 debugging of the resulting executable impossible.
1018 the case for the Matsushita MN10200 and MN10300 family of processors.
1022 On platforms where this is not supported, @samp{--relax} is accepted,
1026 @cindex retaining specified symbols
1027 @cindex stripping all but some symbols
1028 @cindex symbols, retaining selectively
1029 @item --retain-symbols-file @var{filename}
1030 Retain @emph{only} the symbols listed in the file @var{filename},
1031 discarding all others. @var{filename} is simply a flat file, with one
1032 symbol name per line. This option is especially useful in environments
1036 where a large global symbol table is accumulated gradually, to conserve
1039 @samp{--retain-symbols-file} does @emph{not} discard undefined symbols,
1040 or symbols needed for relocations.
1042 You may only specify @samp{--retain-symbols-file} once in the command
1043 line. It overrides @samp{-s} and @samp{-S}.
1046 @item -rpath @var{dir}
1047 @cindex runtime library search path
1049 Add a directory to the runtime library search path. This is used when
1050 linking an ELF executable with shared objects. All @code{-rpath}
1051 arguments are concatenated and passed to the runtime linker, which uses
1052 them to locate shared objects at runtime. The @code{-rpath} option is
1053 also used when locating shared objects which are needed by shared
1054 objects explicitly included in the link; see the description of the
1055 @code{-rpath-link} option. If @code{-rpath} is not used when linking an
1056 ELF executable, the contents of the environment variable
1057 @code{LD_RUN_PATH} will be used if it is defined.
1059 The @code{-rpath} option may also be used on SunOS. By default, on
1060 SunOS, the linker will form a runtime search patch out of all the
1061 @code{-L} options it is given. If a @code{-rpath} option is used, the
1062 runtime search path will be formed exclusively using the @code{-rpath}
1063 options, ignoring the @code{-L} options. This can be useful when using
1064 gcc, which adds many @code{-L} options which may be on NFS mounted
1067 For compatibility with other ELF linkers, if the @code{-R} option is
1068 followed by a directory name, rather than a file name, it is treated as
1069 the @code{-rpath} option.
1073 @cindex link-time runtime library search path
1075 @item -rpath-link @var{DIR}
1076 When using ELF or SunOS, one shared library may require another. This
1077 happens when an @code{ld -shared} link includes a shared library as one
1080 When the linker encounters such a dependency when doing a non-shared,
1081 non-relocatable link, it will automatically try to locate the required
1082 shared library and include it in the link, if it is not included
1083 explicitly. In such a case, the @code{-rpath-link} option
1084 specifies the first set of directories to search. The
1085 @code{-rpath-link} option may specify a sequence of directory names
1086 either by specifying a list of names separated by colons, or by
1087 appearing multiple times.
1089 This option should be used with caution as it overrides the search path
1090 that may have been hard compiled into a shared library. In such a case it
1091 is possible to use unintentionally a different search path than the
1092 runtime linker would do.
1094 The linker uses the following search paths to locate required shared
1098 Any directories specified by @code{-rpath-link} options.
1100 Any directories specified by @code{-rpath} options. The difference
1101 between @code{-rpath} and @code{-rpath-link} is that directories
1102 specified by @code{-rpath} options are included in the executable and
1103 used at runtime, whereas the @code{-rpath-link} option is only effective
1104 at link time. It is for the native linker only.
1106 On an ELF system, if the @code{-rpath} and @code{rpath-link} options
1107 were not used, search the contents of the environment variable
1108 @code{LD_RUN_PATH}. It is for the native linker only.
1110 On SunOS, if the @code{-rpath} option was not used, search any
1111 directories specified using @code{-L} options.
1113 For a native linker, the contents of the environment variable
1114 @code{LD_LIBRARY_PATH}.
1116 For a native ELF linker, the directories in @code{DT_RUNPATH} or
1117 @code{DT_RPATH} of a shared library are searched for shared
1118 libraries needed by it. The @code{DT_RPATH} entries are ignored if
1119 @code{DT_RUNPATH} entries exist.
1121 The default directories, normally @file{/lib} and @file{/usr/lib}.
1123 For a native linker on an ELF system, if the file @file{/etc/ld.so.conf}
1124 exists, the list of directories found in that file.
1127 If the required shared library is not found, the linker will issue a
1128 warning and continue with the link.
1135 @cindex shared libraries
1136 Create a shared library. This is currently only supported on ELF, XCOFF
1137 and SunOS platforms. On SunOS, the linker will automatically create a
1138 shared library if the @code{-e} option is not used and there are
1139 undefined symbols in the link.
1142 @kindex --sort-common
1143 This option tells @code{ld} to sort the common symbols by size when it
1144 places them in the appropriate output sections. First come all the one
1145 byte symbols, then all the two bytes, then all the four bytes, and then
1146 everything else. This is to prevent gaps between symbols due to
1147 alignment constraints.
1149 @kindex --split-by-file
1150 @item --split-by-file [@var{size}]
1151 Similar to @code{--split-by-reloc} but creates a new output section for
1152 each input file when @var{size} is reached. @var{size} defaults to a
1153 size of 1 if not given.
1155 @kindex --split-by-reloc
1156 @item --split-by-reloc [@var{count}]
1157 Tries to creates extra sections in the output file so that no single
1158 output section in the file contains more than @var{count} relocations.
1159 This is useful when generating huge relocatable files for downloading into
1160 certain real time kernels with the COFF object file format; since COFF
1161 cannot represent more than 65535 relocations in a single section. Note
1162 that this will fail to work with object file formats which do not
1163 support arbitrary sections. The linker will not split up individual
1164 input sections for redistribution, so if a single input section contains
1165 more than @var{count} relocations one output section will contain that
1166 many relocations. @var{count} defaults to a value of 32768.
1170 Compute and display statistics about the operation of the linker, such
1171 as execution time and memory usage.
1173 @kindex --traditional-format
1174 @cindex traditional format
1175 @item --traditional-format
1176 For some targets, the output of @code{ld} is different in some ways from
1177 the output of some existing linker. This switch requests @code{ld} to
1178 use the traditional format instead.
1181 For example, on SunOS, @code{ld} combines duplicate entries in the
1182 symbol string table. This can reduce the size of an output file with
1183 full debugging information by over 30 percent. Unfortunately, the SunOS
1184 @code{dbx} program can not read the resulting program (@code{gdb} has no
1185 trouble). The @samp{--traditional-format} switch tells @code{ld} to not
1186 combine duplicate entries.
1188 @kindex --section-start @var{sectionname}=@var{org}
1189 @item --section-start @var{sectionname}=@var{org}
1190 Locate a section in the output file at the absolute
1191 address given by @var{org}. You may use this option as many
1192 times as necessary to locate multiple sections in the command
1194 @var{org} must be a single hexadecimal integer;
1195 for compatibility with other linkers, you may omit the leading
1196 @samp{0x} usually associated with hexadecimal values. @emph{Note:} there
1197 should be no white space between @var{sectionname}, the equals
1198 sign (``@key{=}''), and @var{org}.
1200 @kindex -Tbss @var{org}
1201 @kindex -Tdata @var{org}
1202 @kindex -Ttext @var{org}
1203 @cindex segment origins, cmd line
1204 @item -Tbss @var{org}
1205 @itemx -Tdata @var{org}
1206 @itemx -Ttext @var{org}
1207 Use @var{org} as the starting address for---respectively---the
1208 @code{bss}, @code{data}, or the @code{text} segment of the output file.
1209 @var{org} must be a single hexadecimal integer;
1210 for compatibility with other linkers, you may omit the leading
1211 @samp{0x} usually associated with hexadecimal values.
1217 Display the version number for @code{ld} and list the linker emulations
1218 supported. Display which input files can and cannot be opened. Display
1219 the linker script if using a default builtin script.
1221 @kindex --version-script=@var{version-scriptfile}
1222 @cindex version script, symbol versions
1223 @itemx --version-script=@var{version-scriptfile}
1224 Specify the name of a version script to the linker. This is typically
1225 used when creating shared libraries to specify additional information
1226 about the version heirarchy for the library being created. This option
1227 is only meaningful on ELF platforms which support shared libraries.
1230 @kindex --warn-comon
1231 @cindex warnings, on combining symbols
1232 @cindex combining symbols, warnings on
1234 Warn when a common symbol is combined with another common symbol or with
1235 a symbol definition. Unix linkers allow this somewhat sloppy practice,
1236 but linkers on some other operating systems do not. This option allows
1237 you to find potential problems from combining global symbols.
1238 Unfortunately, some C libraries use this practice, so you may get some
1239 warnings about symbols in the libraries as well as in your programs.
1241 There are three kinds of global symbols, illustrated here by C examples:
1245 A definition, which goes in the initialized data section of the output
1249 An undefined reference, which does not allocate space.
1250 There must be either a definition or a common symbol for the
1254 A common symbol. If there are only (one or more) common symbols for a
1255 variable, it goes in the uninitialized data area of the output file.
1256 The linker merges multiple common symbols for the same variable into a
1257 single symbol. If they are of different sizes, it picks the largest
1258 size. The linker turns a common symbol into a declaration, if there is
1259 a definition of the same variable.
1262 The @samp{--warn-common} option can produce five kinds of warnings.
1263 Each warning consists of a pair of lines: the first describes the symbol
1264 just encountered, and the second describes the previous symbol
1265 encountered with the same name. One or both of the two symbols will be
1270 Turning a common symbol into a reference, because there is already a
1271 definition for the symbol.
1273 @var{file}(@var{section}): warning: common of `@var{symbol}'
1274 overridden by definition
1275 @var{file}(@var{section}): warning: defined here
1279 Turning a common symbol into a reference, because a later definition for
1280 the symbol is encountered. This is the same as the previous case,
1281 except that the symbols are encountered in a different order.
1283 @var{file}(@var{section}): warning: definition of `@var{symbol}'
1285 @var{file}(@var{section}): warning: common is here
1289 Merging a common symbol with a previous same-sized common symbol.
1291 @var{file}(@var{section}): warning: multiple common
1293 @var{file}(@var{section}): warning: previous common is here
1297 Merging a common symbol with a previous larger common symbol.
1299 @var{file}(@var{section}): warning: common of `@var{symbol}'
1300 overridden by larger common
1301 @var{file}(@var{section}): warning: larger common is here
1305 Merging a common symbol with a previous smaller common symbol. This is
1306 the same as the previous case, except that the symbols are
1307 encountered in a different order.
1309 @var{file}(@var{section}): warning: common of `@var{symbol}'
1310 overriding smaller common
1311 @var{file}(@var{section}): warning: smaller common is here
1315 @kindex --warn-constructors
1316 @item --warn-constructors
1317 Warn if any global constructors are used. This is only useful for a few
1318 object file formats. For formats like COFF or ELF, the linker can not
1319 detect the use of global constructors.
1321 @kindex --warn-multiple-gp
1322 @item --warn-multiple-gp
1323 Warn if multiple global pointer values are required in the output file.
1324 This is only meaningful for certain processors, such as the Alpha.
1325 Specifically, some processors put large-valued constants in a special
1326 section. A special register (the global pointer) points into the middle
1327 of this section, so that constants can be loaded efficiently via a
1328 base-register relative addressing mode. Since the offset in
1329 base-register relative mode is fixed and relatively small (e.g., 16
1330 bits), this limits the maximum size of the constant pool. Thus, in
1331 large programs, it is often necessary to use multiple global pointer
1332 values in order to be able to address all possible constants. This
1333 option causes a warning to be issued whenever this case occurs.
1336 @cindex warnings, on undefined symbols
1337 @cindex undefined symbols, warnings on
1339 Only warn once for each undefined symbol, rather than once per module
1342 @kindex --warn-section-align
1343 @cindex warnings, on section alignment
1344 @cindex section alignment, warnings on
1345 @item --warn-section-align
1346 Warn if the address of an output section is changed because of
1347 alignment. Typically, the alignment will be set by an input section.
1348 The address will only be changed if it not explicitly specified; that
1349 is, if the @code{SECTIONS} command does not specify a start address for
1350 the section (@pxref{SECTIONS}).
1352 @kindex --whole-archive
1353 @cindex including an entire archive
1354 @item --whole-archive
1355 For each archive mentioned on the command line after the
1356 @code{--whole-archive} option, include every object file in the archive
1357 in the link, rather than searching the archive for the required object
1358 files. This is normally used to turn an archive file into a shared
1359 library, forcing every object to be included in the resulting shared
1360 library. This option may be used more than once.
1363 @item --wrap @var{symbol}
1364 Use a wrapper function for @var{symbol}. Any undefined reference to
1365 @var{symbol} will be resolved to @code{__wrap_@var{symbol}}. Any
1366 undefined reference to @code{__real_@var{symbol}} will be resolved to
1369 This can be used to provide a wrapper for a system function. The
1370 wrapper function should be called @code{__wrap_@var{symbol}}. If it
1371 wishes to call the system function, it should call
1372 @code{__real_@var{symbol}}.
1374 Here is a trivial example:
1378 __wrap_malloc (int c)
1380 printf ("malloc called with %ld\n", c);
1381 return __real_malloc (c);
1385 If you link other code with this file using @code{--wrap malloc}, then
1386 all calls to @code{malloc} will call the function @code{__wrap_malloc}
1387 instead. The call to @code{__real_malloc} in @code{__wrap_malloc} will
1388 call the real @code{malloc} function.
1390 You may wish to provide a @code{__real_malloc} function as well, so that
1391 links without the @code{--wrap} option will succeed. If you do this,
1392 you should not put the definition of @code{__real_malloc} in the same
1393 file as @code{__wrap_malloc}; if you do, the assembler may resolve the
1394 call before the linker has a chance to wrap it to @code{malloc}.
1396 @kindex --enable-new-dtags
1397 @kindex --disable-new-dtags
1398 @item --enable-new-dtags
1399 @itemx --disable-new-dtags
1400 This linker can create the new dynamic tags in ELF. But the older ELF
1401 systems may not understand them. If you specify
1402 @code{--enable-new-dtags}, the dynamic tags will be created as needed.
1403 If you specify @code{--disable-new-dtags}, no new dynamic tags will be
1404 created. By default, the new dynamic tags are not created. Note that
1405 those options are only available for ELF systems.
1409 @subsection Options specific to i386 PE targets
1411 The i386 PE linker supports the @code{-shared} option, which causes
1412 the output to be a dynamically linked library (DLL) instead of a
1413 normal executable. You should name the output @code{*.dll} when you
1414 use this option. In addition, the linker fully supports the standard
1415 @code{*.def} files, which may be specified on the linker command line
1416 like an object file (in fact, it should precede archives it exports
1417 symbols from, to ensure that they get linked in, just like a normal
1420 In addition to the options common to all targets, the i386 PE linker
1421 support additional command line options that are specific to the i386
1422 PE target. Options that take values may be separated from their
1423 values by either a space or an equals sign.
1427 @kindex --add-stdcall-alias
1428 @item --add-stdcall-alias
1429 If given, symbols with a stdcall suffix (@@@var{nn}) will be exported
1430 as-is and also with the suffix stripped.
1433 @item --base-file @var{file}
1434 Use @var{file} as the name of a file in which to save the base
1435 addresses of all the relocations needed for generating DLLs with
1440 Create a DLL instead of a regular executable. You may also use
1441 @code{-shared} or specify a @code{LIBRARY} in a given @code{.def}
1444 @kindex --enable-stdcall-fixup
1445 @kindex --disable-stdcall-fixup
1446 @item --enable-stdcall-fixup
1447 @itemx --disable-stdcall-fixup
1448 If the link finds a symbol that it cannot resolve, it will attempt to
1449 do "fuzzy linking" by looking for another defined symbol that differs
1450 only in the format of the symbol name (cdecl vs stdcall) and will
1451 resolve that symbol by linking to the match. For example, the
1452 undefined symbol @code{_foo} might be linked to the function
1453 @code{_foo@@12}, or the undefined symbol @code{_bar@@16} might be linked
1454 to the function @code{_bar}. When the linker does this, it prints a
1455 warning, since it normally should have failed to link, but sometimes
1456 import libraries generated from third-party dlls may need this feature
1457 to be usable. If you specify @code{--enable-stdcall-fixup}, this
1458 feature is fully enabled and warnings are not printed. If you specify
1459 @code{--disable-stdcall-fixup}, this feature is disabled and such
1460 mismatches are considered to be errors.
1462 @cindex DLLs, creating
1463 @kindex --export-all-symbols
1464 @item --export-all-symbols
1465 If given, all global symbols in the objects used to build a DLL will
1466 be exported by the DLL. Note that this is the default if there
1467 otherwise wouldn't be any exported symbols. When symbols are
1468 explicitly exported via DEF files or implicitly exported via function
1469 attributes, the default is to not export anything else unless this
1470 option is given. Note that the symbols @code{DllMain@@12},
1471 @code{DllEntryPoint@@0}, and @code{impure_ptr} will not be automatically
1474 @kindex --exclude-symbols
1475 @item --exclude-symbols @var{symbol},@var{symbol},...
1476 Specifies a list of symbols which should not be automatically
1477 exported. The symbol names may be delimited by commas or colons.
1479 @kindex --file-alignment
1480 @item --file-alignment
1481 Specify the file alignment. Sections in the file will always begin at
1482 file offsets which are multiples of this number. This defaults to
1487 @item --heap @var{reserve}
1488 @itemx --heap @var{reserve},@var{commit}
1489 Specify the amount of memory to reserve (and optionally commit) to be
1490 used as heap for this program. The default is 1Mb reserved, 4K
1494 @kindex --image-base
1495 @item --image-base @var{value}
1496 Use @var{value} as the base address of your program or dll. This is
1497 the lowest memory location that will be used when your program or dll
1498 is loaded. To reduce the need to relocate and improve performance of
1499 your dlls, each should have a unique base address and not overlap any
1500 other dlls. The default is 0x400000 for executables, and 0x10000000
1505 If given, the stdcall suffixes (@@@var{nn}) will be stripped from
1506 symbols before they are exported.
1508 @kindex --major-image-version
1509 @item --major-image-version @var{value}
1510 Sets the major number of the "image version". Defaults to 1.
1512 @kindex --major-os-version
1513 @item --major-os-version @var{value}
1514 Sets the major number of the "os version". Defaults to 4.
1516 @kindex --major-subsystem-version
1517 @item --major-subsystem-version @var{value}
1518 Sets the major number of the "subsystem version". Defaults to 4.
1520 @kindex --minor-image-version
1521 @item --minor-image-version @var{value}
1522 Sets the minor number of the "image version". Defaults to 0.
1524 @kindex --minor-os-version
1525 @item --minor-os-version @var{value}
1526 Sets the minor number of the "os version". Defaults to 0.
1528 @kindex --minor-subsystem-version
1529 @item --minor-subsystem-version @var{value}
1530 Sets the minor number of the "subsystem version". Defaults to 0.
1532 @cindex DEF files, creating
1533 @cindex DLLs, creating
1534 @kindex --output-def
1535 @item --output-def @var{file}
1536 The linker will create the file @var{file} which will contain a DEF
1537 file corresponding to the DLL the linker is generating. This DEF file
1538 (which should be called @code{*.def}) may be used to create an import
1539 library with @code{dlltool} or may be used as a reference to
1540 automatically or implicitly exported symbols.
1542 @kindex --section-alignment
1543 @item --section-alignment
1544 Sets the section alignment. Sections in memory will always begin at
1545 addresses which are a multiple of this number. Defaults to 0x1000.
1549 @item --stack @var{reserve}
1550 @itemx --stack @var{reserve},@var{commit}
1551 Specify the amount of memory to reserve (and optionally commit) to be
1552 used as stack for this program. The default is 32Mb reserved, 4K
1556 @item --subsystem @var{which}
1557 @itemx --subsystem @var{which}:@var{major}
1558 @itemx --subsystem @var{which}:@var{major}.@var{minor}
1559 Specifies the subsystem under which your program will execute. The
1560 legal values for @var{which} are @code{native}, @code{windows},
1561 @code{console}, and @code{posix}. You may optionally set the
1562 subsystem version also.
1568 @section Environment Variables
1570 You can change the behavior of @code{ld} with the environment variables
1571 @code{GNUTARGET}, @code{LDEMULATION}, and @code{COLLECT_NO_DEMANGLE}.
1574 @cindex default input format
1575 @code{GNUTARGET} determines the input-file object format if you don't
1576 use @samp{-b} (or its synonym @samp{--format}). Its value should be one
1577 of the BFD names for an input format (@pxref{BFD}). If there is no
1578 @code{GNUTARGET} in the environment, @code{ld} uses the natural format
1579 of the target. If @code{GNUTARGET} is set to @code{default} then BFD
1580 attempts to discover the input format by examining binary input files;
1581 this method often succeeds, but there are potential ambiguities, since
1582 there is no method of ensuring that the magic number used to specify
1583 object-file formats is unique. However, the configuration procedure for
1584 BFD on each system places the conventional format for that system first
1585 in the search-list, so ambiguities are resolved in favor of convention.
1588 @cindex default emulation
1589 @cindex emulation, default
1590 @code{LDEMULATION} determines the default emulation if you don't use the
1591 @samp{-m} option. The emulation can affect various aspects of linker
1592 behaviour, particularly the default linker script. You can list the
1593 available emulations with the @samp{--verbose} or @samp{-V} options. If
1594 the @samp{-m} option is not used, and the @code{LDEMULATION} environment
1595 variable is not defined, the default emulation depends upon how the
1596 linker was configured.
1599 @kindex COLLECT_NO_DEMANGLE
1600 @cindex demangling, default
1601 Normally, the linker will default to demangling symbols. However, if
1602 @code{COLLECT_NO_DEMANGLE} is set in the environment, then it will
1603 default to not demangling symbols. This environment variable is used in
1604 a similar fashion by the @code{gcc} linker wrapper program. The default
1605 may be overridden by the @samp{--demangle} and @samp{--no-demangle}
1609 @chapter Linker Scripts
1612 @cindex linker scripts
1613 @cindex command files
1614 Every link is controlled by a @dfn{linker script}. This script is
1615 written in the linker command language.
1617 The main purpose of the linker script is to describe how the sections in
1618 the input files should be mapped into the output file, and to control
1619 the memory layout of the output file. Most linker scripts do nothing
1620 more than this. However, when necessary, the linker script can also
1621 direct the linker to perform many other operations, using the commands
1624 The linker always uses a linker script. If you do not supply one
1625 yourself, the linker will use a default script that is compiled into the
1626 linker executable. You can use the @samp{--verbose} command line option
1627 to display the default linker script. Certain command line options,
1628 such as @samp{-r} or @samp{-N}, will affect the default linker script.
1630 You may supply your own linker script by using the @samp{-T} command
1631 line option. When you do this, your linker script will replace the
1632 default linker script.
1634 You may also use linker scripts implicitly by naming them as input files
1635 to the linker, as though they were files to be linked. @xref{Implicit
1639 * Basic Script Concepts:: Basic Linker Script Concepts
1640 * Script Format:: Linker Script Format
1641 * Simple Example:: Simple Linker Script Example
1642 * Simple Commands:: Simple Linker Script Commands
1643 * Assignments:: Assigning Values to Symbols
1644 * SECTIONS:: SECTIONS Command
1645 * MEMORY:: MEMORY Command
1646 * PHDRS:: PHDRS Command
1647 * VERSION:: VERSION Command
1648 * Expressions:: Expressions in Linker Scripts
1649 * Implicit Linker Scripts:: Implicit Linker Scripts
1652 @node Basic Script Concepts
1653 @section Basic Linker Script Concepts
1654 @cindex linker script concepts
1655 We need to define some basic concepts and vocabulary in order to
1656 describe the linker script language.
1658 The linker combines input files into a single output file. The output
1659 file and each input file are in a special data format known as an
1660 @dfn{object file format}. Each file is called an @dfn{object file}.
1661 The output file is often called an @dfn{executable}, but for our
1662 purposes we will also call it an object file. Each object file has,
1663 among other things, a list of @dfn{sections}. We sometimes refer to a
1664 section in an input file as an @dfn{input section}; similarly, a section
1665 in the output file is an @dfn{output section}.
1667 Each section in an object file has a name and a size. Most sections
1668 also have an associated block of data, known as the @dfn{section
1669 contents}. A section may be marked as @dfn{loadable}, which mean that
1670 the contents should be loaded into memory when the output file is run.
1671 A section with no contents may be @dfn{allocatable}, which means that an
1672 area in memory should be set aside, but nothing in particular should be
1673 loaded there (in some cases this memory must be zeroed out). A section
1674 which is neither loadable nor allocatable typically contains some sort
1675 of debugging information.
1677 Every loadable or allocatable output section has two addresses. The
1678 first is the @dfn{VMA}, or virtual memory address. This is the address
1679 the section will have when the output file is run. The second is the
1680 @dfn{LMA}, or load memory address. This is the address at which the
1681 section will be loaded. In most cases the two addresses will be the
1682 same. An example of when they might be different is when a data section
1683 is loaded into ROM, and then copied into RAM when the program starts up
1684 (this technique is often used to initialize global variables in a ROM
1685 based system). In this case the ROM address would be the LMA, and the
1686 RAM address would be the VMA.
1688 You can see the sections in an object file by using the @code{objdump}
1689 program with the @samp{-h} option.
1691 Every object file also has a list of @dfn{symbols}, known as the
1692 @dfn{symbol table}. A symbol may be defined or undefined. Each symbol
1693 has a name, and each defined symbol has an address, among other
1694 information. If you compile a C or C++ program into an object file, you
1695 will get a defined symbol for every defined function and global or
1696 static variable. Every undefined function or global variable which is
1697 referenced in the input file will become an undefined symbol.
1699 You can see the symbols in an object file by using the @code{nm}
1700 program, or by using the @code{objdump} program with the @samp{-t}
1704 @section Linker Script Format
1705 @cindex linker script format
1706 Linker scripts are text files.
1708 You write a linker script as a series of commands. Each command is
1709 either a keyword, possibly followed by arguments, or an assignment to a
1710 symbol. You may separate commands using semicolons. Whitespace is
1713 Strings such as file or format names can normally be entered directly.
1714 If the file name contains a character such as a comma which would
1715 otherwise serve to separate file names, you may put the file name in
1716 double quotes. There is no way to use a double quote character in a
1719 You may include comments in linker scripts just as in C, delimited by
1720 @samp{/*} and @samp{*/}. As in C, comments are syntactically equivalent
1723 @node Simple Example
1724 @section Simple Linker Script Example
1725 @cindex linker script example
1726 @cindex example of linker script
1727 Many linker scripts are fairly simple.
1729 The simplest possible linker script has just one command:
1730 @samp{SECTIONS}. You use the @samp{SECTIONS} command to describe the
1731 memory layout of the output file.
1733 The @samp{SECTIONS} command is a powerful command. Here we will
1734 describe a simple use of it. Let's assume your program consists only of
1735 code, initialized data, and uninitialized data. These will be in the
1736 @samp{.text}, @samp{.data}, and @samp{.bss} sections, respectively.
1737 Let's assume further that these are the only sections which appear in
1740 For this example, let's say that the code should be loaded at address
1741 0x10000, and that the data should start at address 0x8000000. Here is a
1742 linker script which will do that:
1747 .text : @{ *(.text) @}
1749 .data : @{ *(.data) @}
1750 .bss : @{ *(.bss) @}
1754 You write the @samp{SECTIONS} command as the keyword @samp{SECTIONS},
1755 followed by a series of symbol assignments and output section
1756 descriptions enclosed in curly braces.
1758 The first line inside the @samp{SECTIONS} command of the above example
1759 sets the value of the special symbol @samp{.}, which is the location
1760 counter. If you do not specify the address of an output section in some
1761 other way (other ways are described later), the address is set from the
1762 current value of the location counter. The location counter is then
1763 incremented by the size of the output section. At the start of the
1764 @samp{SECTIONS} command, the location counter has the value @samp{0}.
1766 The second line defines an output section, @samp{.text}. The colon is
1767 required syntax which may be ignored for now. Within the curly braces
1768 after the output section name, you list the names of the input sections
1769 which should be placed into this output section. The @samp{*} is a
1770 wildcard which matches any file name. The expression @samp{*(.text)}
1771 means all @samp{.text} input sections in all input files.
1773 Since the location counter is @samp{0x10000} when the output section
1774 @samp{.text} is defined, the linker will set the address of the
1775 @samp{.text} section in the output file to be @samp{0x10000}.
1777 The remaining lines define the @samp{.data} and @samp{.bss} sections in
1778 the output file. The linker will place the @samp{.data} output section
1779 at address @samp{0x8000000}. After the linker places the @samp{.data}
1780 output section, the value of the location counter will be
1781 @samp{0x8000000} plus the size of the @samp{.data} output section. The
1782 effect is that the linker will place the @samp{.bss} output section
1783 immediately after the @samp{.data} output section in memory
1785 The linker will ensure that each output section has the required
1786 alignment, by increasing the location counter if necessary. In this
1787 example, the specified addresses for the @samp{.text} and @samp{.data}
1788 sections will probably satisfy any alignment constraints, but the linker
1789 may have to create a small gap between the @samp{.data} and @samp{.bss}
1792 That's it! That's a simple and complete linker script.
1794 @node Simple Commands
1795 @section Simple Linker Script Commands
1796 @cindex linker script simple commands
1797 In this section we describe the simple linker script commands.
1800 * Entry Point:: Setting the entry point
1801 * File Commands:: Commands dealing with files
1802 @ifclear SingleFormat
1803 * Format Commands:: Commands dealing with object file formats
1806 * Miscellaneous Commands:: Other linker script commands
1810 @subsection Setting the entry point
1811 @kindex ENTRY(@var{symbol})
1812 @cindex start of execution
1813 @cindex first instruction
1815 The first instruction to execute in a program is called the @dfn{entry
1816 point}. You can use the @code{ENTRY} linker script command to set the
1817 entry point. The argument is a symbol name:
1822 There are several ways to set the entry point. The linker will set the
1823 entry point by trying each of the following methods in order, and
1824 stopping when one of them succeeds:
1827 the @samp{-e} @var{entry} command-line option;
1829 the @code{ENTRY(@var{symbol})} command in a linker script;
1831 the value of the symbol @code{start}, if defined;
1833 the address of the first byte of the @samp{.text} section, if present;
1835 The address @code{0}.
1839 @subsection Commands dealing with files
1840 @cindex linker script file commands
1841 Several linker script commands deal with files.
1844 @item INCLUDE @var{filename}
1845 @kindex INCLUDE @var{filename}
1846 @cindex including a linker script
1847 Include the linker script @var{filename} at this point. The file will
1848 be searched for in the current directory, and in any directory specified
1849 with the @code{-L} option. You can nest calls to @code{INCLUDE} up to
1852 @item INPUT(@var{file}, @var{file}, @dots{})
1853 @itemx INPUT(@var{file} @var{file} @dots{})
1854 @kindex INPUT(@var{files})
1855 @cindex input files in linker scripts
1856 @cindex input object files in linker scripts
1857 @cindex linker script input object files
1858 The @code{INPUT} command directs the linker to include the named files
1859 in the link, as though they were named on the command line.
1861 For example, if you always want to include @file{subr.o} any time you do
1862 a link, but you can't be bothered to put it on every link command line,
1863 then you can put @samp{INPUT (subr.o)} in your linker script.
1865 In fact, if you like, you can list all of your input files in the linker
1866 script, and then invoke the linker with nothing but a @samp{-T} option.
1868 The linker will first try to open the file in the current directory. If
1869 it is not found, the linker will search through the archive library
1870 search path. See the description of @samp{-L} in @ref{Options,,Command
1873 If you use @samp{INPUT (-l@var{file})}, @code{ld} will transform the
1874 name to @code{lib@var{file}.a}, as with the command line argument
1877 When you use the @code{INPUT} command in an implicit linker script, the
1878 files will be included in the link at the point at which the linker
1879 script file is included. This can affect archive searching.
1881 @item GROUP(@var{file}, @var{file}, @dots{})
1882 @itemx GROUP(@var{file} @var{file} @dots{})
1883 @kindex GROUP(@var{files})
1884 @cindex grouping input files
1885 The @code{GROUP} command is like @code{INPUT}, except that the named
1886 files should all be archives, and they are searched repeatedly until no
1887 new undefined references are created. See the description of @samp{-(}
1888 in @ref{Options,,Command Line Options}.
1890 @item OUTPUT(@var{filename})
1891 @kindex OUTPUT(@var{filename})
1892 @cindex output file name in linker scripot
1893 The @code{OUTPUT} command names the output file. Using
1894 @code{OUTPUT(@var{filename})} in the linker script is exactly like using
1895 @samp{-o @var{filename}} on the command line (@pxref{Options,,Command
1896 Line Options}). If both are used, the command line option takes
1899 You can use the @code{OUTPUT} command to define a default name for the
1900 output file other than the usual default of @file{a.out}.
1902 @item SEARCH_DIR(@var{path})
1903 @kindex SEARCH_DIR(@var{path})
1904 @cindex library search path in linker script
1905 @cindex archive search path in linker script
1906 @cindex search path in linker script
1907 The @code{SEARCH_DIR} command adds @var{path} to the list of paths where
1908 @code{ld} looks for archive libraries. Using
1909 @code{SEARCH_DIR(@var{path})} is exactly like using @samp{-L @var{path}}
1910 on the command line (@pxref{Options,,Command Line Options}). If both
1911 are used, then the linker will search both paths. Paths specified using
1912 the command line option are searched first.
1914 @item STARTUP(@var{filename})
1915 @kindex STARTUP(@var{filename})
1916 @cindex first input file
1917 The @code{STARTUP} command is just like the @code{INPUT} command, except
1918 that @var{filename} will become the first input file to be linked, as
1919 though it were specified first on the command line. This may be useful
1920 when using a system in which the entry point is always the start of the
1924 @ifclear SingleFormat
1925 @node Format Commands
1926 @subsection Commands dealing with object file formats
1927 A couple of linker script commands deal with object file formats.
1930 @item OUTPUT_FORMAT(@var{bfdname})
1931 @itemx OUTPUT_FORMAT(@var{default}, @var{big}, @var{little})
1932 @kindex OUTPUT_FORMAT(@var{bfdname})
1933 @cindex output file format in linker script
1934 The @code{OUTPUT_FORMAT} command names the BFD format to use for the
1935 output file (@pxref{BFD}). Using @code{OUTPUT_FORMAT(@var{bfdname})} is
1936 exactly like using @samp{-oformat @var{bfdname}} on the command line
1937 (@pxref{Options,,Command Line Options}). If both are used, the command
1938 line option takes precedence.
1940 You can use @code{OUTPUT_FORMAT} with three arguments to use different
1941 formats based on the @samp{-EB} and @samp{-EL} command line options.
1942 This permits the linker script to set the output format based on the
1945 If neither @samp{-EB} nor @samp{-EL} are used, then the output format
1946 will be the first argument, @var{default}. If @samp{-EB} is used, the
1947 output format will be the second argument, @var{big}. If @samp{-EL} is
1948 used, the output format will be the third argument, @var{little}.
1950 For example, the default linker script for the MIPS ELF target uses this
1953 OUTPUT_FORMAT(elf32-bigmips, elf32-bigmips, elf32-littlemips)
1955 This says that the default format for the output file is
1956 @samp{elf32-bigmips}, but if the user uses the @samp{-EL} command line
1957 option, the output file will be created in the @samp{elf32-littlemips}
1960 @item TARGET(@var{bfdname})
1961 @kindex TARGET(@var{bfdname})
1962 @cindex input file format in linker script
1963 The @code{TARGET} command names the BFD format to use when reading input
1964 files. It affects subsequent @code{INPUT} and @code{GROUP} commands.
1965 This command is like using @samp{-b @var{bfdname}} on the command line
1966 (@pxref{Options,,Command Line Options}). If the @code{TARGET} command
1967 is used but @code{OUTPUT_FORMAT} is not, then the last @code{TARGET}
1968 command is also used to set the format for the output file. @xref{BFD}.
1972 @node Miscellaneous Commands
1973 @subsection Other linker script commands
1974 There are a few other linker scripts commands.
1977 @item ASSERT(@var{exp}, @var{message})
1979 @cindex assertion in linker script
1980 Ensure that @var{exp} is non-zero. If it is zero, then exit the linker
1981 with an error code, and print @var{message}.
1983 @item EXTERN(@var{symbol} @var{symbol} @dots{})
1985 @cindex undefined symbol in linker script
1986 Force @var{symbol} to be entered in the output file as an undefined
1987 symbol. Doing this may, for example, trigger linking of additional
1988 modules from standard libraries. You may list several @var{symbol}s for
1989 each @code{EXTERN}, and you may use @code{EXTERN} multiple times. This
1990 command has the same effect as the @samp{-u} command-line option.
1992 @item FORCE_COMMON_ALLOCATION
1993 @kindex FORCE_COMMON_ALLOCATION
1994 @cindex common allocation in linker script
1995 This command has the same effect as the @samp{-d} command-line option:
1996 to make @code{ld} assign space to common symbols even if a relocatable
1997 output file is specified (@samp{-r}).
1999 @item NOCROSSREFS(@var{section} @var{section} @dots{})
2000 @kindex NOCROSSREFS(@var{sections})
2001 @cindex cross references
2002 This command may be used to tell @code{ld} to issue an error about any
2003 references among certain output sections.
2005 In certain types of programs, particularly on embedded systems when
2006 using overlays, when one section is loaded into memory, another section
2007 will not be. Any direct references between the two sections would be
2008 errors. For example, it would be an error if code in one section called
2009 a function defined in the other section.
2011 The @code{NOCROSSREFS} command takes a list of output section names. If
2012 @code{ld} detects any cross references between the sections, it reports
2013 an error and returns a non-zero exit status. Note that the
2014 @code{NOCROSSREFS} command uses output section names, not input section
2017 @ifclear SingleFormat
2018 @item OUTPUT_ARCH(@var{bfdarch})
2019 @kindex OUTPUT_ARCH(@var{bfdarch})
2020 @cindex machine architecture
2021 @cindex architecture
2022 Specify a particular output machine architecture. The argument is one
2023 of the names used by the BFD library (@pxref{BFD}). You can see the
2024 architecture of an object file by using the @code{objdump} program with
2025 the @samp{-f} option.
2030 @section Assigning Values to Symbols
2031 @cindex assignment in scripts
2032 @cindex symbol definition, scripts
2033 @cindex variables, defining
2034 You may assign a value to a symbol in a linker script. This will define
2035 the symbol as a global symbol.
2038 * Simple Assignments:: Simple Assignments
2042 @node Simple Assignments
2043 @subsection Simple Assignments
2045 You may assign to a symbol using any of the C assignment operators:
2048 @item @var{symbol} = @var{expression} ;
2049 @itemx @var{symbol} += @var{expression} ;
2050 @itemx @var{symbol} -= @var{expression} ;
2051 @itemx @var{symbol} *= @var{expression} ;
2052 @itemx @var{symbol} /= @var{expression} ;
2053 @itemx @var{symbol} <<= @var{expression} ;
2054 @itemx @var{symbol} >>= @var{expression} ;
2055 @itemx @var{symbol} &= @var{expression} ;
2056 @itemx @var{symbol} |= @var{expression} ;
2059 The first case will define @var{symbol} to the value of
2060 @var{expression}. In the other cases, @var{symbol} must already be
2061 defined, and the value will be adjusted accordingly.
2063 The special symbol name @samp{.} indicates the location counter. You
2064 may only use this within a @code{SECTIONS} command.
2066 The semicolon after @var{expression} is required.
2068 Expressions are defined below; see @ref{Expressions}.
2070 You may write symbol assignments as commands in their own right, or as
2071 statements within a @code{SECTIONS} command, or as part of an output
2072 section description in a @code{SECTIONS} command.
2074 The section of the symbol will be set from the section of the
2075 expression; for more information, see @ref{Expression Section}.
2077 Here is an example showing the three different places that symbol
2078 assignments may be used:
2089 _bdata = (. + 3) & ~ 4;
2090 .data : @{ *(.data) @}
2094 In this example, the symbol @samp{floating_point} will be defined as
2095 zero. The symbol @samp{_etext} will be defined as the address following
2096 the last @samp{.text} input section. The symbol @samp{_bdata} will be
2097 defined as the address following the @samp{.text} output section aligned
2098 upward to a 4 byte boundary.
2103 In some cases, it is desirable for a linker script to define a symbol
2104 only if it is referenced and is not defined by any object included in
2105 the link. For example, traditional linkers defined the symbol
2106 @samp{etext}. However, ANSI C requires that the user be able to use
2107 @samp{etext} as a function name without encountering an error. The
2108 @code{PROVIDE} keyword may be used to define a symbol, such as
2109 @samp{etext}, only if it is referenced but not defined. The syntax is
2110 @code{PROVIDE(@var{symbol} = @var{expression})}.
2112 Here is an example of using @code{PROVIDE} to define @samp{etext}:
2125 In this example, if the program defines @samp{_etext} (with a leading
2126 underscore), the linker will give a multiple definition error. If, on
2127 the other hand, the program defines @samp{etext} (with no leading
2128 underscore), the linker will silently use the definition in the program.
2129 If the program references @samp{etext} but does not define it, the
2130 linker will use the definition in the linker script.
2133 @section SECTIONS command
2135 The @code{SECTIONS} command tells the linker how to map input sections
2136 into output sections, and how to place the output sections in memory.
2138 The format of the @code{SECTIONS} command is:
2142 @var{sections-command}
2143 @var{sections-command}
2148 Each @var{sections-command} may of be one of the following:
2152 an @code{ENTRY} command (@pxref{Entry Point,,Entry command})
2154 a symbol assignment (@pxref{Assignments})
2156 an output section description
2158 an overlay description
2161 The @code{ENTRY} command and symbol assignments are permitted inside the
2162 @code{SECTIONS} command for convenience in using the location counter in
2163 those commands. This can also make the linker script easier to
2164 understand because you can use those commands at meaningful points in
2165 the layout of the output file.
2167 Output section descriptions and overlay descriptions are described
2170 If you do not use a @code{SECTIONS} command in your linker script, the
2171 linker will place each input section into an identically named output
2172 section in the order that the sections are first encountered in the
2173 input files. If all input sections are present in the first file, for
2174 example, the order of sections in the output file will match the order
2175 in the first input file. The first section will be at address zero.
2178 * Output Section Description:: Output section description
2179 * Output Section Name:: Output section name
2180 * Output Section Address:: Output section address
2181 * Input Section:: Input section description
2182 * Output Section Data:: Output section data
2183 * Output Section Keywords:: Output section keywords
2184 * Output Section Discarding:: Output section discarding
2185 * Output Section Attributes:: Output section attributes
2186 * Overlay Description:: Overlay description
2189 @node Output Section Description
2190 @subsection Output section description
2191 The full description of an output section looks like this:
2194 @var{section} [@var{address}] [(@var{type})] : [AT(@var{lma})]
2196 @var{output-section-command}
2197 @var{output-section-command}
2199 @} [>@var{region}] [AT>@var{lma_region}] [:@var{phdr} :@var{phdr} @dots{}] [=@var{fillexp}]
2203 Most output sections do not use most of the optional section attributes.
2205 The whitespace around @var{section} is required, so that the section
2206 name is unambiguous. The colon and the curly braces are also required.
2207 The line breaks and other white space are optional.
2209 Each @var{output-section-command} may be one of the following:
2213 a symbol assignment (@pxref{Assignments})
2215 an input section description (@pxref{Input Section})
2217 data values to include directly (@pxref{Output Section Data})
2219 a special output section keyword (@pxref{Output Section Keywords})
2222 @node Output Section Name
2223 @subsection Output section name
2224 @cindex name, section
2225 @cindex section name
2226 The name of the output section is @var{section}. @var{section} must
2227 meet the constraints of your output format. In formats which only
2228 support a limited number of sections, such as @code{a.out}, the name
2229 must be one of the names supported by the format (@code{a.out}, for
2230 example, allows only @samp{.text}, @samp{.data} or @samp{.bss}). If the
2231 output format supports any number of sections, but with numbers and not
2232 names (as is the case for Oasys), the name should be supplied as a
2233 quoted numeric string. A section name may consist of any sequence of
2234 characters, but a name which contains any unusual characters such as
2235 commas must be quoted.
2237 The output section name @samp{/DISCARD/} is special; @ref{Output Section
2240 @node Output Section Address
2241 @subsection Output section address
2242 @cindex address, section
2243 @cindex section address
2244 The @var{address} is an expression for the VMA (the virtual memory
2245 address) of the output section. If you do not provide @var{address},
2246 the linker will set it based on @var{region} if present, or otherwise
2247 based on the current value of the location counter.
2249 If you provide @var{address}, the address of the output section will be
2250 set to precisely that. If you provide neither @var{address} nor
2251 @var{region}, then the address of the output section will be set to the
2252 current value of the location counter aligned to the alignment
2253 requirements of the output section. The alignment requirement of the
2254 output section is the strictest alignment of any input section contained
2255 within the output section.
2259 .text . : @{ *(.text) @}
2264 .text : @{ *(.text) @}
2267 are subtly different. The first will set the address of the
2268 @samp{.text} output section to the current value of the location
2269 counter. The second will set it to the current value of the location
2270 counter aligned to the strictest alignment of a @samp{.text} input
2273 The @var{address} may be an arbitrary expression; @ref{Expressions}.
2274 For example, if you want to align the section on a 0x10 byte boundary,
2275 so that the lowest four bits of the section address are zero, you could
2276 do something like this:
2278 .text ALIGN(0x10) : @{ *(.text) @}
2281 This works because @code{ALIGN} returns the current location counter
2282 aligned upward to the specified value.
2284 Specifying @var{address} for a section will change the value of the
2288 @subsection Input section description
2289 @cindex input sections
2290 @cindex mapping input sections to output sections
2291 The most common output section command is an input section description.
2293 The input section description is the most basic linker script operation.
2294 You use output sections to tell the linker how to lay out your program
2295 in memory. You use input section descriptions to tell the linker how to
2296 map the input files into your memory layout.
2299 * Input Section Basics:: Input section basics
2300 * Input Section Wildcards:: Input section wildcard patterns
2301 * Input Section Common:: Input section for common symbols
2302 * Input Section Keep:: Input section and garbage collection
2303 * Input Section Example:: Input section example
2306 @node Input Section Basics
2307 @subsubsection Input section basics
2308 @cindex input section basics
2309 An input section description consists of a file name optionally followed
2310 by a list of section names in parentheses.
2312 The file name and the section name may be wildcard patterns, which we
2313 describe further below (@pxref{Input Section Wildcards}).
2315 The most common input section description is to include all input
2316 sections with a particular name in the output section. For example, to
2317 include all input @samp{.text} sections, you would write:
2322 Here the @samp{*} is a wildcard which matches any file name. To exclude a list
2323 of files from matching the file name wildcard, EXCLUDE_FILE may be used to
2324 match all files except the ones specified in the EXCLUDE_FILE list. For
2327 (*(EXCLUDE_FILE (*crtend.o *otherfile.o) .ctors))
2329 will cause all .ctors sections from all files except @file{crtend.o} and
2330 @file{otherfile.o} to be included.
2332 There are two ways to include more than one section:
2338 The difference between these is the order in which the @samp{.text} and
2339 @samp{.rdata} input sections will appear in the output section. In the
2340 first example, they will be intermingled. In the second example, all
2341 @samp{.text} input sections will appear first, followed by all
2342 @samp{.rdata} input sections.
2344 You can specify a file name to include sections from a particular file.
2345 You would do this if one or more of your files contain special data that
2346 needs to be at a particular location in memory. For example:
2351 If you use a file name without a list of sections, then all sections in
2352 the input file will be included in the output section. This is not
2353 commonly done, but it may by useful on occasion. For example:
2358 When you use a file name which does not contain any wild card
2359 characters, the linker will first see if you also specified the file
2360 name on the linker command line or in an @code{INPUT} command. If you
2361 did not, the linker will attempt to open the file as an input file, as
2362 though it appeared on the command line. Note that this differs from an
2363 @code{INPUT} command, because the linker will not search for the file in
2364 the archive search path.
2366 @node Input Section Wildcards
2367 @subsubsection Input section wildcard patterns
2368 @cindex input section wildcards
2369 @cindex wildcard file name patterns
2370 @cindex file name wildcard patterns
2371 @cindex section name wildcard patterns
2372 In an input section description, either the file name or the section
2373 name or both may be wildcard patterns.
2375 The file name of @samp{*} seen in many examples is a simple wildcard
2376 pattern for the file name.
2378 The wildcard patterns are like those used by the Unix shell.
2382 matches any number of characters
2384 matches any single character
2386 matches a single instance of any of the @var{chars}; the @samp{-}
2387 character may be used to specify a range of characters, as in
2388 @samp{[a-z]} to match any lower case letter
2390 quotes the following character
2393 When a file name is matched with a wildcard, the wildcard characters
2394 will not match a @samp{/} character (used to separate directory names on
2395 Unix). A pattern consisting of a single @samp{*} character is an
2396 exception; it will always match any file name, whether it contains a
2397 @samp{/} or not. In a section name, the wildcard characters will match
2398 a @samp{/} character.
2400 File name wildcard patterns only match files which are explicitly
2401 specified on the command line or in an @code{INPUT} command. The linker
2402 does not search directories to expand wildcards.
2404 If a file name matches more than one wildcard pattern, or if a file name
2405 appears explicitly and is also matched by a wildcard pattern, the linker
2406 will use the first match in the linker script. For example, this
2407 sequence of input section descriptions is probably in error, because the
2408 @file{data.o} rule will not be used:
2410 .data : @{ *(.data) @}
2411 .data1 : @{ data.o(.data) @}
2415 Normally, the linker will place files and sections matched by wildcards
2416 in the order in which they are seen during the link. You can change
2417 this by using the @code{SORT} keyword, which appears before a wildcard
2418 pattern in parentheses (e.g., @code{SORT(.text*)}). When the
2419 @code{SORT} keyword is used, the linker will sort the files or sections
2420 into ascending order by name before placing them in the output file.
2422 If you ever get confused about where input sections are going, use the
2423 @samp{-M} linker option to generate a map file. The map file shows
2424 precisely how input sections are mapped to output sections.
2426 This example shows how wildcard patterns might be used to partition
2427 files. This linker script directs the linker to place all @samp{.text}
2428 sections in @samp{.text} and all @samp{.bss} sections in @samp{.bss}.
2429 The linker will place the @samp{.data} section from all files beginning
2430 with an upper case character in @samp{.DATA}; for all other files, the
2431 linker will place the @samp{.data} section in @samp{.data}.
2435 .text : @{ *(.text) @}
2436 .DATA : @{ [A-Z]*(.data) @}
2437 .data : @{ *(.data) @}
2438 .bss : @{ *(.bss) @}
2443 @node Input Section Common
2444 @subsubsection Input section for common symbols
2445 @cindex common symbol placement
2446 @cindex uninitialized data placement
2447 A special notation is needed for common symbols, because in many object
2448 file formats common symbols do not have a particular input section. The
2449 linker treats common symbols as though they are in an input section
2450 named @samp{COMMON}.
2452 You may use file names with the @samp{COMMON} section just as with any
2453 other input sections. You can use this to place common symbols from a
2454 particular input file in one section while common symbols from other
2455 input files are placed in another section.
2457 In most cases, common symbols in input files will be placed in the
2458 @samp{.bss} section in the output file. For example:
2460 .bss @{ *(.bss) *(COMMON) @}
2463 @cindex scommon section
2464 @cindex small common symbols
2465 Some object file formats have more than one type of common symbol. For
2466 example, the MIPS ELF object file format distinguishes standard common
2467 symbols and small common symbols. In this case, the linker will use a
2468 different special section name for other types of common symbols. In
2469 the case of MIPS ELF, the linker uses @samp{COMMON} for standard common
2470 symbols and @samp{.scommon} for small common symbols. This permits you
2471 to map the different types of common symbols into memory at different
2475 You will sometimes see @samp{[COMMON]} in old linker scripts. This
2476 notation is now considered obsolete. It is equivalent to
2479 @node Input Section Keep
2480 @subsubsection Input section and garbage collection
2482 @cindex garbage collection
2483 When link-time garbage collection is in use (@samp{--gc-sections}),
2484 it is often useful to mark sections that should not be eliminated.
2485 This is accomplished by surrounding an input section's wildcard entry
2486 with @code{KEEP()}, as in @code{KEEP(*(.init))} or
2487 @code{KEEP(SORT(*)(.ctors))}.
2489 @node Input Section Example
2490 @subsubsection Input section example
2491 The following example is a complete linker script. It tells the linker
2492 to read all of the sections from file @file{all.o} and place them at the
2493 start of output section @samp{outputa} which starts at location
2494 @samp{0x10000}. All of section @samp{.input1} from file @file{foo.o}
2495 follows immediately, in the same output section. All of section
2496 @samp{.input2} from @file{foo.o} goes into output section
2497 @samp{outputb}, followed by section @samp{.input1} from @file{foo1.o}.
2498 All of the remaining @samp{.input1} and @samp{.input2} sections from any
2499 files are written to output section @samp{outputc}.
2523 @node Output Section Data
2524 @subsection Output section data
2526 @cindex section data
2527 @cindex output section data
2528 @kindex BYTE(@var{expression})
2529 @kindex SHORT(@var{expression})
2530 @kindex LONG(@var{expression})
2531 @kindex QUAD(@var{expression})
2532 @kindex SQUAD(@var{expression})
2533 You can include explicit bytes of data in an output section by using
2534 @code{BYTE}, @code{SHORT}, @code{LONG}, @code{QUAD}, or @code{SQUAD} as
2535 an output section command. Each keyword is followed by an expression in
2536 parentheses providing the value to store (@pxref{Expressions}). The
2537 value of the expression is stored at the current value of the location
2540 The @code{BYTE}, @code{SHORT}, @code{LONG}, and @code{QUAD} commands
2541 store one, two, four, and eight bytes (respectively). After storing the
2542 bytes, the location counter is incremented by the number of bytes
2545 For example, this will store the byte 1 followed by the four byte value
2546 of the symbol @samp{addr}:
2552 When using a 64 bit host or target, @code{QUAD} and @code{SQUAD} are the
2553 same; they both store an 8 byte, or 64 bit, value. When both host and
2554 target are 32 bits, an expression is computed as 32 bits. In this case
2555 @code{QUAD} stores a 32 bit value zero extended to 64 bits, and
2556 @code{SQUAD} stores a 32 bit value sign extended to 64 bits.
2558 If the object file format of the output file has an explicit endianness,
2559 which is the normal case, the value will be stored in that endianness.
2560 When the object file format does not have an explicit endianness, as is
2561 true of, for example, S-records, the value will be stored in the
2562 endianness of the first input object file.
2564 Note - these commands only work inside a section description and not
2565 between them, so the following will produce an error from the linker:
2567 SECTIONS @{@ .text : @{@ *(.text) @}@ LONG(1) .data : @{@ *(.data) @}@ @}@
2569 whereas this will work:
2571 SECTIONS @{@ .text : @{@ *(.text) ; LONG(1) @}@ .data : @{@ *(.data) @}@ @}@
2574 @kindex FILL(@var{expression})
2575 @cindex holes, filling
2576 @cindex unspecified memory
2577 You may use the @code{FILL} command to set the fill pattern for the
2578 current section. It is followed by an expression in parentheses. Any
2579 otherwise unspecified regions of memory within the section (for example,
2580 gaps left due to the required alignment of input sections) are filled
2581 with the two least significant bytes of the expression, repeated as
2582 necessary. A @code{FILL} statement covers memory locations after the
2583 point at which it occurs in the section definition; by including more
2584 than one @code{FILL} statement, you can have different fill patterns in
2585 different parts of an output section.
2587 This example shows how to fill unspecified regions of memory with the
2588 value @samp{0x9090}:
2593 The @code{FILL} command is similar to the @samp{=@var{fillexp}} output
2594 section attribute (@pxref{Output Section Fill}), but it only affects the
2595 part of the section following the @code{FILL} command, rather than the
2596 entire section. If both are used, the @code{FILL} command takes
2599 @node Output Section Keywords
2600 @subsection Output section keywords
2601 There are a couple of keywords which can appear as output section
2605 @kindex CREATE_OBJECT_SYMBOLS
2606 @cindex input filename symbols
2607 @cindex filename symbols
2608 @item CREATE_OBJECT_SYMBOLS
2609 The command tells the linker to create a symbol for each input file.
2610 The name of each symbol will be the name of the corresponding input
2611 file. The section of each symbol will be the output section in which
2612 the @code{CREATE_OBJECT_SYMBOLS} command appears.
2614 This is conventional for the a.out object file format. It is not
2615 normally used for any other object file format.
2617 @kindex CONSTRUCTORS
2618 @cindex C++ constructors, arranging in link
2619 @cindex constructors, arranging in link
2621 When linking using the a.out object file format, the linker uses an
2622 unusual set construct to support C++ global constructors and
2623 destructors. When linking object file formats which do not support
2624 arbitrary sections, such as ECOFF and XCOFF, the linker will
2625 automatically recognize C++ global constructors and destructors by name.
2626 For these object file formats, the @code{CONSTRUCTORS} command tells the
2627 linker to place constructor information in the output section where the
2628 @code{CONSTRUCTORS} command appears. The @code{CONSTRUCTORS} command is
2629 ignored for other object file formats.
2631 The symbol @w{@code{__CTOR_LIST__}} marks the start of the global
2632 constructors, and the symbol @w{@code{__DTOR_LIST}} marks the end. The
2633 first word in the list is the number of entries, followed by the address
2634 of each constructor or destructor, followed by a zero word. The
2635 compiler must arrange to actually run the code. For these object file
2636 formats @sc{gnu} C++ normally calls constructors from a subroutine
2637 @code{__main}; a call to @code{__main} is automatically inserted into
2638 the startup code for @code{main}. @sc{gnu} C++ normally runs
2639 destructors either by using @code{atexit}, or directly from the function
2642 For object file formats such as @code{COFF} or @code{ELF} which support
2643 arbitrary section names, @sc{gnu} C++ will normally arrange to put the
2644 addresses of global constructors and destructors into the @code{.ctors}
2645 and @code{.dtors} sections. Placing the following sequence into your
2646 linker script will build the sort of table which the @sc{gnu} C++
2647 runtime code expects to see.
2651 LONG((__CTOR_END__ - __CTOR_LIST__) / 4 - 2)
2656 LONG((__DTOR_END__ - __DTOR_LIST__) / 4 - 2)
2662 If you are using the @sc{gnu} C++ support for initialization priority,
2663 which provides some control over the order in which global constructors
2664 are run, you must sort the constructors at link time to ensure that they
2665 are executed in the correct order. When using the @code{CONSTRUCTORS}
2666 command, use @samp{SORT(CONSTRUCTORS)} instead. When using the
2667 @code{.ctors} and @code{.dtors} sections, use @samp{*(SORT(.ctors))} and
2668 @samp{*(SORT(.dtors))} instead of just @samp{*(.ctors)} and
2671 Normally the compiler and linker will handle these issues automatically,
2672 and you will not need to concern yourself with them. However, you may
2673 need to consider this if you are using C++ and writing your own linker
2678 @node Output Section Discarding
2679 @subsection Output section discarding
2680 @cindex discarding sections
2681 @cindex sections, discarding
2682 @cindex removing sections
2683 The linker will not create output section which do not have any
2684 contents. This is for convenience when referring to input sections that
2685 may or may not be present in any of the input files. For example:
2690 will only create a @samp{.foo} section in the output file if there is a
2691 @samp{.foo} section in at least one input file.
2693 If you use anything other than an input section description as an output
2694 section command, such as a symbol assignment, then the output section
2695 will always be created, even if there are no matching input sections.
2698 The special output section name @samp{/DISCARD/} may be used to discard
2699 input sections. Any input sections which are assigned to an output
2700 section named @samp{/DISCARD/} are not included in the output file.
2702 @node Output Section Attributes
2703 @subsection Output section attributes
2704 @cindex output section attributes
2705 We showed above that the full description of an output section looked
2709 @var{section} [@var{address}] [(@var{type})] : [AT(@var{lma})]
2711 @var{output-section-command}
2712 @var{output-section-command}
2714 @} [>@var{region}] [AT>@var{lma_region}] [:@var{phdr} :@var{phdr} @dots{}] [=@var{fillexp}]
2717 We've already described @var{section}, @var{address}, and
2718 @var{output-section-command}. In this section we will describe the
2719 remaining section attributes.
2722 * Output Section Type:: Output section type
2723 * Output Section LMA:: Output section LMA
2724 * Output Section Region:: Output section region
2725 * Output Section Phdr:: Output section phdr
2726 * Output Section Fill:: Output section fill
2729 @node Output Section Type
2730 @subsubsection Output section type
2731 Each output section may have a type. The type is a keyword in
2732 parentheses. The following types are defined:
2736 The section should be marked as not loadable, so that it will not be
2737 loaded into memory when the program is run.
2742 These type names are supported for backward compatibility, and are
2743 rarely used. They all have the same effect: the section should be
2744 marked as not allocatable, so that no memory is allocated for the
2745 section when the program is run.
2749 @cindex prevent unnecessary loading
2750 @cindex loading, preventing
2751 The linker normally sets the attributes of an output section based on
2752 the input sections which map into it. You can override this by using
2753 the section type. For example, in the script sample below, the
2754 @samp{ROM} section is addressed at memory location @samp{0} and does not
2755 need to be loaded when the program is run. The contents of the
2756 @samp{ROM} section will appear in the linker output file as usual.
2760 ROM 0 (NOLOAD) : @{ @dots{} @}
2766 @node Output Section LMA
2767 @subsubsection Output section LMA
2768 @kindex AT>@var{lma_region}
2769 @kindex AT(@var{lma})
2770 @cindex load address
2771 @cindex section load address
2772 Every section has a virtual address (VMA) and a load address (LMA); see
2773 @ref{Basic Script Concepts}. The address expression which may appear in
2774 an output section description sets the VMA (@pxref{Output Section
2777 The linker will normally set the LMA equal to the VMA. You can change
2778 that by using the @code{AT} keyword. The expression @var{lma} that
2779 follows the @code{AT} keyword specifies the load address of the
2780 section. Alternatively, with @samp{AT>@var{lma_region}} expression,
2781 you may specify a memory region for the section's load address. @xref{MEMORY}.
2783 @cindex ROM initialized data
2784 @cindex initialized data in ROM
2785 This feature is designed to make it easy to build a ROM image. For
2786 example, the following linker script creates three output sections: one
2787 called @samp{.text}, which starts at @code{0x1000}, one called
2788 @samp{.mdata}, which is loaded at the end of the @samp{.text} section
2789 even though its VMA is @code{0x2000}, and one called @samp{.bss} to hold
2790 uninitialized data at address @code{0x3000}. The symbol @code{_data} is
2791 defined with the value @code{0x2000}, which shows that the location
2792 counter holds the VMA value, not the LMA value.
2798 .text 0x1000 : @{ *(.text) _etext = . ; @}
2800 AT ( ADDR (.text) + SIZEOF (.text) )
2801 @{ _data = . ; *(.data); _edata = . ; @}
2803 @{ _bstart = . ; *(.bss) *(COMMON) ; _bend = . ;@}
2808 The run-time initialization code for use with a program generated with
2809 this linker script would include something like the following, to copy
2810 the initialized data from the ROM image to its runtime address. Notice
2811 how this code takes advantage of the symbols defined by the linker
2816 extern char _etext, _data, _edata, _bstart, _bend;
2817 char *src = &_etext;
2820 /* ROM has data at end of text; copy it. */
2821 while (dst < &_edata) @{
2826 for (dst = &_bstart; dst< &_bend; dst++)
2831 @node Output Section Region
2832 @subsubsection Output section region
2833 @kindex >@var{region}
2834 @cindex section, assigning to memory region
2835 @cindex memory regions and sections
2836 You can assign a section to a previously defined region of memory by
2837 using @samp{>@var{region}}. @xref{MEMORY}.
2839 Here is a simple example:
2842 MEMORY @{ rom : ORIGIN = 0x1000, LENGTH = 0x1000 @}
2843 SECTIONS @{ ROM : @{ *(.text) @} >rom @}
2847 @node Output Section Phdr
2848 @subsubsection Output section phdr
2850 @cindex section, assigning to program header
2851 @cindex program headers and sections
2852 You can assign a section to a previously defined program segment by
2853 using @samp{:@var{phdr}}. @xref{PHDRS}. If a section is assigned to
2854 one or more segments, then all subsequent allocated sections will be
2855 assigned to those segments as well, unless they use an explicitly
2856 @code{:@var{phdr}} modifier. You can use @code{:NONE} to tell the
2857 linker to not put the section in any segment at all.
2859 Here is a simple example:
2862 PHDRS @{ text PT_LOAD ; @}
2863 SECTIONS @{ .text : @{ *(.text) @} :text @}
2867 @node Output Section Fill
2868 @subsubsection Output section fill
2869 @kindex =@var{fillexp}
2870 @cindex section fill pattern
2871 @cindex fill pattern, entire section
2872 You can set the fill pattern for an entire section by using
2873 @samp{=@var{fillexp}}. @var{fillexp} is an expression
2874 (@pxref{Expressions}). Any otherwise unspecified regions of memory
2875 within the output section (for example, gaps left due to the required
2876 alignment of input sections) will be filled with the two least
2877 significant bytes of the value, repeated as necessary.
2879 You can also change the fill value with a @code{FILL} command in the
2880 output section commands; see @ref{Output Section Data}.
2882 Here is a simple example:
2885 SECTIONS @{ .text : @{ *(.text) @} =0x9090 @}
2889 @node Overlay Description
2890 @subsection Overlay description
2893 An overlay description provides an easy way to describe sections which
2894 are to be loaded as part of a single memory image but are to be run at
2895 the same memory address. At run time, some sort of overlay manager will
2896 copy the overlaid sections in and out of the runtime memory address as
2897 required, perhaps by simply manipulating addressing bits. This approach
2898 can be useful, for example, when a certain region of memory is faster
2901 Overlays are described using the @code{OVERLAY} command. The
2902 @code{OVERLAY} command is used within a @code{SECTIONS} command, like an
2903 output section description. The full syntax of the @code{OVERLAY}
2904 command is as follows:
2907 OVERLAY [@var{start}] : [NOCROSSREFS] [AT ( @var{ldaddr} )]
2911 @var{output-section-command}
2912 @var{output-section-command}
2914 @} [:@var{phdr}@dots{}] [=@var{fill}]
2917 @var{output-section-command}
2918 @var{output-section-command}
2920 @} [:@var{phdr}@dots{}] [=@var{fill}]
2922 @} [>@var{region}] [:@var{phdr}@dots{}] [=@var{fill}]
2926 Everything is optional except @code{OVERLAY} (a keyword), and each
2927 section must have a name (@var{secname1} and @var{secname2} above). The
2928 section definitions within the @code{OVERLAY} construct are identical to
2929 those within the general @code{SECTIONS} contruct (@pxref{SECTIONS}),
2930 except that no addresses and no memory regions may be defined for
2931 sections within an @code{OVERLAY}.
2933 The sections are all defined with the same starting address. The load
2934 addresses of the sections are arranged such that they are consecutive in
2935 memory starting at the load address used for the @code{OVERLAY} as a
2936 whole (as with normal section definitions, the load address is optional,
2937 and defaults to the start address; the start address is also optional,
2938 and defaults to the current value of the location counter).
2940 If the @code{NOCROSSREFS} keyword is used, and there any references
2941 among the sections, the linker will report an error. Since the sections
2942 all run at the same address, it normally does not make sense for one
2943 section to refer directly to another. @xref{Miscellaneous Commands,
2946 For each section within the @code{OVERLAY}, the linker automatically
2947 defines two symbols. The symbol @code{__load_start_@var{secname}} is
2948 defined as the starting load address of the section. The symbol
2949 @code{__load_stop_@var{secname}} is defined as the final load address of
2950 the section. Any characters within @var{secname} which are not legal
2951 within C identifiers are removed. C (or assembler) code may use these
2952 symbols to move the overlaid sections around as necessary.
2954 At the end of the overlay, the value of the location counter is set to
2955 the start address of the overlay plus the size of the largest section.
2957 Here is an example. Remember that this would appear inside a
2958 @code{SECTIONS} construct.
2961 OVERLAY 0x1000 : AT (0x4000)
2963 .text0 @{ o1/*.o(.text) @}
2964 .text1 @{ o2/*.o(.text) @}
2969 This will define both @samp{.text0} and @samp{.text1} to start at
2970 address 0x1000. @samp{.text0} will be loaded at address 0x4000, and
2971 @samp{.text1} will be loaded immediately after @samp{.text0}. The
2972 following symbols will be defined: @code{__load_start_text0},
2973 @code{__load_stop_text0}, @code{__load_start_text1},
2974 @code{__load_stop_text1}.
2976 C code to copy overlay @code{.text1} into the overlay area might look
2981 extern char __load_start_text1, __load_stop_text1;
2982 memcpy ((char *) 0x1000, &__load_start_text1,
2983 &__load_stop_text1 - &__load_start_text1);
2987 Note that the @code{OVERLAY} command is just syntactic sugar, since
2988 everything it does can be done using the more basic commands. The above
2989 example could have been written identically as follows.
2993 .text0 0x1000 : AT (0x4000) @{ o1/*.o(.text) @}
2994 __load_start_text0 = LOADADDR (.text0);
2995 __load_stop_text0 = LOADADDR (.text0) + SIZEOF (.text0);
2996 .text1 0x1000 : AT (0x4000 + SIZEOF (.text0)) @{ o2/*.o(.text) @}
2997 __load_start_text1 = LOADADDR (.text1);
2998 __load_stop_text1 = LOADADDR (.text1) + SIZEOF (.text1);
2999 . = 0x1000 + MAX (SIZEOF (.text0), SIZEOF (.text1));
3004 @section MEMORY command
3006 @cindex memory regions
3007 @cindex regions of memory
3008 @cindex allocating memory
3009 @cindex discontinuous memory
3010 The linker's default configuration permits allocation of all available
3011 memory. You can override this by using the @code{MEMORY} command.
3013 The @code{MEMORY} command describes the location and size of blocks of
3014 memory in the target. You can use it to describe which memory regions
3015 may be used by the linker, and which memory regions it must avoid. You
3016 can then assign sections to particular memory regions. The linker will
3017 set section addresses based on the memory regions, and will warn about
3018 regions that become too full. The linker will not shuffle sections
3019 around to fit into the available regions.
3021 A linker script may contain at most one use of the @code{MEMORY}
3022 command. However, you can define as many blocks of memory within it as
3023 you wish. The syntax is:
3028 @var{name} [(@var{attr})] : ORIGIN = @var{origin}, LENGTH = @var{len}
3034 The @var{name} is a name used in the linker script to refer to the
3035 region. The region name has no meaning outside of the linker script.
3036 Region names are stored in a separate name space, and will not conflict
3037 with symbol names, file names, or section names. Each memory region
3038 must have a distinct name.
3040 @cindex memory region attributes
3041 The @var{attr} string is an optional list of attributes that specify
3042 whether to use a particular memory region for an input section which is
3043 not explicitly mapped in the linker script. As described in
3044 @ref{SECTIONS}, if you do not specify an output section for some input
3045 section, the linker will create an output section with the same name as
3046 the input section. If you define region attributes, the linker will use
3047 them to select the memory region for the output section that it creates.
3049 The @var{attr} string must consist only of the following characters:
3064 Invert the sense of any of the preceding attributes
3067 If a unmapped section matches any of the listed attributes other than
3068 @samp{!}, it will be placed in the memory region. The @samp{!}
3069 attribute reverses this test, so that an unmapped section will be placed
3070 in the memory region only if it does not match any of the listed
3076 The @var{origin} is an expression for the start address of the memory
3077 region. The expression must evaluate to a constant before memory
3078 allocation is performed, which means that you may not use any section
3079 relative symbols. The keyword @code{ORIGIN} may be abbreviated to
3080 @code{org} or @code{o} (but not, for example, @code{ORG}).
3085 The @var{len} is an expression for the size in bytes of the memory
3086 region. As with the @var{origin} expression, the expression must
3087 evaluate to a constant before memory allocation is performed. The
3088 keyword @code{LENGTH} may be abbreviated to @code{len} or @code{l}.
3090 In the following example, we specify that there are two memory regions
3091 available for allocation: one starting at @samp{0} for 256 kilobytes,
3092 and the other starting at @samp{0x40000000} for four megabytes. The
3093 linker will place into the @samp{rom} memory region every section which
3094 is not explicitly mapped into a memory region, and is either read-only
3095 or executable. The linker will place other sections which are not
3096 explicitly mapped into a memory region into the @samp{ram} memory
3103 rom (rx) : ORIGIN = 0, LENGTH = 256K
3104 ram (!rx) : org = 0x40000000, l = 4M
3109 Once you define a memory region, you can direct the linker to place
3110 specific output sections into that memory region by using the
3111 @samp{>@var{region}} output section attribute. For example, if you have
3112 a memory region named @samp{mem}, you would use @samp{>mem} in the
3113 output section definition. @xref{Output Section Region}. If no address
3114 was specified for the output section, the linker will set the address to
3115 the next available address within the memory region. If the combined
3116 output sections directed to a memory region are too large for the
3117 region, the linker will issue an error message.
3120 @section PHDRS Command
3122 @cindex program headers
3123 @cindex ELF program headers
3124 @cindex program segments
3125 @cindex segments, ELF
3126 The ELF object file format uses @dfn{program headers}, also knows as
3127 @dfn{segments}. The program headers describe how the program should be
3128 loaded into memory. You can print them out by using the @code{objdump}
3129 program with the @samp{-p} option.
3131 When you run an ELF program on a native ELF system, the system loader
3132 reads the program headers in order to figure out how to load the
3133 program. This will only work if the program headers are set correctly.
3134 This manual does not describe the details of how the system loader
3135 interprets program headers; for more information, see the ELF ABI.
3137 The linker will create reasonable program headers by default. However,
3138 in some cases, you may need to specify the program headers more
3139 precisely. You may use the @code{PHDRS} command for this purpose. When
3140 the linker sees the @code{PHDRS} command in the linker script, it will
3141 not create any program headers other than the ones specified.
3143 The linker only pays attention to the @code{PHDRS} command when
3144 generating an ELF output file. In other cases, the linker will simply
3145 ignore @code{PHDRS}.
3147 This is the syntax of the @code{PHDRS} command. The words @code{PHDRS},
3148 @code{FILEHDR}, @code{AT}, and @code{FLAGS} are keywords.
3154 @var{name} @var{type} [ FILEHDR ] [ PHDRS ] [ AT ( @var{address} ) ]
3155 [ FLAGS ( @var{flags} ) ] ;
3160 The @var{name} is used only for reference in the @code{SECTIONS} command
3161 of the linker script. It is not put into the output file. Program
3162 header names are stored in a separate name space, and will not conflict
3163 with symbol names, file names, or section names. Each program header
3164 must have a distinct name.
3166 Certain program header types describe segments of memory which the
3167 system loader will load from the file. In the linker script, you
3168 specify the contents of these segments by placing allocatable output
3169 sections in the segments. You use the @samp{:@var{phdr}} output section
3170 attribute to place a section in a particular segment. @xref{Output
3173 It is normal to put certain sections in more than one segment. This
3174 merely implies that one segment of memory contains another. You may
3175 repeat @samp{:@var{phdr}}, using it once for each segment which should
3176 contain the section.
3178 If you place a section in one or more segments using @samp{:@var{phdr}},
3179 then the linker will place all subsequent allocatable sections which do
3180 not specify @samp{:@var{phdr}} in the same segments. This is for
3181 convenience, since generally a whole set of contiguous sections will be
3182 placed in a single segment. You can use @code{:NONE} to override the
3183 default segment and tell the linker to not put the section in any
3188 You may use the @code{FILEHDR} and @code{PHDRS} keywords appear after
3189 the program header type to further describe the contents of the segment.
3190 The @code{FILEHDR} keyword means that the segment should include the ELF
3191 file header. The @code{PHDRS} keyword means that the segment should
3192 include the ELF program headers themselves.
3194 The @var{type} may be one of the following. The numbers indicate the
3195 value of the keyword.
3198 @item @code{PT_NULL} (0)
3199 Indicates an unused program header.
3201 @item @code{PT_LOAD} (1)
3202 Indicates that this program header describes a segment to be loaded from
3205 @item @code{PT_DYNAMIC} (2)
3206 Indicates a segment where dynamic linking information can be found.
3208 @item @code{PT_INTERP} (3)
3209 Indicates a segment where the name of the program interpreter may be
3212 @item @code{PT_NOTE} (4)
3213 Indicates a segment holding note information.
3215 @item @code{PT_SHLIB} (5)
3216 A reserved program header type, defined but not specified by the ELF
3219 @item @code{PT_PHDR} (6)
3220 Indicates a segment where the program headers may be found.
3222 @item @var{expression}
3223 An expression giving the numeric type of the program header. This may
3224 be used for types not defined above.
3227 You can specify that a segment should be loaded at a particular address
3228 in memory by using an @code{AT} expression. This is identical to the
3229 @code{AT} command used as an output section attribute (@pxref{Output
3230 Section LMA}). The @code{AT} command for a program header overrides the
3231 output section attribute.
3233 The linker will normally set the segment flags based on the sections
3234 which comprise the segment. You may use the @code{FLAGS} keyword to
3235 explicitly specify the segment flags. The value of @var{flags} must be
3236 an integer. It is used to set the @code{p_flags} field of the program
3239 Here is an example of @code{PHDRS}. This shows a typical set of program
3240 headers used on a native ELF system.
3246 headers PT_PHDR PHDRS ;
3248 text PT_LOAD FILEHDR PHDRS ;
3250 dynamic PT_DYNAMIC ;
3256 .interp : @{ *(.interp) @} :text :interp
3257 .text : @{ *(.text) @} :text
3258 .rodata : @{ *(.rodata) @} /* defaults to :text */
3260 . = . + 0x1000; /* move to a new page in memory */
3261 .data : @{ *(.data) @} :data
3262 .dynamic : @{ *(.dynamic) @} :data :dynamic
3269 @section VERSION Command
3270 @kindex VERSION @{script text@}
3271 @cindex symbol versions
3272 @cindex version script
3273 @cindex versions of symbols
3274 The linker supports symbol versions when using ELF. Symbol versions are
3275 only useful when using shared libraries. The dynamic linker can use
3276 symbol versions to select a specific version of a function when it runs
3277 a program that may have been linked against an earlier version of the
3280 You can include a version script directly in the main linker script, or
3281 you can supply the version script as an implicit linker script. You can
3282 also use the @samp{--version-script} linker option.
3284 The syntax of the @code{VERSION} command is simply
3286 VERSION @{ version-script-commands @}
3289 The format of the version script commands is identical to that used by
3290 Sun's linker in Solaris 2.5. The version script defines a tree of
3291 version nodes. You specify the node names and interdependencies in the
3292 version script. You can specify which symbols are bound to which
3293 version nodes, and you can reduce a specified set of symbols to local
3294 scope so that they are not globally visible outside of the shared
3297 The easiest way to demonstrate the version script language is with a few
3319 This example version script defines three version nodes. The first
3320 version node defined is @samp{VERS_1.1}; it has no other dependencies.
3321 The script binds the symbol @samp{foo1} to @samp{VERS_1.1}. It reduces
3322 a number of symbols to local scope so that they are not visible outside
3323 of the shared library.
3325 Next, the version script defines node @samp{VERS_1.2}. This node
3326 depends upon @samp{VERS_1.1}. The script binds the symbol @samp{foo2}
3327 to the version node @samp{VERS_1.2}.
3329 Finally, the version script defines node @samp{VERS_2.0}. This node
3330 depends upon @samp{VERS_1.2}. The scripts binds the symbols @samp{bar1}
3331 and @samp{bar2} are bound to the version node @samp{VERS_2.0}.
3333 When the linker finds a symbol defined in a library which is not
3334 specifically bound to a version node, it will effectively bind it to an
3335 unspecified base version of the library. You can bind all otherwise
3336 unspecified symbols to a given version node by using @samp{global: *}
3337 somewhere in the version script.
3339 The names of the version nodes have no specific meaning other than what
3340 they might suggest to the person reading them. The @samp{2.0} version
3341 could just as well have appeared in between @samp{1.1} and @samp{1.2}.
3342 However, this would be a confusing way to write a version script.
3344 When you link an application against a shared library that has versioned
3345 symbols, the application itself knows which version of each symbol it
3346 requires, and it also knows which version nodes it needs from each
3347 shared library it is linked against. Thus at runtime, the dynamic
3348 loader can make a quick check to make sure that the libraries you have
3349 linked against do in fact supply all of the version nodes that the
3350 application will need to resolve all of the dynamic symbols. In this
3351 way it is possible for the dynamic linker to know with certainty that
3352 all external symbols that it needs will be resolvable without having to
3353 search for each symbol reference.
3355 The symbol versioning is in effect a much more sophisticated way of
3356 doing minor version checking that SunOS does. The fundamental problem
3357 that is being addressed here is that typically references to external
3358 functions are bound on an as-needed basis, and are not all bound when
3359 the application starts up. If a shared library is out of date, a
3360 required interface may be missing; when the application tries to use
3361 that interface, it may suddenly and unexpectedly fail. With symbol
3362 versioning, the user will get a warning when they start their program if
3363 the libraries being used with the application are too old.
3365 There are several GNU extensions to Sun's versioning approach. The
3366 first of these is the ability to bind a symbol to a version node in the
3367 source file where the symbol is defined instead of in the versioning
3368 script. This was done mainly to reduce the burden on the library
3369 maintainer. You can do this by putting something like:
3371 __asm__(".symver original_foo,foo@@VERS_1.1");
3374 in the C source file. This renames the function @samp{original_foo} to
3375 be an alias for @samp{foo} bound to the version node @samp{VERS_1.1}.
3376 The @samp{local:} directive can be used to prevent the symbol
3377 @samp{original_foo} from being exported.
3379 The second GNU extension is to allow multiple versions of the same
3380 function to appear in a given shared library. In this way you can make
3381 an incompatible change to an interface without increasing the major
3382 version number of the shared library, while still allowing applications
3383 linked against the old interface to continue to function.
3385 To do this, you must use multiple @samp{.symver} directives in the
3386 source file. Here is an example:
3389 __asm__(".symver original_foo,foo@@");
3390 __asm__(".symver old_foo,foo@@VERS_1.1");
3391 __asm__(".symver old_foo1,foo@@VERS_1.2");
3392 __asm__(".symver new_foo,foo@@@@VERS_2.0");
3395 In this example, @samp{foo@@} represents the symbol @samp{foo} bound to the
3396 unspecified base version of the symbol. The source file that contains this
3397 example would define 4 C functions: @samp{original_foo}, @samp{old_foo},
3398 @samp{old_foo1}, and @samp{new_foo}.
3400 When you have multiple definitions of a given symbol, there needs to be
3401 some way to specify a default version to which external references to
3402 this symbol will be bound. You can do this with the
3403 @samp{foo@@@@VERS_2.0} type of @samp{.symver} directive. You can only
3404 declare one version of a symbol as the default in this manner; otherwise
3405 you would effectively have multiple definitions of the same symbol.
3407 If you wish to bind a reference to a specific version of the symbol
3408 within the shared library, you can use the aliases of convenience
3409 (i.e. @samp{old_foo}), or you can use the @samp{.symver} directive to
3410 specifically bind to an external version of the function in question.
3413 @section Expressions in Linker Scripts
3416 The syntax for expressions in the linker script language is identical to
3417 that of C expressions. All expressions are evaluated as integers. All
3418 expressions are evaluated in the same size, which is 32 bits if both the
3419 host and target are 32 bits, and is otherwise 64 bits.
3421 You can use and set symbol values in expressions.
3423 The linker defines several special purpose builtin functions for use in
3427 * Constants:: Constants
3428 * Symbols:: Symbol Names
3429 * Location Counter:: The Location Counter
3430 * Operators:: Operators
3431 * Evaluation:: Evaluation
3432 * Expression Section:: The Section of an Expression
3433 * Builtin Functions:: Builtin Functions
3437 @subsection Constants
3438 @cindex integer notation
3439 @cindex constants in linker scripts
3440 All constants are integers.
3442 As in C, the linker considers an integer beginning with @samp{0} to be
3443 octal, and an integer beginning with @samp{0x} or @samp{0X} to be
3444 hexadecimal. The linker considers other integers to be decimal.
3446 @cindex scaled integers
3447 @cindex K and M integer suffixes
3448 @cindex M and K integer suffixes
3449 @cindex suffixes for integers
3450 @cindex integer suffixes
3451 In addition, you can use the suffixes @code{K} and @code{M} to scale a
3455 @c END TEXI2ROFF-KILL
3456 @code{1024} or @code{1024*1024}
3460 ${\rm 1024}$ or ${\rm 1024}^2$
3462 @c END TEXI2ROFF-KILL
3463 respectively. For example, the following all refer to the same quantity:
3471 @subsection Symbol Names
3472 @cindex symbol names
3474 @cindex quoted symbol names
3476 Unless quoted, symbol names start with a letter, underscore, or period
3477 and may include letters, digits, underscores, periods, and hyphens.
3478 Unquoted symbol names must not conflict with any keywords. You can
3479 specify a symbol which contains odd characters or has the same name as a
3480 keyword by surrounding the symbol name in double quotes:
3483 "with a space" = "also with a space" + 10;
3486 Since symbols can contain many non-alphabetic characters, it is safest
3487 to delimit symbols with spaces. For example, @samp{A-B} is one symbol,
3488 whereas @samp{A - B} is an expression involving subtraction.
3490 @node Location Counter
3491 @subsection The Location Counter
3494 @cindex location counter
3495 @cindex current output location
3496 The special linker variable @dfn{dot} @samp{.} always contains the
3497 current output location counter. Since the @code{.} always refers to a
3498 location in an output section, it may only appear in an expression
3499 within a @code{SECTIONS} command. The @code{.} symbol may appear
3500 anywhere that an ordinary symbol is allowed in an expression.
3503 Assigning a value to @code{.} will cause the location counter to be
3504 moved. This may be used to create holes in the output section. The
3505 location counter may never be moved backwards.
3521 In the previous example, the @samp{.text} section from @file{file1} is
3522 located at the beginning of the output section @samp{output}. It is
3523 followed by a 1000 byte gap. Then the @samp{.text} section from
3524 @file{file2} appears, also with a 1000 byte gap following before the
3525 @samp{.text} section from @file{file3}. The notation @samp{= 0x1234}
3526 specifies what data to write in the gaps (@pxref{Output Section Fill}).
3528 @cindex dot inside sections
3529 Note: @code{.} actually refers to the byte offset from the start of the
3530 current containing object. Normally this is the @code{SECTIONS}
3531 statement, whoes start address is 0, hence @code{.} can be used as an
3532 absolute address. If @code{.} is used inside a section description
3533 however, it refers to the byte offset from the start of that section,
3534 not an absolute address. Thus in a script like this:
3552 The @samp{.text} section will be assigned a starting address of 0x100
3553 and a size of exactly 0x200 bytes, even if there is not enough data in
3554 the @samp{.text} input sections to fill this area. (If there is too
3555 much data, an error will be produced because this would be an attempt to
3556 move @code{.} backwards). The @samp{.data} section will start at 0x500
3557 and it will have an extra 0x600 bytes worth of space after the end of
3558 the values from the @samp{.data} input sections and before the end of
3559 the @samp{.data} output section itself.
3563 @subsection Operators
3564 @cindex operators for arithmetic
3565 @cindex arithmetic operators
3566 @cindex precedence in expressions
3567 The linker recognizes the standard C set of arithmetic operators, with
3568 the standard bindings and precedence levels:
3571 @c END TEXI2ROFF-KILL
3573 precedence associativity Operators Notes
3579 5 left == != > < <= >=
3585 11 right &= += -= *= /= (2)
3589 (1) Prefix operators
3590 (2) @xref{Assignments}.
3594 \vskip \baselineskip
3595 %"lispnarrowing" is the extra indent used generally for smallexample
3596 \hskip\lispnarrowing\vbox{\offinterlineskip
3599 {\vrule#&\strut\hfil\ #\ \hfil&\vrule#&\strut\hfil\ #\ \hfil&\vrule#&\strut\hfil\ {\tt #}\ \hfil&\vrule#\cr
3600 height2pt&\omit&&\omit&&\omit&\cr
3601 &Precedence&& Associativity &&{\rm Operators}&\cr
3602 height2pt&\omit&&\omit&&\omit&\cr
3604 height2pt&\omit&&\omit&&\omit&\cr
3606 % '176 is tilde, '~' in tt font
3607 &1&&left&&\qquad- \char'176\ !\qquad\dag&\cr
3608 &2&&left&&* / \%&\cr
3611 &5&&left&&== != > < <= >=&\cr
3614 &8&&left&&{\&\&}&\cr
3617 &11&&right&&\qquad\&= += -= *= /=\qquad\ddag&\cr
3619 height2pt&\omit&&\omit&&\omit&\cr}
3624 @obeylines@parskip=0pt@parindent=0pt
3625 @dag@quad Prefix operators.
3626 @ddag@quad @xref{Assignments}.
3629 @c END TEXI2ROFF-KILL
3632 @subsection Evaluation
3633 @cindex lazy evaluation
3634 @cindex expression evaluation order
3635 The linker evaluates expressions lazily. It only computes the value of
3636 an expression when absolutely necessary.
3638 The linker needs some information, such as the value of the start
3639 address of the first section, and the origins and lengths of memory
3640 regions, in order to do any linking at all. These values are computed
3641 as soon as possible when the linker reads in the linker script.
3643 However, other values (such as symbol values) are not known or needed
3644 until after storage allocation. Such values are evaluated later, when
3645 other information (such as the sizes of output sections) is available
3646 for use in the symbol assignment expression.
3648 The sizes of sections cannot be known until after allocation, so
3649 assignments dependent upon these are not performed until after
3652 Some expressions, such as those depending upon the location counter
3653 @samp{.}, must be evaluated during section allocation.
3655 If the result of an expression is required, but the value is not
3656 available, then an error results. For example, a script like the
3662 .text 9+this_isnt_constant :
3668 will cause the error message @samp{non constant expression for initial
3671 @node Expression Section
3672 @subsection The Section of an Expression
3673 @cindex expression sections
3674 @cindex absolute expressions
3675 @cindex relative expressions
3676 @cindex absolute and relocatable symbols
3677 @cindex relocatable and absolute symbols
3678 @cindex symbols, relocatable and absolute
3679 When the linker evaluates an expression, the result is either absolute
3680 or relative to some section. A relative expression is expressed as a
3681 fixed offset from the base of a section.
3683 The position of the expression within the linker script determines
3684 whether it is absolute or relative. An expression which appears within
3685 an output section definition is relative to the base of the output
3686 section. An expression which appears elsewhere will be absolute.
3688 A symbol set to a relative expression will be relocatable if you request
3689 relocatable output using the @samp{-r} option. That means that a
3690 further link operation may change the value of the symbol. The symbol's
3691 section will be the section of the relative expression.
3693 A symbol set to an absolute expression will retain the same value
3694 through any further link operation. The symbol will be absolute, and
3695 will not have any particular associated section.
3697 You can use the builtin function @code{ABSOLUTE} to force an expression
3698 to be absolute when it would otherwise be relative. For example, to
3699 create an absolute symbol set to the address of the end of the output
3700 section @samp{.data}:
3704 .data : @{ *(.data) _edata = ABSOLUTE(.); @}
3708 If @samp{ABSOLUTE} were not used, @samp{_edata} would be relative to the
3709 @samp{.data} section.
3711 @node Builtin Functions
3712 @subsection Builtin Functions
3713 @cindex functions in expressions
3714 The linker script language includes a number of builtin functions for
3715 use in linker script expressions.
3718 @item ABSOLUTE(@var{exp})
3719 @kindex ABSOLUTE(@var{exp})
3720 @cindex expression, absolute
3721 Return the absolute (non-relocatable, as opposed to non-negative) value
3722 of the expression @var{exp}. Primarily useful to assign an absolute
3723 value to a symbol within a section definition, where symbol values are
3724 normally section relative. @xref{Expression Section}.
3726 @item ADDR(@var{section})
3727 @kindex ADDR(@var{section})
3728 @cindex section address in expression
3729 Return the absolute address (the VMA) of the named @var{section}. Your
3730 script must previously have defined the location of that section. In
3731 the following example, @code{symbol_1} and @code{symbol_2} are assigned
3738 start_of_output_1 = ABSOLUTE(.);
3743 symbol_1 = ADDR(.output1);
3744 symbol_2 = start_of_output_1;
3750 @item ALIGN(@var{exp})
3751 @kindex ALIGN(@var{exp})
3752 @cindex round up location counter
3753 @cindex align location counter
3754 Return the location counter (@code{.}) aligned to the next @var{exp}
3755 boundary. @var{exp} must be an expression whose value is a power of
3756 two. This is equivalent to
3758 (. + @var{exp} - 1) & ~(@var{exp} - 1)
3761 @code{ALIGN} doesn't change the value of the location counter---it just
3762 does arithmetic on it. Here is an example which aligns the output
3763 @code{.data} section to the next @code{0x2000} byte boundary after the
3764 preceding section and sets a variable within the section to the next
3765 @code{0x8000} boundary after the input sections:
3769 .data ALIGN(0x2000): @{
3771 variable = ALIGN(0x8000);
3777 The first use of @code{ALIGN} in this example specifies the location of
3778 a section because it is used as the optional @var{address} attribute of
3779 a section definition (@pxref{Output Section Address}). The second use
3780 of @code{ALIGN} is used to defines the value of a symbol.
3782 The builtin function @code{NEXT} is closely related to @code{ALIGN}.
3784 @item BLOCK(@var{exp})
3785 @kindex BLOCK(@var{exp})
3786 This is a synonym for @code{ALIGN}, for compatibility with older linker
3787 scripts. It is most often seen when setting the address of an output
3790 @item DEFINED(@var{symbol})
3791 @kindex DEFINED(@var{symbol})
3792 @cindex symbol defaults
3793 Return 1 if @var{symbol} is in the linker global symbol table and is
3794 defined, otherwise return 0. You can use this function to provide
3795 default values for symbols. For example, the following script fragment
3796 shows how to set a global symbol @samp{begin} to the first location in
3797 the @samp{.text} section---but if a symbol called @samp{begin} already
3798 existed, its value is preserved:
3804 begin = DEFINED(begin) ? begin : . ;
3812 @item LOADADDR(@var{section})
3813 @kindex LOADADDR(@var{section})
3814 @cindex section load address in expression
3815 Return the absolute LMA of the named @var{section}. This is normally
3816 the same as @code{ADDR}, but it may be different if the @code{AT}
3817 attribute is used in the output section definition (@pxref{Output
3821 @item MAX(@var{exp1}, @var{exp2})
3822 Returns the maximum of @var{exp1} and @var{exp2}.
3825 @item MIN(@var{exp1}, @var{exp2})
3826 Returns the minimum of @var{exp1} and @var{exp2}.
3828 @item NEXT(@var{exp})
3829 @kindex NEXT(@var{exp})
3830 @cindex unallocated address, next
3831 Return the next unallocated address that is a multiple of @var{exp}.
3832 This function is closely related to @code{ALIGN(@var{exp})}; unless you
3833 use the @code{MEMORY} command to define discontinuous memory for the
3834 output file, the two functions are equivalent.
3836 @item SIZEOF(@var{section})
3837 @kindex SIZEOF(@var{section})
3838 @cindex section size
3839 Return the size in bytes of the named @var{section}, if that section has
3840 been allocated. If the section has not been allocated when this is
3841 evaluated, the linker will report an error. In the following example,
3842 @code{symbol_1} and @code{symbol_2} are assigned identical values:
3851 symbol_1 = .end - .start ;
3852 symbol_2 = SIZEOF(.output);
3857 @item SIZEOF_HEADERS
3858 @itemx sizeof_headers
3859 @kindex SIZEOF_HEADERS
3861 Return the size in bytes of the output file's headers. This is
3862 information which appears at the start of the output file. You can use
3863 this number when setting the start address of the first section, if you
3864 choose, to facilitate paging.
3866 @cindex not enough room for program headers
3867 @cindex program headers, not enough room
3868 When producing an ELF output file, if the linker script uses the
3869 @code{SIZEOF_HEADERS} builtin function, the linker must compute the
3870 number of program headers before it has determined all the section
3871 addresses and sizes. If the linker later discovers that it needs
3872 additional program headers, it will report an error @samp{not enough
3873 room for program headers}. To avoid this error, you must avoid using
3874 the @code{SIZEOF_HEADERS} function, or you must rework your linker
3875 script to avoid forcing the linker to use additional program headers, or
3876 you must define the program headers yourself using the @code{PHDRS}
3877 command (@pxref{PHDRS}).
3880 @node Implicit Linker Scripts
3881 @section Implicit Linker Scripts
3882 @cindex implicit linker scripts
3883 If you specify a linker input file which the linker can not recognize as
3884 an object file or an archive file, it will try to read the file as a
3885 linker script. If the file can not be parsed as a linker script, the
3886 linker will report an error.
3888 An implicit linker script will not replace the default linker script.
3890 Typically an implicit linker script would contain only symbol
3891 assignments, or the @code{INPUT}, @code{GROUP}, or @code{VERSION}
3894 Any input files read because of an implicit linker script will be read
3895 at the position in the command line where the implicit linker script was
3896 read. This can affect archive searching.
3899 @node Machine Dependent
3900 @chapter Machine Dependent Features
3902 @cindex machine dependencies
3903 @code{ld} has additional features on some platforms; the following
3904 sections describe them. Machines where @code{ld} has no additional
3905 functionality are not listed.
3908 * H8/300:: @code{ld} and the H8/300
3909 * i960:: @code{ld} and the Intel 960 family
3910 * ARM:: @code{ld} and the ARM family
3911 * HPPA ELF32:: @code{ld} and HPPA 32-bit ELF
3913 * TI COFF:: @code{ld} and TI COFF
3918 @c FIXME! This could use @raisesections/@lowersections, but there seems to be a conflict
3919 @c between those and node-defaulting.
3926 @section @code{ld} and the H8/300
3928 @cindex H8/300 support
3929 For the H8/300, @code{ld} can perform these global optimizations when
3930 you specify the @samp{--relax} command-line option.
3933 @cindex relaxing on H8/300
3934 @item relaxing address modes
3935 @code{ld} finds all @code{jsr} and @code{jmp} instructions whose
3936 targets are within eight bits, and turns them into eight-bit
3937 program-counter relative @code{bsr} and @code{bra} instructions,
3940 @cindex synthesizing on H8/300
3941 @item synthesizing instructions
3942 @c FIXME: specifically mov.b, or any mov instructions really?
3943 @code{ld} finds all @code{mov.b} instructions which use the
3944 sixteen-bit absolute address form, but refer to the top
3945 page of memory, and changes them to use the eight-bit address form.
3946 (That is: the linker turns @samp{mov.b @code{@@}@var{aa}:16} into
3947 @samp{mov.b @code{@@}@var{aa}:8} whenever the address @var{aa} is in the
3948 top page of memory).
3958 @c This stuff is pointless to say unless you're especially concerned
3959 @c with Hitachi chips; don't enable it for generic case, please.
3961 @chapter @code{ld} and other Hitachi chips
3963 @code{ld} also supports the H8/300H, the H8/500, and the Hitachi SH. No
3964 special features, commands, or command-line options are required for
3975 @section @code{ld} and the Intel 960 family
3977 @cindex i960 support
3979 You can use the @samp{-A@var{architecture}} command line option to
3980 specify one of the two-letter names identifying members of the 960
3981 family; the option specifies the desired output target, and warns of any
3982 incompatible instructions in the input files. It also modifies the
3983 linker's search strategy for archive libraries, to support the use of
3984 libraries specific to each particular architecture, by including in the
3985 search loop names suffixed with the string identifying the architecture.
3987 For example, if your @code{ld} command line included @w{@samp{-ACA}} as
3988 well as @w{@samp{-ltry}}, the linker would look (in its built-in search
3989 paths, and in any paths you specify with @samp{-L}) for a library with
4002 The first two possibilities would be considered in any event; the last
4003 two are due to the use of @w{@samp{-ACA}}.
4005 You can meaningfully use @samp{-A} more than once on a command line, since
4006 the 960 architecture family allows combination of target architectures; each
4007 use will add another pair of name variants to search for when @w{@samp{-l}}
4008 specifies a library.
4010 @cindex @code{--relax} on i960
4011 @cindex relaxing on i960
4012 @code{ld} supports the @samp{--relax} option for the i960 family. If
4013 you specify @samp{--relax}, @code{ld} finds all @code{balx} and
4014 @code{calx} instructions whose targets are within 24 bits, and turns
4015 them into 24-bit program-counter relative @code{bal} and @code{cal}
4016 instructions, respectively. @code{ld} also turns @code{cal}
4017 instructions into @code{bal} instructions when it determines that the
4018 target subroutine is a leaf routine (that is, the target subroutine does
4019 not itself call any subroutines).
4031 @section @code{ld}'s support for interworking between ARM and Thumb code
4033 @cindex ARM interworking support
4034 @kindex --support-old-code
4035 For the ARM, @code{ld} will generate code stubs to allow functions calls
4036 betweem ARM and Thumb code. These stubs only work with code that has
4037 been compiled and assembled with the @samp{-mthumb-interwork} command
4038 line option. If it is necessary to link with old ARM object files or
4039 libraries, which have not been compiled with the -mthumb-interwork
4040 option then the @samp{--support-old-code} command line switch should be
4041 given to the linker. This will make it generate larger stub functions
4042 which will work with non-interworking aware ARM code. Note, however,
4043 the linker does not support generating stubs for function calls to
4044 non-interworking aware Thumb code.
4046 @cindex thumb entry point
4047 @cindex entry point, thumb
4048 @kindex --thumb-entry=@var{entry}
4049 The @samp{--thumb-entry} switch is a duplicate of the generic
4050 @samp{--entry} switch, in that it sets the program's starting address.
4051 But it also sets the bottom bit of the address, so that it can be
4052 branched to using a BX instruction, and the program will start
4053 executing in Thumb mode straight away.
4056 @section @code{ld} and HPPA 32-bit ELF support
4057 @cindex HPPA multiple sub-space stubs
4058 @kindex --multi-subspace
4059 When generating a shared library, @code{ld} will by default generate
4060 import stubs suitable for use with a single sub-space application.
4061 The @samp{--multi-subspace} switch causes @code{ld} to generate export
4062 stubs, and different (larger) import stubs suitable for use with
4063 multiple sub-spaces.
4065 @cindex HPPA stub grouping
4066 @kindex --stub-group-size=@var{N}
4067 Long branch stubs and import/export stubs are placed by @code{ld} in
4068 stub sections located between groups of input sections.
4069 @samp{--stub-group-size} specifies the maximum size of a group of input
4070 sections handled by one stub section. Since branch offsets are signed,
4071 a stub section may serve two groups of input sections, one group before
4072 the stub section, and one group after it. However, when using
4073 conditional branches that require stubs, it may be better (for branch
4074 prediction) that stub sections only serve one group of input sections.
4075 A negative value for @samp{N} chooses this scheme, ensuring that
4076 branches to stubs always use a negative offset. Two special values of
4077 @samp{N} are recognized, @samp{1} and @samp{-1}. These both instruct
4078 @code{ld} to automatically size input section groups for the branch types
4079 detected, with the same behaviour regarding stub placement as other
4080 positive or negative values of @samp{N} respectively.
4082 Note that @samp{--stub-group-size} does not split input sections. A
4083 single input section larger than the group size specified will of course
4084 create a larger group (of one section). If input sections are too
4085 large, it may not be possible for a branch to reach its stub.
4089 @section @code{ld}'s support for various TI COFF versions
4090 @cindex TI COFF versions
4091 @kindex --format=@var{version}
4092 The @samp{--format} switch allows selection of one of the various
4093 TI COFF versions. The latest of this writing is 2; versions 0 and 1 are
4094 also supported. The TI COFF versions also vary in header byte-order
4095 format; @code{ld} will read any version or byte order, but the output
4096 header format depends on the default specified by the specific target.
4103 @ifclear SingleFormat
4108 @cindex object file management
4109 @cindex object formats available
4111 The linker accesses object and archive files using the BFD libraries.
4112 These libraries allow the linker to use the same routines to operate on
4113 object files whatever the object file format. A different object file
4114 format can be supported simply by creating a new BFD back end and adding
4115 it to the library. To conserve runtime memory, however, the linker and
4116 associated tools are usually configured to support only a subset of the
4117 object file formats available. You can use @code{objdump -i}
4118 (@pxref{objdump,,objdump,binutils.info,The GNU Binary Utilities}) to
4119 list all the formats available for your configuration.
4121 @cindex BFD requirements
4122 @cindex requirements for BFD
4123 As with most implementations, BFD is a compromise between
4124 several conflicting requirements. The major factor influencing
4125 BFD design was efficiency: any time used converting between
4126 formats is time which would not have been spent had BFD not
4127 been involved. This is partly offset by abstraction payback; since
4128 BFD simplifies applications and back ends, more time and care
4129 may be spent optimizing algorithms for a greater speed.
4131 One minor artifact of the BFD solution which you should bear in
4132 mind is the potential for information loss. There are two places where
4133 useful information can be lost using the BFD mechanism: during
4134 conversion and during output. @xref{BFD information loss}.
4137 * BFD outline:: How it works: an outline of BFD
4141 @section How it works: an outline of BFD
4142 @cindex opening object files
4143 @include bfdsumm.texi
4146 @node Reporting Bugs
4147 @chapter Reporting Bugs
4148 @cindex bugs in @code{ld}
4149 @cindex reporting bugs in @code{ld}
4151 Your bug reports play an essential role in making @code{ld} reliable.
4153 Reporting a bug may help you by bringing a solution to your problem, or
4154 it may not. But in any case the principal function of a bug report is
4155 to help the entire community by making the next version of @code{ld}
4156 work better. Bug reports are your contribution to the maintenance of
4159 In order for a bug report to serve its purpose, you must include the
4160 information that enables us to fix the bug.
4163 * Bug Criteria:: Have you found a bug?
4164 * Bug Reporting:: How to report bugs
4168 @section Have you found a bug?
4169 @cindex bug criteria
4171 If you are not sure whether you have found a bug, here are some guidelines:
4174 @cindex fatal signal
4175 @cindex linker crash
4176 @cindex crash of linker
4178 If the linker gets a fatal signal, for any input whatever, that is a
4179 @code{ld} bug. Reliable linkers never crash.
4181 @cindex error on valid input
4183 If @code{ld} produces an error message for valid input, that is a bug.
4185 @cindex invalid input
4187 If @code{ld} does not produce an error message for invalid input, that
4188 may be a bug. In the general case, the linker can not verify that
4189 object files are correct.
4192 If you are an experienced user of linkers, your suggestions for
4193 improvement of @code{ld} are welcome in any case.
4197 @section How to report bugs
4199 @cindex @code{ld} bugs, reporting
4201 A number of companies and individuals offer support for @sc{gnu}
4202 products. If you obtained @code{ld} from a support organization, we
4203 recommend you contact that organization first.
4205 You can find contact information for many support companies and
4206 individuals in the file @file{etc/SERVICE} in the @sc{gnu} Emacs
4209 Otherwise, send bug reports for @code{ld} to
4210 @samp{bug-gnu-utils@@gnu.org}.
4212 The fundamental principle of reporting bugs usefully is this:
4213 @strong{report all the facts}. If you are not sure whether to state a
4214 fact or leave it out, state it!
4216 Often people omit facts because they think they know what causes the
4217 problem and assume that some details do not matter. Thus, you might
4218 assume that the name of a symbol you use in an example does not matter.
4219 Well, probably it does not, but one cannot be sure. Perhaps the bug is
4220 a stray memory reference which happens to fetch from the location where
4221 that name is stored in memory; perhaps, if the name were different, the
4222 contents of that location would fool the linker into doing the right
4223 thing despite the bug. Play it safe and give a specific, complete
4224 example. That is the easiest thing for you to do, and the most helpful.
4226 Keep in mind that the purpose of a bug report is to enable us to fix the bug if
4227 it is new to us. Therefore, always write your bug reports on the assumption
4228 that the bug has not been reported previously.
4230 Sometimes people give a few sketchy facts and ask, ``Does this ring a
4231 bell?'' Those bug reports are useless, and we urge everyone to
4232 @emph{refuse to respond to them} except to chide the sender to report
4235 To enable us to fix the bug, you should include all these things:
4239 The version of @code{ld}. @code{ld} announces it if you start it with
4240 the @samp{--version} argument.
4242 Without this, we will not know whether there is any point in looking for
4243 the bug in the current version of @code{ld}.
4246 Any patches you may have applied to the @code{ld} source, including any
4247 patches made to the @code{BFD} library.
4250 The type of machine you are using, and the operating system name and
4254 What compiler (and its version) was used to compile @code{ld}---e.g.
4258 The command arguments you gave the linker to link your example and
4259 observe the bug. To guarantee you will not omit something important,
4260 list them all. A copy of the Makefile (or the output from make) is
4263 If we were to try to guess the arguments, we would probably guess wrong
4264 and then we might not encounter the bug.
4267 A complete input file, or set of input files, that will reproduce the
4268 bug. It is generally most helpful to send the actual object files,
4269 uuencoded if necessary to get them through the mail system. Making them
4270 available for anonymous FTP is not as good, but may be the only
4271 reasonable choice for large object files.
4273 If the source files were assembled using @code{gas} or compiled using
4274 @code{gcc}, then it may be OK to send the source files rather than the
4275 object files. In this case, be sure to say exactly what version of
4276 @code{gas} or @code{gcc} was used to produce the object files. Also say
4277 how @code{gas} or @code{gcc} were configured.
4280 A description of what behavior you observe that you believe is
4281 incorrect. For example, ``It gets a fatal signal.''
4283 Of course, if the bug is that @code{ld} gets a fatal signal, then we
4284 will certainly notice it. But if the bug is incorrect output, we might
4285 not notice unless it is glaringly wrong. You might as well not give us
4286 a chance to make a mistake.
4288 Even if the problem you experience is a fatal signal, you should still
4289 say so explicitly. Suppose something strange is going on, such as, your
4290 copy of @code{ld} is out of synch, or you have encountered a bug in the
4291 C library on your system. (This has happened!) Your copy might crash
4292 and ours would not. If you told us to expect a crash, then when ours
4293 fails to crash, we would know that the bug was not happening for us. If
4294 you had not told us to expect a crash, then we would not be able to draw
4295 any conclusion from our observations.
4298 If you wish to suggest changes to the @code{ld} source, send us context
4299 diffs, as generated by @code{diff} with the @samp{-u}, @samp{-c}, or
4300 @samp{-p} option. Always send diffs from the old file to the new file.
4301 If you even discuss something in the @code{ld} source, refer to it by
4302 context, not by line number.
4304 The line numbers in our development sources will not match those in your
4305 sources. Your line numbers would convey no useful information to us.
4308 Here are some things that are not necessary:
4312 A description of the envelope of the bug.
4314 Often people who encounter a bug spend a lot of time investigating
4315 which changes to the input file will make the bug go away and which
4316 changes will not affect it.
4318 This is often time consuming and not very useful, because the way we
4319 will find the bug is by running a single example under the debugger
4320 with breakpoints, not by pure deduction from a series of examples.
4321 We recommend that you save your time for something else.
4323 Of course, if you can find a simpler example to report @emph{instead}
4324 of the original one, that is a convenience for us. Errors in the
4325 output will be easier to spot, running under the debugger will take
4326 less time, and so on.
4328 However, simplification is not vital; if you do not want to do this,
4329 report the bug anyway and send us the entire test case you used.
4332 A patch for the bug.
4334 A patch for the bug does help us if it is a good one. But do not omit
4335 the necessary information, such as the test case, on the assumption that
4336 a patch is all we need. We might see problems with your patch and decide
4337 to fix the problem another way, or we might not understand it at all.
4339 Sometimes with a program as complicated as @code{ld} it is very hard to
4340 construct an example that will make the program follow a certain path
4341 through the code. If you do not send us the example, we will not be
4342 able to construct one, so we will not be able to verify that the bug is
4345 And if we cannot understand what bug you are trying to fix, or why your
4346 patch should be an improvement, we will not install it. A test case will
4347 help us to understand.
4350 A guess about what the bug is or what it depends on.
4352 Such guesses are usually wrong. Even we cannot guess right about such
4353 things without first using the debugger to find the facts.
4357 @appendix MRI Compatible Script Files
4358 @cindex MRI compatibility
4359 To aid users making the transition to @sc{gnu} @code{ld} from the MRI
4360 linker, @code{ld} can use MRI compatible linker scripts as an
4361 alternative to the more general-purpose linker scripting language
4362 described in @ref{Scripts}. MRI compatible linker scripts have a much
4363 simpler command set than the scripting language otherwise used with
4364 @code{ld}. @sc{gnu} @code{ld} supports the most commonly used MRI
4365 linker commands; these commands are described here.
4367 In general, MRI scripts aren't of much use with the @code{a.out} object
4368 file format, since it only has three sections and MRI scripts lack some
4369 features to make use of them.
4371 You can specify a file containing an MRI-compatible script using the
4372 @samp{-c} command-line option.
4374 Each command in an MRI-compatible script occupies its own line; each
4375 command line starts with the keyword that identifies the command (though
4376 blank lines are also allowed for punctuation). If a line of an
4377 MRI-compatible script begins with an unrecognized keyword, @code{ld}
4378 issues a warning message, but continues processing the script.
4380 Lines beginning with @samp{*} are comments.
4382 You can write these commands using all upper-case letters, or all
4383 lower case; for example, @samp{chip} is the same as @samp{CHIP}.
4384 The following list shows only the upper-case form of each command.
4387 @cindex @code{ABSOLUTE} (MRI)
4388 @item ABSOLUTE @var{secname}
4389 @itemx ABSOLUTE @var{secname}, @var{secname}, @dots{} @var{secname}
4390 Normally, @code{ld} includes in the output file all sections from all
4391 the input files. However, in an MRI-compatible script, you can use the
4392 @code{ABSOLUTE} command to restrict the sections that will be present in
4393 your output program. If the @code{ABSOLUTE} command is used at all in a
4394 script, then only the sections named explicitly in @code{ABSOLUTE}
4395 commands will appear in the linker output. You can still use other
4396 input sections (whatever you select on the command line, or using
4397 @code{LOAD}) to resolve addresses in the output file.
4399 @cindex @code{ALIAS} (MRI)
4400 @item ALIAS @var{out-secname}, @var{in-secname}
4401 Use this command to place the data from input section @var{in-secname}
4402 in a section called @var{out-secname} in the linker output file.
4404 @var{in-secname} may be an integer.
4406 @cindex @code{ALIGN} (MRI)
4407 @item ALIGN @var{secname} = @var{expression}
4408 Align the section called @var{secname} to @var{expression}. The
4409 @var{expression} should be a power of two.
4411 @cindex @code{BASE} (MRI)
4412 @item BASE @var{expression}
4413 Use the value of @var{expression} as the lowest address (other than
4414 absolute addresses) in the output file.
4416 @cindex @code{CHIP} (MRI)
4417 @item CHIP @var{expression}
4418 @itemx CHIP @var{expression}, @var{expression}
4419 This command does nothing; it is accepted only for compatibility.
4421 @cindex @code{END} (MRI)
4423 This command does nothing whatever; it's only accepted for compatibility.
4425 @cindex @code{FORMAT} (MRI)
4426 @item FORMAT @var{output-format}
4427 Similar to the @code{OUTPUT_FORMAT} command in the more general linker
4428 language, but restricted to one of these output formats:
4432 S-records, if @var{output-format} is @samp{S}
4435 IEEE, if @var{output-format} is @samp{IEEE}
4438 COFF (the @samp{coff-m68k} variant in BFD), if @var{output-format} is
4442 @cindex @code{LIST} (MRI)
4443 @item LIST @var{anything}@dots{}
4444 Print (to the standard output file) a link map, as produced by the
4445 @code{ld} command-line option @samp{-M}.
4447 The keyword @code{LIST} may be followed by anything on the
4448 same line, with no change in its effect.
4450 @cindex @code{LOAD} (MRI)
4451 @item LOAD @var{filename}
4452 @itemx LOAD @var{filename}, @var{filename}, @dots{} @var{filename}
4453 Include one or more object file @var{filename} in the link; this has the
4454 same effect as specifying @var{filename} directly on the @code{ld}
4457 @cindex @code{NAME} (MRI)
4458 @item NAME @var{output-name}
4459 @var{output-name} is the name for the program produced by @code{ld}; the
4460 MRI-compatible command @code{NAME} is equivalent to the command-line
4461 option @samp{-o} or the general script language command @code{OUTPUT}.
4463 @cindex @code{ORDER} (MRI)
4464 @item ORDER @var{secname}, @var{secname}, @dots{} @var{secname}
4465 @itemx ORDER @var{secname} @var{secname} @var{secname}
4466 Normally, @code{ld} orders the sections in its output file in the
4467 order in which they first appear in the input files. In an MRI-compatible
4468 script, you can override this ordering with the @code{ORDER} command. The
4469 sections you list with @code{ORDER} will appear first in your output
4470 file, in the order specified.
4472 @cindex @code{PUBLIC} (MRI)
4473 @item PUBLIC @var{name}=@var{expression}
4474 @itemx PUBLIC @var{name},@var{expression}
4475 @itemx PUBLIC @var{name} @var{expression}
4476 Supply a value (@var{expression}) for external symbol
4477 @var{name} used in the linker input files.
4479 @cindex @code{SECT} (MRI)
4480 @item SECT @var{secname}, @var{expression}
4481 @itemx SECT @var{secname}=@var{expression}
4482 @itemx SECT @var{secname} @var{expression}
4483 You can use any of these three forms of the @code{SECT} command to
4484 specify the start address (@var{expression}) for section @var{secname}.
4485 If you have more than one @code{SECT} statement for the same
4486 @var{secname}, only the @emph{first} sets the start address.
4495 % I think something like @colophon should be in texinfo. In the
4497 \long\def\colophon{\hbox to0pt{}\vfill
4498 \centerline{The body of this manual is set in}
4499 \centerline{\fontname\tenrm,}
4500 \centerline{with headings in {\bf\fontname\tenbf}}
4501 \centerline{and examples in {\tt\fontname\tentt}.}
4502 \centerline{{\it\fontname\tenit\/} and}
4503 \centerline{{\sl\fontname\tensl\/}}
4504 \centerline{are used for emphasis.}\vfill}
4506 % Blame: doc@cygnus.com, 28mar91.