4 @include configdoc.texi
5 @c (configdoc.texi is generated by the Makefile)
12 * Ld: (ld). The GNU linker.
18 This file documents the GNU linker LD.
20 Copyright (C) 1991, 92, 93, 94, 1995 Free Software Foundation, Inc.
22 Permission is granted to make and distribute verbatim copies of
23 this manual provided the copyright notice and this permission notice
24 are preserved on all copies.
26 Permission is granted to copy and distribute modified versions of this
27 manual under the conditions for verbatim copying, provided also that
28 the entire resulting derived work is distributed under the terms of a
29 permission notice identical to this one.
31 Permission is granted to copy and distribute translations of this manual
32 into another language, under the above conditions for modified versions.
35 Permission is granted to process this file through Tex and print the
36 results, provided the printed document carries copying permission
37 notice identical to this one except for the removal of this paragraph
38 (this paragraph not being relevant to the printed manual).
44 @setchapternewpage odd
45 @settitle Using LD, the GNU linker
48 @subtitle The GNU linker
50 @subtitle @code{ld} version 2
51 @subtitle January 1994
52 @author Steve Chamberlain and Roland Pesch
53 @author Cygnus Support
58 \hfill Cygnus Support\par
59 \hfill steve\@cygnus.com, pesch\@cygnus.com\par
60 \hfill {\it Using LD, the GNU linker}\par
61 \hfill Edited by Jeffrey Osier (jeffrey\@cygnus.com)\par
62 \hfill and Roland Pesch (pesch\@cygnus.com)\par
64 \global\parindent=0pt % Steve likes it this way.
67 @vskip 0pt plus 1filll
68 Copyright @copyright{} 1991, 92, 93, 94, 1995 Free Software Foundation, Inc.
70 Permission is granted to make and distribute verbatim copies of
71 this manual provided the copyright notice and this permission notice
72 are preserved on all copies.
74 Permission is granted to copy and distribute modified versions of this
75 manual under the conditions for verbatim copying, provided also that
76 the entire resulting derived work is distributed under the terms of a
77 permission notice identical to this one.
79 Permission is granted to copy and distribute translations of this manual
80 into another language, under the above conditions for modified versions.
83 @c FIXME: Talk about importance of *order* of args, cmds to linker!
88 This file documents the GNU linker ld.
92 * Invocation:: Invocation
93 * Commands:: Command Language
95 * Machine Dependent:: Machine Dependent Features
99 * H8/300:: ld and the H8/300
102 * Hitachi:: ld and other Hitachi micros
105 * i960:: ld and the Intel 960 family
108 @ifclear SingleFormat
111 @c Following blank line required for remaining bug in makeinfo conds/menus
113 * MRI:: MRI Compatible Script Files
122 @cindex what is this?
123 @code{ld} combines a number of object and archive files, relocates
124 their data and ties up symbol references. Usually the last step in
125 compiling a program is to run @code{ld}.
127 @code{ld} accepts Linker Command Language files written in
128 a superset of AT&T's Link Editor Command Language syntax,
129 to provide explicit and total control over the linking process.
131 @ifclear SingleFormat
132 This version of @code{ld} uses the general purpose BFD libraries
133 to operate on object files. This allows @code{ld} to read, combine, and
134 write object files in many different formats---for example, COFF or
135 @code{a.out}. Different formats may be linked together to produce any
136 available kind of object file. @xref{BFD}, for more information.
139 Aside from its flexibility, the GNU linker is more helpful than other
140 linkers in providing diagnostic information. Many linkers abandon
141 execution immediately upon encountering an error; whenever possible,
142 @code{ld} continues executing, allowing you to identify other errors
143 (or, in some cases, to get an output file in spite of the error).
148 The GNU linker @code{ld} is meant to cover a broad range of situations,
149 and to be as compatible as possible with other linkers. As a result,
150 you have many choices to control its behavior.
154 * Options:: Command Line Options
155 * Environment:: Environment Variables
159 @section Command Line Options
164 Here is a summary of the options you can use on the @code{ld} command
167 @c FIXME! -relax only avail h8/300, i960. Conditionals screwed in examples.
169 ld [ -o @var{output} ] @var{objfile}@dots{}
170 [ -A@var{architecture} ] [ -b @var{input-format} ]
171 [ -Bstatic ] [ -Bdynamic ] [ -Bsymbolic ]
172 [ -c @var{MRI-commandfile} ] [ -d | -dc | -dp ]
173 [ -defsym @var{symbol}=@var{expression} ]
174 [ -dynamic-linker @var{file} ] [ -embedded-relocs ]
175 [ -e @var{entry} ] [ -F ] [ -F @var{format} ]
176 [ -format @var{input-format} ] [ -g ] [ -G @var{size} ] [ -help ]
177 [ -i ] [ -l@var{archive} ] [ -L@var{searchdir} ] [ -M ]
178 [ -Map @var{mapfile} ] [ -m @var{emulation} ] [ -N | -n ]
179 [ -noinhibit-exec ] [ -no-keep-memory ] [ -oformat @var{output-format} ]
180 [ -R @var{filename} ] [ -relax ] [ -retain-symbols-file @var{filename} ]
181 [ -r | -Ur ] [ -rpath @var{dir} ] [-rpath-link @var{dir} ]
182 [ -S ] [ -s ] [ -soname @var{name} ] [ -shared ]
183 [ -sort-common ] [ -stats ] [ -T @var{commandfile} ]
184 [ -Ttext @var{org} ] [ -Tdata @var{org} ]
185 [ -Tbss @var{org} ] [ -t ] [ -traditional-format ]
186 [ -u @var{symbol}] [-V] [-v] [ -verbose] [ -version ]
187 [ -warn-common ] [ -warn-constructors] [ -warn-once ]
188 [ -y @var{symbol} ] [ -X ] [-x ]
189 [ -( [ archives ] -) ] [ --start-group [ archives ] --end-group ]
190 [ -split-by-reloc @var{count} ] [ -split-by-file ] [ --whole-archive ]
193 This plethora of command-line options may seem intimidating, but in
194 actual practice few of them are used in any particular context.
195 @cindex standard Unix system
196 For instance, a frequent use of @code{ld} is to link standard Unix
197 object files on a standard, supported Unix system. On such a system, to
198 link a file @code{hello.o}:
201 ld -o @var{output} /lib/crt0.o hello.o -lc
204 This tells @code{ld} to produce a file called @var{output} as the
205 result of linking the file @code{/lib/crt0.o} with @code{hello.o} and
206 the library @code{libc.a}, which will come from the standard search
207 directories. (See the discussion of the @samp{-l} option below.)
209 The command-line options to @code{ld} may be specified in any order, and
210 may be repeated at will. Repeating most options with a
211 different argument will either have no further effect, or override prior
212 occurrences (those further to the left on the command line) of that
215 @ifclear SingleFormat
216 The exceptions---which may meaningfully be used more than once---are
217 @samp{-A}, @samp{-b} (or its synonym @samp{-format}), @samp{-defsym},
218 @samp{-L}, @samp{-l}, @samp{-R}, @samp{-u}, and @samp{-(} (or its
219 synonym @samp{--start-group})..
222 The exceptions---which may meaningfully be used more than once---are
223 @samp{-A}, @samp{-defsym}, @samp{-L}, @samp{-l}, @samp{-R}, @samp{-u},
224 and @samp{-(} (or its synonym @samp{--start-group}).
228 The list of object files to be linked together, shown as @var{objfile}@dots{},
229 may follow, precede, or be mixed in with command-line options, except that
230 an @var{objfile} argument may not be placed between an option and
233 Usually the linker is invoked with at least one object file, but you can
234 specify other forms of binary input files using @samp{-l}, @samp{-R},
235 and the script command language. If @emph{no} binary input files at all
236 are specified, the linker does not produce any output, and issues the
237 message @samp{No input files}.
239 If the linker can not recognize the format of an object file, it will
240 assume that it is a linker script. A script specified in this way
241 augments the main linker script used for the link (either the default
242 linker script or the one specified by using @samp{-T}). This feature
243 permits the linker to link against a file which appears to be an object
244 or an archive, but actually merely defines some symbol values, or uses
245 @code{INPUT} or @code{GROUP} to load other objects. @xref{Commands}.
247 For options whose names are a single letter,
248 option arguments must either follow the option letter without intervening
249 whitespace, or be given as separate arguments immediately following the
250 option that requires them.
252 For options whose names are multiple letters, either one dash or two can
253 precede the option name; for example, @samp{--oformat} and
254 @samp{-oformat} are equivalent. Arguments to multiple-letter options
255 must either be separated from the option name by an equals sign, or be
256 given as separate arguments immediately following the option that
257 requires them. For example, @samp{--oformat srec} and
258 @samp{--oformat=srec} are equivalent. Unique abbreviations of the names
259 of multiple-letter options are accepted.
263 @cindex architectures
265 @item -A@var{architecture}
266 In the current release of @code{ld}, this option is useful only for the
267 Intel 960 family of architectures. In that @code{ld} configuration, the
268 @var{architecture} argument identifies the particular architecture in
269 the 960 family, enabling some safeguards and modifying the
270 archive-library search path. @xref{i960,,@code{ld} and the Intel 960
271 family}, for details.
273 Future releases of @code{ld} may support similar functionality for
274 other architecture families.
277 @ifclear SingleFormat
278 @cindex binary input format
279 @kindex -b @var{format}
281 @item -b @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}.) @w{@samp{-format @var{input-format}}}
293 has the same effect, as does the script command @code{TARGET}.
296 You may want to use this option if you are linking files with an unusual
297 binary format. You can also use @samp{-b} to switch formats explicitly (when
298 linking object files of different formats), by including
299 @samp{-b @var{input-format}} before each group of object files in a
302 The default format is taken from the environment variable
307 You can also define the input
308 format from a script, using the command @code{TARGET}; see @ref{Option
314 Do not link against shared libraries. This is only meaningful on
315 platforms for which shared libraries are supported.
319 Link against dynamic libraries. This is only meaningful on platforms
320 for which shared libraries are supported. This option is normally the
321 default on such platforms.
325 When creating a shared library, bind references to global symbols to the
326 definition within the shared library, if any. Normally, it is possible
327 for a program linked against a shared library to override the definition
328 within the shared library. This option is only meaningful on ELF
329 platforms which support shared libraries.
331 @kindex -c @var{MRI-cmdfile}
332 @cindex compatibility, MRI
333 @item -c @var{MRI-commandfile}
334 For compatibility with linkers produced by MRI, @code{ld} accepts script
335 files written in an alternate, restricted command language, described in
336 @ref{MRI,,MRI Compatible Script Files}. Introduce MRI script files with
337 the option @samp{-c}; use the @samp{-T} option to run linker
338 scripts written in the general-purpose @code{ld} scripting language.
339 If @var{MRI-cmdfile} does not exist, @code{ld} looks for it in the directories
340 specified by any @samp{-L} options.
342 @cindex common allocation
349 These three options are equivalent; multiple forms are supported for
350 compatibility with other linkers. They
351 assign space to common symbols even if a relocatable output file is
352 specified (with @samp{-r}). The script command
353 @code{FORCE_COMMON_ALLOCATION} has the same effect. @xref{Option
356 @cindex symbols, from command line
357 @kindex -defsym @var{symbol}=@var{exp}
358 @item -defsym @var{symbol}=@var{expression}
359 Create a global symbol in the output file, containing the absolute
360 address given by @var{expression}. You may use this option as many
361 times as necessary to define multiple symbols in the command line. A
362 limited form of arithmetic is supported for the @var{expression} in this
363 context: you may give a hexadecimal constant or the name of an existing
364 symbol, or use @code{+} and @code{-} to add or subtract hexadecimal
365 constants or symbols. If you need more elaborate expressions, consider
366 using the linker command language from a script (@pxref{Assignment, ,
367 Assignment: Symbol Definitions}). @emph{Note:} there should be no
368 white space between @var{symbol}, the equals sign (``@key{=}''), and
372 @cindex dynamic linker, from command line
373 @kindex -dynamic-linker @var{file}
374 @item -dynamic-linker @var{file}
375 Set the name of the dynamic linker. This is only meaningful when
376 generating dynamically linked ELF executables. The default dynamic
377 linker is normally correct; don't use this unless you know what you are
381 @cindex MIPS embedded PIC code
382 @kindex -embedded-relocs
383 @item -embedded-relocs
384 This option is only meaningful when linking MIPS embedded PIC code,
385 generated by the -membedded-pic option to the GNU compiler and
386 assembler. It causes the linker to create a table which may be used at
387 runtime to relocate any data which was statically initialized to pointer
388 values. See the code in testsuite/ld-empic for details.
390 @cindex entry point, from command line
391 @kindex -e @var{entry}
393 Use @var{entry} as the explicit symbol for beginning execution of your
394 program, rather than the default entry point. @xref{Entry Point}, for a
395 discussion of defaults and other ways of specifying the
398 @ifclear SingleFormat
401 @itemx -F@var{format}
402 Ignored. Some older linkers used this option throughout a compilation
403 toolchain for specifying object-file format for both input and output
404 object files. The mechanisms @code{ld} uses for this purpose (the
405 @samp{-b} or @samp{-format} options for input files, @samp{-oformat}
406 option or the @code{TARGET} command in linker scripts for output files,
407 the @code{GNUTARGET} environment variable) are more flexible, but
408 @code{ld} accepts the @samp{-F} option for compatibility with scripts
409 written to call the old linker.
412 @item -format @var{input-format}
413 Synonym for @samp{-b @var{input-format}}.
418 Ignored. Provided for compatibility with other tools.
423 @itemx -G @var{value}
424 Set the maximum size of objects to be optimized using the GP register to
425 @var{size} under MIPS ECOFF. Ignored for other object file formats.
431 Print a summary of the command-line options on the standard output and exit.
434 @cindex incremental link
436 Perform an incremental link (same as option @samp{-r}).
438 @cindex archive files, from cmd line
439 @kindex -l@var{archive}
441 Add archive file @var{archive} to the list of files to link. This
442 option may be used any number of times. @code{ld} will search its
443 path-list for occurrences of @code{lib@var{ar}.a} for every @var{archive}
446 @cindex search directory, from cmd line
448 @item -L@var{searchdir}
449 @itemx -L @var{searchdir}
450 Add path @var{searchdir} to the list of paths that @code{ld} will search
451 for archive libraries and @code{ld} control scripts. You may use this
452 option any number of times. The directories are searched in the order
453 in which they are specified on the command line. Directories specified
454 on the command line are searched before the default directories. All
455 @code{-L} options apply to all @code{-l} options, regardless of the
456 order in which the options appear.
459 The default set of paths searched (without being specified with
460 @samp{-L}) depends on which emulation mode @code{ld} is using, and in
461 some cases also on how it was configured. @xref{Environment}.
464 The paths can also be specified in a link script with the
465 @code{SEARCH_DIR} command. Directories specified this way are searched
466 at the point in which the linker script appears in the command line.
471 Print (to the standard output) a link map---diagnostic information about
472 where symbols are mapped by @code{ld}, and information on global common
477 @item -Map @var{mapfile}
478 Print to the file @var{mapfile} a link map---diagnostic information
479 about where symbols are mapped by @code{ld}, and information on global
480 common storage allocation.
483 @kindex -m @var{emulation}
484 @item -m@var{emulation}
485 @itemx -m @var{emulation}
486 Emulate the @var{emulation} linker. You can list the available
487 emulations with the @samp{--verbose} or @samp{-V} options. The default
488 depends on how your @code{ld} was configured.
491 @cindex read/write from cmd line
494 Set the text and data sections to be readable and writable. Also, do
495 not page-align the data segment. If the output format supports Unix
496 style magic numbers, mark the output as @code{OMAGIC}.
499 @cindex read-only text
502 Set the text segment to be read only, and mark the output as
503 @code{NMAGIC} if possible.
505 @item -noinhibit-exec
506 @cindex output file after errors
507 @kindex -noinhibit-exec
508 Retain the executable output file whenever it is still usable.
509 Normally, the linker will not produce an output file if it encounters
510 errors during the link process; it exits without writing an output file
511 when it issues any error whatsoever.
513 @item -no-keep-memory
515 @kindex -no-keep-memory
516 @code{ld} normally optimizes for speed over memory usage by caching the
517 symbol tables of input files in memory. This option tells @code{ld} to
518 instead optimize for memory usage, by rereading the symbol tables as
519 necessary. This may be required if @code{ld} runs out of memory space
520 while linking a large executable.
522 @item -o @var{output}
523 @kindex -o @var{output}
524 @cindex naming the output file
525 Use @var{output} as the name for the program produced by @code{ld}; if this
526 option is not specified, the name @file{a.out} is used by default. The
527 script command @code{OUTPUT} can also specify the output file name.
529 @ifclear SingleFormat
531 @item -oformat @var{output-format}
532 @code{ld} may be configured to support more than one kind of object
533 file. If your @code{ld} is configured this way, you can use the
534 @samp{-oformat} option to specify the binary format for the output
535 object file. Even when @code{ld} is configured to support alternative
536 object formats, you don't usually need to specify this, as @code{ld}
537 should be configured to produce as a default output format the most
538 usual format on each machine. @var{output-format} is a text string, the
539 name of a particular format supported by the BFD libraries. (You can
540 list the available binary formats with @samp{objdump -i}.) The script
541 command @code{OUTPUT_FORMAT} can also specify the output format, but
542 this option overrides it. @xref{BFD}.
545 @item -R @var{filename}
546 @kindex -R @var{file}
547 @cindex symbol-only input
548 Read symbol names and their addresses from @var{filename}, but do not
549 relocate it or include it in the output. This allows your output file
550 to refer symbolically to absolute locations of memory defined in other
554 @cindex synthesizing linker
555 @cindex relaxing addressing modes
557 An option with machine dependent effects.
559 Currently this option is only supported on the H8/300 and the Intel 960.
562 @xref{H8/300,,@code{ld} and the H8/300}.
565 @xref{i960,, @code{ld} and the Intel 960 family}.
568 On some platforms, the @samp{-relax} option performs global optimizations that
569 become possible when the linker resolves addressing in the program, such
570 as relaxing address modes and synthesizing new instructions in the
574 On platforms where this is not supported, @samp{-relax} is accepted, but
578 @item -retain-symbols-file @var{filename}
579 @cindex retaining specified symbols
580 @cindex stripping all but some symbols
581 @cindex symbols, retaining selectively
582 Retain @emph{only} the symbols listed in the file @var{filename},
583 discarding all others. @var{filename} is simply a flat file, with one
584 symbol name per line. This option is especially useful in environments
588 where a large global symbol table is accumulated gradually, to conserve
591 @samp{-retain-symbols-file} does @emph{not} discard undefined symbols,
592 or symbols needed for relocations.
594 You may only specify @samp{-retain-symbols-file} once in the command
595 line. It overrides @samp{-s} and @samp{-S}.
598 @item -rpath @var{dir}
599 @cindex runtime library search path
601 Add a directory to the runtime library search path. This is used when
602 linking an ELF executable with shared objects. All @code{-rpath}
603 arguments are concatenated and passed to the runtime linker, which uses
604 them to locate shared objects at runtime. The @code{-rpath} option is
605 also used when locating shared objects which are needed by shared
606 objects explicitly included in the link; see the description of the
607 @code{-rpath-link} option.
609 The @code{-rpath} option may also be used on SunOS. By default, on
610 SunOS, the linker will form a runtime search patch out of all the
611 @code{-L} options it is given. If a @code{-rpath} option is used, the
612 runtime search path will be formed exclusively using the @code{-rpath}
613 options, ignoring the @code{-L} options. This can be useful when using
614 gcc, which adds many @code{-L} options which may be on NFS mounted
619 @cindex link-time runtime library search path
621 @item -rpath-link @var{DIR}
622 When using ELF or SunOS, one shared library may require another. This
623 happens when an @code{ld -shared} link includes a shared library as one
626 When the linker encounters such a dependency when doing a non-shared,
627 non-relocateable link, it will automatically try to locate the required
628 shared library and include it in the link, if it is not included
629 explicitly. In such a case, the @code{-rpath-link} option
630 specifies the first set of directories to search. The
631 @code{-rpath-link} option may specify a sequence of directory names
632 either by specifying a list of names separated by colons, or by
633 appearing multiple times.
635 The linker uses the following search paths to locate required shared
639 Any directories specified by @code{-rpath-link} options.
641 Any directories specified by @code{-rpath} options. The difference
642 between @code{-rpath} and @code{-rpath-link} is that directories
643 specified by @code{-rpath} options are included in the executable and
644 used at runtime, whereas the @code{-rpath-link} option is only effective
647 On SunOS, if the @code{-rpath} option was not used, search any
648 directories specified using @code{-L} options.
650 For a native linker, the contents of the environment variable
651 @code{LD_LIBRARY_PATH}.
653 The default directories, normally @file{/lib} and @file{/usr/lib}.
656 If the required shared library is not found, the linker will issue a
657 warning and continue with the link.
661 @cindex relocatable output
664 Generate relocatable output---i.e., generate an output file that can in
665 turn serve as input to @code{ld}. This is often called @dfn{partial
666 linking}. As a side effect, in environments that support standard Unix
667 magic numbers, this option also sets the output file's magic number to
670 If this option is not specified, an absolute file is produced. When
671 linking C++ programs, this option @emph{will not} resolve references to
672 constructors; to do that, use @samp{-Ur}.
674 This option does the same thing as @samp{-i}.
677 @cindex strip debugger symbols
679 Omit debugger symbol information (but not all symbols) from the output file.
682 @cindex strip all symbols
684 Omit all symbol information from the output file.
687 @item -soname @var{name}
688 @cindex runtime library name
690 When creating an ELF shared object, set the internal DT_SONAME field to
691 the specified name. When an executable is linked with a shared object
692 which has a DT_SONAME field, then when the executable is run the dynamic
693 linker will attempt to load the shared object specified by the DT_SONAME
694 field rather than the using the file name given to the linker.
698 @cindex shared libraries
700 Create a shared library. This is currently only supported on ELF and
701 SunOS platforms. On SunOS, the linker will automatically create a
702 shared library if the @code{-e} option is not used and there are
703 undefined symbols in the link.
707 Normally, when @code{ld} places the global common symbols in the
708 appropriate output sections, it sorts them by size. First come all the
709 one byte symbols, then all the two bytes, then all the four bytes, and
710 then everything else. This is to prevent gaps between symbols due to
711 alignment constraints. This option disables that sorting.
713 @item -split-by-reloc @var{count}
715 Trys to creates extra sections in the output file so that no single output section
716 in the file contains more than @var{count} relocations. This
717 is useful when generating huge relocatable for downloading into
718 certain real time kernels with the COFF object file format; since
719 COFF cannot represent more than 65535 relocations in a single section.
720 Note that this will fail to work with object file formats which do not
721 support arbitrary sections. The linker will not split up individual input
722 sections for redistribution, so if a single input section contains
723 more than @var{count} relocations one output section will contain that
728 Similar to -split-by-reloc but creates a new output section for each
732 Compute and display statistics about the operation of the linker,
733 such as execution time and memory usage.
735 @item -Tbss @var{org}
736 @kindex -Tbss @var{org}
737 @itemx -Tdata @var{org}
738 @kindex -Tdata @var{org}
739 @itemx -Ttext @var{org}
740 @kindex -Ttext @var{org}
741 @cindex segment origins, cmd line
742 Use @var{org} as the starting address for---respectively---the
743 @code{bss}, @code{data}, or the @code{text} segment of the output file.
744 @var{org} must be a single hexadecimal integer;
745 for compatibility with other linkers, you may omit the leading
746 @samp{0x} usually associated with hexadecimal values.
748 @item -T @var{commandfile}
749 @itemx -T@var{commandfile}
750 @kindex -T @var{script}
752 Read link commands from the file @var{commandfile}. These commands
753 replace @code{ld}'s default link script (rather than adding
754 to it), so @var{commandfile} must specify everything necessary to describe
755 the target format. @xref{Commands}. If @var{commandfile} does not
756 exist, @code{ld} looks for it in the directories specified by any
757 preceding @samp{-L} options. Multiple @samp{-T} options accumulate.
761 @cindex input files, displaying
763 Print the names of the input files as @code{ld} processes them.
765 @kindex -traditional-format
766 @cindex traditional format
767 @item -traditional-format
768 For some targets, the output of @code{ld} is different in some ways from
769 the output of some existing linker. This switch requests @code{ld} to
770 use the traditional format instead.
773 For example, on SunOS, @code{ld} combines duplicate entries in the
774 symbol string table. This can reduce the size of an output file with
775 full debugging information by over 30 percent. Unfortunately, the SunOS
776 @code{dbx} program can not read the resulting program (@code{gdb} has no
777 trouble). The @samp{-traditional-format} switch tells @code{ld} to not
778 combine duplicate entries.
780 @item -u @var{symbol}
781 @kindex -u @var{symbol}
782 @cindex undefined symbol
783 Force @var{symbol} to be entered in the output file as an undefined symbol.
784 Doing this may, for example, trigger linking of additional modules from
785 standard libraries. @samp{-u} may be repeated with different option
786 arguments to enter additional undefined symbols.
787 @c Nice idea, but no such command: This option is equivalent
788 @c to the @code{EXTERN} linker command.
793 For anything other than C++ programs, this option is equivalent to
794 @samp{-r}: it generates relocatable output---i.e., an output file that can in
795 turn serve as input to @code{ld}. When linking C++ programs, @samp{-Ur}
796 @emph{does} resolve references to constructors, unlike @samp{-r}.
797 It does not work to use @samp{-Ur} on files that were themselves linked
798 with @samp{-Ur}; once the constructor table has been built, it cannot
799 be added to. Use @samp{-Ur} only for the last partial link, and
800 @samp{-r} for the others.
805 Display the version number for @code{ld} and list the linker emulations
806 supported. Display which input files can and cannot be opened.
813 Display the version number for @code{ld}. The @code{-V} option also
814 lists the supported emulations.
818 Display the version number for @code{ld} and exit.
822 @cindex warnings, on combining symbols
823 @cindex combining symbols, warnings on
824 Warn when a common symbol is combined with another common symbol or with
825 a symbol definition. Unix linkers allow this somewhat sloppy practice,
826 but linkers on some other operating systems do not. This option allows
827 you to find potential problems from combining global symbols.
828 Unfortunately, some C libraries use this practice, so you may get some
829 warnings about symbols in the libraries as well as in your programs.
831 There are three kinds of global symbols, illustrated here by C examples:
835 A definition, which goes in the initialized data section of the output
839 An undefined reference, which does not allocate space.
840 There must be either a definition or a common symbol for the
844 A common symbol. If there are only (one or more) common symbols for a
845 variable, it goes in the uninitialized data area of the output file.
846 The linker merges multiple common symbols for the same variable into a
847 single symbol. If they are of different sizes, it picks the largest
848 size. The linker turns a common symbol into a declaration, if there is
849 a definition of the same variable.
852 The @samp{-warn-common} option can produce five kinds of warnings. Each
853 warning consists of a pair of lines: the first describes the symbol just
854 encountered, and the second describes the previous symbol encountered
855 with the same name. One or both of the two symbols will be a common
860 Turning a common symbol into a reference, because there is already a
861 definition for the symbol.
863 @var{file}(@var{section}): warning: common of `@var{symbol}'
864 overridden by definition
865 @var{file}(@var{section}): warning: defined here
869 Turning a common symbol into a reference, because a later definition for
870 the symbol is encountered. This is the same as the previous case,
871 except that the symbols are encountered in a different order.
873 @var{file}(@var{section}): warning: definition of `@var{symbol}'
875 @var{file}(@var{section}): warning: common is here
879 Merging a common symbol with a previous same-sized common symbol.
881 @var{file}(@var{section}): warning: multiple common
883 @var{file}(@var{section}): warning: previous common is here
887 Merging a common symbol with a previous larger common symbol.
889 @var{file}(@var{section}): warning: common of `@var{symbol}'
890 overridden by larger common
891 @var{file}(@var{section}): warning: larger common is here
895 Merging a common symbol with a previous smaller common symbol. This is
896 the same as the previous case, except that the symbols are
897 encountered in a different order.
899 @var{file}(@var{section}): warning: common of `@var{symbol}'
900 overriding smaller common
901 @var{file}(@var{section}): warning: smaller common is here
905 @kindex -warn-constructors
906 @item -warn-constructors
907 Warn if any global constructors are used. This is only useful for a few
908 object file formats. For formats like COFF or ELF, the linker can not
909 detect the use of global constructors.
912 @cindex warnings, on undefined symbols
913 @cindex undefined symbols, warnings on
915 Only warn once for each undefined symbol, rather than once per module
918 @kindex --whole-archive
919 @cindex including an entire archive
920 For each archive mentioned on the command line, include every object
921 file in the archive in the link, rather than searching the archive for
922 the required object files. This is normally used to turn an archive
923 file into a shared library, forcing every object to be included in the
924 resulting shared library.
927 @cindex local symbols, deleting
928 @cindex L, deleting symbols beginning
930 Delete all temporary local symbols. For most targets, this is all local
931 symbols whose names begin with @samp{L}.
934 @cindex deleting local symbols
936 Delete all local symbols.
938 @item -y @var{symbol}
939 @kindex -y @var{symbol}
940 @cindex symbol tracing
941 Print the name of each linked file in which @var{symbol} appears. This
942 option may be given any number of times. On many systems it is necessary
943 to prepend an underscore.
945 This option is useful when you have an undefined symbol in your link but
946 don't know where the reference is coming from.
948 @item -( @var{archives} -)
949 @itemx --start-group @var{archives} --end-group
951 @cindex groups of archives
952 The @var{archives} should be a list of archive files. They may be
953 either explicit file names, or @samp{-l} options.
955 The specified archives are searched repeatedly until no new undefined
956 references are created. Normally, an archive is searched only once in
957 the order that it is specified on the command line. If a symbol in that
958 archive is needed to resolve an undefined symbol referred to by an
959 object in an archive that appears later on the command line, the linker
960 would not be able to resolve that reference. By grouping the archives,
961 they all be searched repeatedly until all possible references are
964 Using this option has a significant performance cost. It is best to use
965 it only when there are unavoidable circular references between two or
971 @section Environment Variables
973 You can change the behavior of @code{ld} with the environment
974 variable @code{GNUTARGET}.
977 @cindex default input format
978 @code{GNUTARGET} determines the input-file object format if you don't
979 use @samp{-b} (or its synonym @samp{-format}). Its value should be one
980 of the BFD names for an input format (@pxref{BFD}). If there is no
981 @code{GNUTARGET} in the environment, @code{ld} uses the natural format
982 of the target. If @code{GNUTARGET} is set to @code{default} then BFD attempts to discover the
983 input format by examining binary input files; this method often
984 succeeds, but there are potential ambiguities, since there is no method
985 of ensuring that the magic number used to specify object-file formats is
986 unique. However, the configuration procedure for BFD on each system
987 places the conventional format for that system first in the search-list,
988 so ambiguities are resolved in favor of convention.
992 @chapter Command Language
994 @cindex command files
995 The command language provides explicit control over the link process,
996 allowing complete specification of the mapping between the linker's
997 input files and its output. It controls:
1006 addresses of sections
1008 placement of common blocks
1011 You may supply a command file (also known as a link script) to the
1012 linker either explicitly through the @samp{-T} option, or implicitly as
1013 an ordinary file. If the linker opens a file which it cannot recognize
1014 as a supported object or archive format, it reports an error.
1017 * Scripts:: Linker Scripts
1018 * Expressions:: Expressions
1019 * MEMORY:: MEMORY Command
1020 * SECTIONS:: SECTIONS Command
1021 * Entry Point:: The Entry Point
1022 * Option Commands:: Option Commands
1026 @section Linker Scripts
1027 The @code{ld} command language is a collection of statements; some are
1028 simple keywords setting a particular option, some are used to select and
1029 group input files or name output files; and two statement
1030 types have a fundamental and pervasive impact on the linking process.
1032 @cindex fundamental script commands
1033 @cindex commands, fundamental
1034 @cindex output file layout
1035 @cindex layout of output file
1036 The most fundamental command of the @code{ld} command language is the
1037 @code{SECTIONS} command (@pxref{SECTIONS}). Every meaningful command
1038 script must have a @code{SECTIONS} command: it specifies a
1039 ``picture'' of the output file's layout, in varying degrees of detail.
1040 No other command is required in all cases.
1042 The @code{MEMORY} command complements @code{SECTIONS} by describing the
1043 available memory in the target architecture. This command is optional;
1044 if you don't use a @code{MEMORY} command, @code{ld} assumes sufficient
1045 memory is available in a contiguous block for all output.
1049 You may include comments in linker scripts just as in C: delimited
1050 by @samp{/*} and @samp{*/}. As in C, comments are syntactically
1051 equivalent to whitespace.
1054 @section Expressions
1055 @cindex expression syntax
1057 Many useful commands involve arithmetic expressions. The syntax for
1058 expressions in the command language is identical to that of C
1059 expressions, with the following features:
1062 All expressions evaluated as integers and
1063 are of ``long'' or ``unsigned long'' type.
1065 All constants are integers.
1067 All of the C arithmetic operators are provided.
1069 You may reference, define, and create global variables.
1071 You may call special purpose built-in functions.
1075 * Integers:: Integers
1076 * Symbols:: Symbol Names
1077 * Location Counter:: The Location Counter
1078 * Operators:: Operators
1079 * Evaluation:: Evaluation
1080 * Assignment:: Assignment: Defining Symbols
1081 * Arithmetic Functions:: Built-In Functions
1085 @subsection Integers
1086 @cindex integer notation
1087 @cindex octal integers
1088 An octal integer is @samp{0} followed by zero or more of the octal
1089 digits (@samp{01234567}).
1091 _as_octal = 0157255;
1094 @cindex decimal integers
1095 A decimal integer starts with a non-zero digit followed by zero or
1096 more digits (@samp{0123456789}).
1098 _as_decimal = 57005;
1101 @cindex hexadecimal integers
1103 A hexadecimal integer is @samp{0x} or @samp{0X} followed by one or
1104 more hexadecimal digits chosen from @samp{0123456789abcdefABCDEF}.
1109 @cindex negative integers
1110 To write a negative integer, use
1111 the prefix operator @samp{-}; @pxref{Operators}.
1116 @cindex scaled integers
1117 @cindex K and M integer suffixes
1118 @cindex M and K integer suffixes
1119 @cindex suffixes for integers
1120 @cindex integer suffixes
1121 Additionally the suffixes @code{K} and @code{M} may be used to scale a
1125 @c END TEXI2ROFF-KILL
1126 @code{1024} or @code{1024*1024}
1130 ${\rm 1024}$ or ${\rm 1024}^2$
1132 @c END TEXI2ROFF-KILL
1133 respectively. For example, the following all refer to the same quantity:
1142 @subsection Symbol Names
1143 @cindex symbol names
1145 @cindex quoted symbol names
1147 Unless quoted, symbol names start with a letter, underscore, or point
1148 and may include any letters, underscores, digits, points,
1149 and hyphens. Unquoted symbol names must not conflict with any
1150 keywords. You can specify a symbol which contains odd characters or has
1151 the same name as a keyword, by surrounding the symbol name in double quotes:
1154 "with a space" = "also with a space" + 10;
1157 Since symbols can contain many non-alphabetic characters, it is safest
1158 to delimit symbols with spaces. For example, @samp{A-B} is one symbol,
1159 whereas @samp{A - B} is an expression involving subtraction.
1161 @node Location Counter
1162 @subsection The Location Counter
1165 @cindex location counter
1166 @cindex current output location
1167 The special linker variable @dfn{dot} @samp{.} always contains the
1168 current output location counter. Since the @code{.} always refers to
1169 a location in an output section, it must always appear in an
1170 expression within a @code{SECTIONS} command. The @code{.} symbol
1171 may appear anywhere that an ordinary symbol is allowed in an
1172 expression, but its assignments have a side effect. Assigning a value
1173 to the @code{.} symbol will cause the location counter to be moved.
1175 This may be used to create holes in the output section. The location
1176 counter may never be moved backwards.
1191 In the previous example, @code{file1} is located at the beginning of the
1192 output section, then there is a 1000 byte gap. Then @code{file2}
1193 appears, also with a 1000 byte gap following before @code{file3} is
1194 loaded. The notation @samp{= 0x1234} specifies what data to write in
1195 the gaps (@pxref{Section Options}).
1203 @subsection Operators
1204 @cindex Operators for arithmetic
1205 @cindex arithmetic operators
1206 @cindex precedence in expressions
1207 The linker recognizes the standard C set of arithmetic operators, with
1208 the standard bindings and precedence levels:
1211 @c END TEXI2ROFF-KILL
1213 precedence associativity Operators Notes
1219 5 left == != > < <= >=
1225 11 right &= += -= *= /= (2)
1229 (1) Prefix operators
1230 (2) @xref{Assignment}
1234 \vskip \baselineskip
1235 %"lispnarrowing" is the extra indent used generally for @example
1236 \hskip\lispnarrowing\vbox{\offinterlineskip
1239 {\vrule#&\strut\hfil\ #\ \hfil&\vrule#&\strut\hfil\ #\ \hfil&\vrule#&\strut\hfil\ {\tt #}\ \hfil&\vrule#\cr
1240 height2pt&\omit&&\omit&&\omit&\cr
1241 &Precedence&& Associativity &&{\rm Operators}&\cr
1242 height2pt&\omit&&\omit&&\omit&\cr
1244 height2pt&\omit&&\omit&&\omit&\cr
1246 % '176 is tilde, '~' in tt font
1247 &1&&left&&\qquad- \char'176\ !\qquad\dag&\cr
1248 &2&&left&&* / \%&\cr
1251 &5&&left&&== != > < <= >=&\cr
1254 &8&&left&&{\&\&}&\cr
1257 &11&&right&&\qquad\&= += -= *= /=\qquad\ddag&\cr
1259 height2pt&\omit&&\omit&&\omit&\cr}
1264 @obeylines@parskip=0pt@parindent=0pt
1265 @dag@quad Prefix operators.
1266 @ddag@quad @xref{Assignment}.
1269 @c END TEXI2ROFF-KILL
1272 @subsection Evaluation
1274 @cindex lazy evaluation
1275 @cindex expression evaluation order
1276 The linker uses ``lazy evaluation'' for expressions; it only calculates
1277 an expression when absolutely necessary. The linker needs the value of
1278 the start address, and the lengths of memory regions, in order to do any
1279 linking at all; these values are computed as soon as possible when the
1280 linker reads in the command file. However, other values (such as symbol
1281 values) are not known or needed until after storage allocation. Such
1282 values are evaluated later, when other information (such as the sizes of
1283 output sections) is available for use in the symbol assignment
1287 @subsection Assignment: Defining Symbols
1288 @cindex assignment in scripts
1289 @cindex symbol definition, scripts
1290 @cindex variables, defining
1291 You may create global symbols, and assign values (addresses) to global
1292 symbols, using any of the C assignment operators:
1295 @item @var{symbol} = @var{expression} ;
1296 @itemx @var{symbol} &= @var{expression} ;
1297 @itemx @var{symbol} += @var{expression} ;
1298 @itemx @var{symbol} -= @var{expression} ;
1299 @itemx @var{symbol} *= @var{expression} ;
1300 @itemx @var{symbol} /= @var{expression} ;
1303 Two things distinguish assignment from other operators in @code{ld}
1307 Assignment may only be used at the root of an expression;
1308 @samp{a=b+3;} is allowed, but @samp{a+b=3;} is an error.
1313 You must place a trailing semicolon (``@key{;}'') at the end of an
1314 assignment statement.
1317 Assignment statements may appear:
1320 as commands in their own right in an @code{ld} script; or
1322 as independent statements within a @code{SECTIONS} command; or
1324 as part of the contents of a section definition in a
1325 @code{SECTIONS} command.
1328 The first two cases are equivalent in effect---both define a symbol with
1329 an absolute address. The last case defines a symbol whose address is
1330 relative to a particular section (@pxref{SECTIONS}).
1332 @cindex absolute and relocatable symbols
1333 @cindex relocatable and absolute symbols
1334 @cindex symbols, relocatable and absolute
1335 When a linker expression is evaluated and assigned to a variable, it is
1336 given either an absolute or a relocatable type. An absolute expression
1337 type is one in which the symbol contains the value that it will have in
1338 the output file; a relocatable expression type is one in which the
1339 value is expressed as a fixed offset from the base of a section.
1341 The type of the expression is controlled by its position in the script
1342 file. A symbol assigned within a section definition is created relative
1343 to the base of the section; a symbol assigned in any other place is
1344 created as an absolute symbol. Since a symbol created within a
1345 section definition is relative to the base of the section, it
1346 will remain relocatable if relocatable output is requested. A symbol
1347 may be created with an absolute value even when assigned to within a
1348 section definition by using the absolute assignment function
1349 @code{ABSOLUTE}. For example, to create an absolute symbol whose address
1350 is the last byte of an output section named @code{.data}:
1356 _edata = ABSOLUTE(.) ;
1361 The linker tries to put off the evaluation of an assignment until all
1362 the terms in the source expression are known (@pxref{Evaluation}). For
1363 instance, the sizes of sections cannot be known until after allocation,
1364 so assignments dependent upon these are not performed until after
1365 allocation. Some expressions, such as those depending upon the location
1366 counter @dfn{dot}, @samp{.} must be evaluated during allocation. If the
1367 result of an expression is required, but the value is not available,
1368 then an error results. For example, a script like the following
1371 text 9+this_isnt_constant :
1376 @kindex Non constant expression
1378 will cause the error message ``@code{Non constant expression for initial
1382 In some cases, it is desirable for a linker script to define a symbol
1383 only if it is referenced, and only if it is not defined by any object
1384 included in the link. For example, traditional linkers defined the
1385 symbol @samp{etext}. However, ANSI C requires that the user be able to
1386 use @samp{etext} as a function name without encountering an error.
1387 The @code{PROVIDE} keyword may be used to define a symbol, such as
1388 @samp{etext}, only if it is referenced but not defined. The syntax is
1389 @code{PROVIDE(@var{symbol} = @var{expression})}.
1391 @node Arithmetic Functions
1392 @subsection Arithmetic Functions
1393 @cindex functions in expression language
1394 The command language includes a number of built-in
1395 functions for use in link script expressions.
1397 @item ABSOLUTE(@var{exp})
1398 @kindex ABSOLUTE(@var{exp})
1399 @cindex expression, absolute
1400 Return the absolute (non-relocatable, as opposed to non-negative) value
1401 of the expression @var{exp}. Primarily useful to assign an absolute
1402 value to a symbol within a section definition, where symbol values are
1403 normally section-relative.
1405 @item ADDR(@var{section})
1406 @kindex ADDR(@var{section})
1407 @cindex section address
1408 Return the absolute address of the named @var{section}. Your script must
1409 previously have defined the location of that section. In the following
1410 example, @code{symbol_1} and @code{symbol_2} are assigned identical
1416 start_of_output_1 = ABSOLUTE(.);
1421 symbol_1 = ADDR(.output1);
1422 symbol_2 = start_of_output_1;
1427 @item ALIGN(@var{exp})
1428 @kindex ALIGN(@var{exp})
1429 @cindex rounding up location counter
1430 Return the result of the current location counter (@code{.}) aligned to
1431 the next @var{exp} boundary. @var{exp} must be an expression whose
1432 value is a power of two. This is equivalent to
1434 (. + @var{exp} - 1) & ~(@var{exp} - 1)
1437 @code{ALIGN} doesn't change the value of the location counter---it just
1438 does arithmetic on it. As an example, to align the output @code{.data}
1439 section to the next @code{0x2000} byte boundary after the preceding
1440 section and to set a variable within the section to the next
1441 @code{0x8000} boundary after the input sections:
1444 .data ALIGN(0x2000): @{
1446 variable = ALIGN(0x8000);
1451 The first use of @code{ALIGN} in this example specifies the location of
1452 a section because it is used as the optional @var{start} attribute of a
1453 section definition (@pxref{Section Options}). The second use simply
1454 defines the value of a variable.
1456 The built-in @code{NEXT} is closely related to @code{ALIGN}.
1458 @item DEFINED(@var{symbol})
1459 @kindex DEFINED(@var{symbol})
1460 @cindex symbol defaults
1461 Return 1 if @var{symbol} is in the linker global symbol table and is
1462 defined, otherwise return 0. You can use this function to provide default
1463 values for symbols. For example, the following command-file fragment shows how
1464 to set a global symbol @code{begin} to the first location in the
1465 @code{.text} section---but if a symbol called @code{begin} already
1466 existed, its value is preserved:
1471 begin = DEFINED(begin) ? begin : . ;
1477 @item NEXT(@var{exp})
1478 @kindex NEXT(@var{exp})
1479 @cindex unallocated address, next
1480 Return the next unallocated address that is a multiple of @var{exp}.
1481 This function is closely related to @code{ALIGN(@var{exp})}; unless you
1482 use the @code{MEMORY} command to define discontinuous memory for the
1483 output file, the two functions are equivalent.
1485 @item SIZEOF(@var{section})
1486 @kindex SIZEOF(@var{section})
1487 @cindex section size
1488 Return the size in bytes of the named @var{section}, if that section has
1489 been allocated. In the following example, @code{symbol_1} and
1490 @code{symbol_2} are assigned identical values:
1491 @c What does it return if the section hasn't been allocated? 0?
1499 symbol_1 = .end - .start ;
1500 symbol_2 = SIZEOF(.output);
1505 @item SIZEOF_HEADERS
1506 @kindex SIZEOF_HEADERS
1508 @itemx sizeof_headers
1509 @kindex sizeof_headers
1510 Return the size in bytes of the output file's headers. You can use this number
1511 as the start address of the first section, if you choose, to facilitate
1517 @section Memory Layout
1519 @cindex regions of memory
1520 @cindex discontinuous memory
1521 @cindex allocating memory
1522 The linker's default configuration permits allocation of all available memory.
1523 You can override this configuration by using the @code{MEMORY} command. The
1524 @code{MEMORY} command describes the location and size of blocks of
1525 memory in the target. By using it carefully, you can describe which
1526 memory regions may be used by the linker, and which memory regions it
1527 must avoid. The linker does not shuffle sections to fit into the
1528 available regions, but does move the requested sections into the correct
1529 regions and issue errors when the regions become too full.
1531 A command file may contain at most one use of the @code{MEMORY}
1532 command; however, you can define as many blocks of memory within it as
1533 you wish. The syntax is:
1538 @var{name} (@var{attr}) : ORIGIN = @var{origin}, LENGTH = @var{len}
1543 @cindex naming memory regions
1545 is a name used internally by the linker to refer to the region. Any
1546 symbol name may be used. The region names are stored in a separate
1547 name space, and will not conflict with symbols, file names or section
1548 names. Use distinct names to specify multiple regions.
1550 @cindex memory region attributes
1552 is an optional list of attributes, permitted for compatibility with the
1553 AT&T linker but not used by @code{ld} beyond checking that the
1554 attribute list is valid. Valid attribute lists must be made up of the
1555 characters ``@code{LIRWX}''. If you omit the attribute list, you may
1556 omit the parentheses around it as well.
1562 is the start address of the region in physical memory. It is
1563 an expression that must evaluate to a constant before
1564 memory allocation is performed. The keyword @code{ORIGIN} may be
1565 abbreviated to @code{org} or @code{o} (but not, for example, @samp{ORG}).
1571 is the size in bytes of the region (an expression).
1572 The keyword @code{LENGTH} may be abbreviated to @code{len} or @code{l}.
1575 For example, to specify that memory has two regions available for
1576 allocation---one starting at 0 for 256 kilobytes, and the other
1577 starting at @code{0x40000000} for four megabytes:
1582 rom : ORIGIN = 0, LENGTH = 256K
1583 ram : org = 0x40000000, l = 4M
1587 Once you have defined a region of memory named @var{mem}, you can direct
1588 specific output sections there by using a command ending in
1589 @samp{>@var{mem}} within the @code{SECTIONS} command (@pxref{Section
1590 Options}). If the combined output sections directed to a region are too
1591 big for the region, the linker will issue an error message.
1594 @section Specifying Output Sections
1597 The @code{SECTIONS} command controls exactly where input sections are
1598 placed into output sections, their order in the output file, and to
1599 which output sections they are allocated.
1601 You may use at most one @code{SECTIONS} command in a script file,
1602 but you can have as many statements within it as you wish. Statements
1603 within the @code{SECTIONS} command can do one of three things:
1607 define the entry point;
1610 assign a value to a symbol;
1613 describe the placement of a named output section, and which input
1614 sections go into it.
1617 You can also use the first two operations---defining the entry point and
1618 defining symbols---outside the @code{SECTIONS} command: @pxref{Entry
1619 Point}, and @pxref{Assignment}. They are permitted here as well for
1620 your convenience in reading the script, so that symbols and the entry
1621 point can be defined at meaningful points in your output-file layout.
1623 If you do not use a @code{SECTIONS} command, the linker places each input
1624 section into an identically named output section in the order that the
1625 sections are first encountered in the input files. If all input sections
1626 are present in the first file, for example, the order of sections in the
1627 output file will match the order in the first input file.
1630 * Section Definition:: Section Definitions
1631 * Section Placement:: Section Placement
1632 * Section Data Expressions:: Section Data Expressions
1633 * Section Options:: Optional Section Attributes
1636 @node Section Definition
1637 @subsection Section Definitions
1638 @cindex section definition
1639 The most frequently used statement in the @code{SECTIONS} command is
1640 the @dfn{section definition}, which specifies the
1641 properties of an output section: its location, alignment, contents,
1642 fill pattern, and target memory region. Most of
1643 these specifications are optional; the simplest form of a section
1652 @cindex naming output sections
1654 @var{secname} is the name of the output section, and @var{contents} a
1655 specification of what goes there---for example, a list of input files or
1656 sections of input files (@pxref{Section Placement}). As you might
1657 assume, the whitespace shown is optional. You do need the colon
1658 @samp{:} and the braces @samp{@{@}}, however.
1660 @var{secname} must meet the constraints of your output format. In
1661 formats which only support a limited number of sections, such as
1662 @code{a.out}, the name must be one of the names supported by the format
1663 (@code{a.out}, for example, allows only @code{.text}, @code{.data} or
1664 @code{.bss}). If the output format supports any number of sections, but
1665 with numbers and not names (as is the case for Oasys), the name should be
1666 supplied as a quoted numeric string. A section name may consist of any
1667 sequence of characters, but any name which does not conform to the standard
1668 @code{ld} symbol name syntax must be quoted.
1669 @xref{Symbols, , Symbol Names}.
1671 The linker will not create output sections which do not have any
1672 contents. This is for convenience when referring to input sections that
1673 may or may not exist. For example,
1677 will only create a @samp{.foo} section in the output file if there is a
1678 @samp{.foo} section in at least one input file.
1680 @node Section Placement
1681 @subsection Section Placement
1683 @cindex contents of a section
1684 In a section definition, you can specify the contents of an output
1685 section by listing particular input files, by listing particular
1686 input-file sections, or by a combination of the two. You can also place
1687 arbitrary data in the section, and define symbols relative to the
1688 beginning of the section.
1690 The @var{contents} of a section definition may include any of the
1691 following kinds of statement. You can include as many of these as you
1692 like in a single section definition, separated from one another by
1696 @kindex @var{filename}
1697 @cindex input files, section defn
1698 @cindex files, including in output sections
1699 @item @var{filename}
1700 You may simply name a particular input file to be placed in the current
1701 output section; @emph{all} sections from that file are placed in the
1702 current section definition. If the file name has already been mentioned
1703 in another section definition, with an explicit section name list, then
1704 only those sections which have not yet been allocated are used.
1706 To specify a list of particular files by name:
1708 .data : @{ afile.o bfile.o cfile.o @}
1711 The example also illustrates that multiple statements can be included in
1712 the contents of a section definition, since each file name is a separate
1715 @kindex @var{filename}(@var{section})
1716 @cindex files and sections, section defn
1717 @item @var{filename}( @var{section} )
1718 @itemx @var{filename}( @var{section}, @var{section}, @dots{} )
1719 @itemx @var{filename}( @var{section} @var{section} @dots{} )
1720 You can name one or more sections from your input files, for
1721 insertion in the current output section. If you wish to specify a list
1722 of input-file sections inside the parentheses, you may separate the
1723 section names by either commas or whitespace.
1725 @cindex input sections to output section
1726 @kindex *(@var{section})
1727 @item * (@var{section})
1728 @itemx * (@var{section}, @var{section}, @dots{})
1729 @itemx * (@var{section} @var{section} @dots{})
1730 Instead of explicitly naming particular input files in a link control
1731 script, you can refer to @emph{all} files from the @code{ld} command
1732 line: use @samp{*} instead of a particular file name before the
1733 parenthesized input-file section list.
1735 If you have already explicitly included some files by name, @samp{*}
1736 refers to all @emph{remaining} files---those whose places in the output
1737 file have not yet been defined.
1739 For example, to copy sections @code{1} through @code{4} from an Oasys file
1740 into the @code{.text} section of an @code{a.out} file, and sections @code{13}
1741 and @code{14} into the @code{.data} section:
1754 @cindex @code{[@var{section}@dots{}]}, not supported
1755 @samp{[ @var{section} @dots{} ]} used to be accepted as an alternate way
1756 to specify named sections from all unallocated input files. Because
1757 some operating systems (VMS) allow brackets in file names, that notation
1758 is no longer supported.
1760 @cindex uninitialized data
1761 @cindex commons in output
1763 @item @var{filename}@code{( COMMON )}
1765 Specify where in your output file to place uninitialized data
1766 with this notation. @code{*(COMMON)} by itself refers to all
1767 uninitialized data from all input files (so far as it is not yet
1768 allocated); @var{filename}@code{(COMMON)} refers to uninitialized data
1769 from a particular file. Both are special cases of the general
1770 mechanisms for specifying where to place input-file sections:
1771 @code{ld} permits you to refer to uninitialized data as if it
1772 were in an input-file section named @code{COMMON}, regardless of the
1773 input file's format.
1776 For example, the following command script arranges the output file into
1777 three consecutive sections, named @code{.text}, @code{.data}, and
1778 @code{.bss}, taking the input for each from the correspondingly named
1779 sections of all the input files:
1783 .text : @{ *(.text) @}
1784 .data : @{ *(.data) @}
1785 .bss : @{ *(.bss) *(COMMON) @}
1789 The following example reads all of the sections from file @code{all.o}
1790 and places them at the start of output section @code{outputa} which
1791 starts at location @code{0x10000}. All of section @code{.input1} from
1792 file @code{foo.o} follows immediately, in the same output section. All
1793 of section @code{.input2} from @code{foo.o} goes into output section
1794 @code{outputb}, followed by section @code{.input1} from @code{foo1.o}.
1795 All of the remaining @code{.input1} and @code{.input2} sections from any
1796 files are written to output section @code{outputc}.
1818 @node Section Data Expressions
1819 @subsection Section Data Expressions
1821 @cindex expressions in a section
1822 The foregoing statements arrange, in your output file, data originating
1823 from your input files. You can also place data directly in an output
1824 section from the link command script. Most of these additional
1825 statements involve expressions; @pxref{Expressions}. Although these
1826 statements are shown separately here for ease of presentation, no such
1827 segregation is needed within a section definition in the @code{SECTIONS}
1828 command; you can intermix them freely with any of the statements we've
1832 @cindex input filename symbols
1833 @cindex filename symbols
1834 @kindex CREATE_OBJECT_SYMBOLS
1835 @item CREATE_OBJECT_SYMBOLS
1836 Create a symbol for each input file
1837 in the current section, set to the address of the first byte of
1838 data written from that input file. For instance, with @code{a.out}
1839 files it is conventional to have a symbol for each input file. You can
1840 accomplish this by defining the output @code{.text} section as follows:
1845 CREATE_OBJECT_SYMBOLS
1847 _etext = ALIGN(0x2000);
1853 If @code{sample.ld} is a file containing this script, and @code{a.o},
1854 @code{b.o}, @code{c.o}, and @code{d.o} are four input files with
1855 contents like the following---
1865 @samp{ld -M -T sample.ld a.o b.o c.o d.o} would create a map like this,
1866 containing symbols matching the object file names:
1868 00000000 A __DYNAMIC
1871 00002020 T _afunction
1874 00002038 T _bfunction
1877 00002050 T _cfunction
1880 00002068 T _dfunction
1890 @kindex @var{symbol} = @var{expression} ;
1891 @kindex @var{symbol} @var{f}= @var{expression} ;
1892 @item @var{symbol} = @var{expression} ;
1893 @itemx @var{symbol} @var{f}= @var{expression} ;
1894 @var{symbol} is any symbol name (@pxref{Symbols}). ``@var{f}=''
1895 refers to any of the operators @code{&= += -= *= /=} which combine
1896 arithmetic and assignment.
1898 @cindex assignment, in section defn
1899 When you assign a value to a symbol within a particular section
1900 definition, the value is relative to the beginning of the section
1901 (@pxref{Assignment}). If you write
1907 .data : @{ @dots{} rel = 14 ; @dots{} @}
1908 abs2 = 14 + ADDR(.data);
1913 @c FIXME: Try above example!
1915 @code{abs} and @code{rel} do not have the same value; @code{rel} has the
1916 same value as @code{abs2}.
1918 @kindex BYTE(@var{expression})
1919 @kindex SHORT(@var{expression})
1920 @kindex LONG(@var{expression})
1921 @kindex QUAD(@var{expression})
1922 @cindex direct output
1923 @item BYTE(@var{expression})
1924 @itemx SHORT(@var{expression})
1925 @itemx LONG(@var{expression})
1926 @itemx QUAD(@var{expression})
1927 By including one of these four statements in a section definition, you
1928 can explicitly place one, two, four, or eight bytes (respectively) at
1929 the current address of that section. @code{QUAD} is only supported when
1930 using a 64 bit host or target.
1932 @ifclear SingleFormat
1933 Multiple-byte quantities are represented in whatever byte order is
1934 appropriate for the output file format (@pxref{BFD}).
1937 @item FILL(@var{expression})
1938 @kindex FILL(@var{expression})
1939 @cindex holes, filling
1940 @cindex unspecified memory
1941 Specify the ``fill pattern'' for the current section. Any otherwise
1942 unspecified regions of memory within the section (for example, regions
1943 you skip over by assigning a new value to the location counter @samp{.})
1944 are filled with the two least significant bytes from the
1945 @var{expression} argument. A @code{FILL} statement covers memory
1946 locations @emph{after} the point it occurs in the section definition; by
1947 including more than one @code{FILL} statement, you can have different
1948 fill patterns in different parts of an output section.
1951 @node Section Options
1952 @subsection Optional Section Attributes
1953 @cindex section defn, full syntax
1954 Here is the full syntax of a section definition, including all the
1960 @var{secname} @var{start} BLOCK(@var{align}) (NOLOAD) : AT ( @var{ldadr} )
1961 @{ @var{contents} @} >@var{region} =@var{fill}
1966 @var{secname} and @var{contents} are required. @xref{Section
1967 Definition}, and @pxref{Section Placement} for details on
1968 @var{contents}. The remaining elements---@var{start},
1969 @code{BLOCK(@var{align)}}, @code{(NOLOAD)}, @code{AT ( @var{ldadr} )},
1970 @code{>@var{region}}, and @code{=@var{fill}}---are all optional.
1973 @cindex start address, section
1974 @cindex section start
1975 @cindex section address
1977 You can force the output section to be loaded at a specified address by
1978 specifying @var{start} immediately following the section name.
1979 @var{start} can be represented as any expression. The following
1980 example generates section @var{output} at location
1986 output 0x40000000: @{
1993 @kindex BLOCK(@var{align})
1994 @cindex section alignment
1995 @cindex aligning sections
1996 @item BLOCK(@var{align})
1997 You can include @code{BLOCK()} specification to advance
1998 the location counter @code{.} prior to the beginning of the section, so
1999 that the section will begin at the specified alignment. @var{align} is
2003 @cindex prevent unnecessary loading
2004 @cindex loading, preventing
2006 Use @samp{(NOLOAD)} to prevent a section from being loaded into memory
2007 each time it is accessed. For example, in the script sample below, the
2008 @code{ROM} segment is addressed at memory location @samp{0} and does not
2009 need to be loaded into each object file:
2013 ROM 0 (NOLOAD) : @{ @dots{} @}
2018 @kindex AT ( @var{ldadr} )
2019 @cindex specify load address
2020 @cindex load address, specifying
2021 @item AT ( @var{ldadr} )
2022 The expression @var{ldadr} that follows the @code{AT} keyword specifies
2023 the load address of the section. The default (if you do not use the
2024 @code{AT} keyword) is to make the load address the same as the
2025 relocation address. This feature is designed to make it easy to build a
2026 ROM image. For example, this @code{SECTIONS} definition creates two
2027 output sections: one called @samp{.text}, which starts at @code{0x1000},
2028 and one called @samp{.mdata}, which is loaded at the end of the
2029 @samp{.text} section even though its relocation address is
2030 @code{0x2000}. The symbol @code{_data} is defined with the value
2036 .text 0x1000 : @{ *(.text) _etext = . ; @}
2038 AT ( ADDR(.text) + SIZEOF ( .text ) )
2039 @{ _data = . ; *(.data); _edata = . ; @}
2041 @{ _bstart = . ; *(.bss) *(COMMON) ; _bend = . ;@}
2045 The run-time initialization code (for C programs, usually @code{crt0})
2046 for use with a ROM generated this way has to include something like
2047 the following, to copy the initialized data from the ROM image to its runtime
2054 /* ROM has data at end of text; copy it. */
2055 while (dst < _edata) @{
2060 for (dst = _bstart; dst< _bend; dst++)
2064 @kindex >@var{region}
2065 @cindex section, assigning to memory region
2066 @cindex memory regions and sections
2068 Assign this section to a previously defined region of memory.
2072 @cindex section fill pattern
2073 @cindex fill pattern, entire section
2075 Including @code{=@var{fill}} in a section definition specifies the
2076 initial fill value for that section. You may use any expression to
2077 specify @var{fill}. Any unallocated holes in the current output section
2078 when written to the output file will be filled with the two least
2079 significant bytes of the value, repeated as necessary. You can also
2080 change the fill value with a @code{FILL} statement in the @var{contents}
2081 of a section definition.
2086 @section The Entry Point
2087 @kindex ENTRY(@var{symbol})
2088 @cindex start of execution
2089 @cindex first instruction
2090 The linker command language includes a command specifically for
2091 defining the first executable instruction in an output file (its
2092 @dfn{entry point}). Its argument is a symbol name:
2097 Like symbol assignments, the @code{ENTRY} command may be placed either
2098 as an independent command in the command file, or among the section
2099 definitions within the @code{SECTIONS} command---whatever makes the most
2100 sense for your layout.
2102 @cindex entry point, defaults
2103 @code{ENTRY} is only one of several ways of choosing the entry point.
2104 You may indicate it in any of the following ways (shown in descending
2105 order of priority: methods higher in the list override methods lower down).
2108 the @samp{-e} @var{entry} command-line option;
2110 the @code{ENTRY(@var{symbol})} command in a linker control script;
2112 the value of the symbol @code{start}, if present;
2114 the address of the first byte of the @code{.text} section, if present;
2116 The address @code{0}.
2119 For example, you can use these rules to generate an entry point with an
2120 assignment statement: if no symbol @code{start} is defined within your
2121 input files, you can simply define it, assigning it an appropriate
2129 The example shows an absolute address, but you can use any expression.
2130 For example, if your input object files use some other symbol-name
2131 convention for the entry point, you can just assign the value of
2132 whatever symbol contains the start address to @code{start}:
2135 start = other_symbol ;
2138 @node Option Commands
2139 @section Option Commands
2140 The command language includes a number of other commands that you can
2141 use for specialized purposes. They are similar in purpose to
2142 command-line options.
2145 @kindex CONSTRUCTORS
2146 @cindex C++ constructors, arranging in link
2147 @cindex constructors, arranging in link
2149 This command ties up C++ style constructor and destructor records. The
2150 details of the constructor representation vary from one object format to
2151 another, but usually lists of constructors and destructors appear as
2152 special sections. The @code{CONSTRUCTORS} command specifies where the
2153 linker is to place the data from these sections, relative to the rest of
2154 the linked output. Constructor data is marked by the symbol
2155 @w{@code{__CTOR_LIST__}} at the start, and @w{@code{__CTOR_LIST_END}} at
2156 the end; destructor data is bracketed similarly, between
2157 @w{@code{__DTOR_LIST__}} and @w{@code{__DTOR_LIST_END}}. (The compiler
2158 must arrange to actually run this code; GNU C++ calls constructors from
2159 a subroutine @code{__main}, which it inserts automatically into the
2160 startup code for @code{main}, and destructors from @code{_exit}.)
2167 These keywords were used in some older linkers to request a particular
2168 math subroutine library. @code{ld} doesn't use the keywords, assuming
2169 instead that any necessary subroutines are in libraries specified using
2170 the general mechanisms for linking to archives; but to permit the use of
2171 scripts that were written for the older linkers, the keywords
2172 @code{FLOAT} and @code{NOFLOAT} are accepted and ignored.
2174 @kindex FORCE_COMMON_ALLOCATION
2175 @cindex common allocation
2176 @item FORCE_COMMON_ALLOCATION
2177 This command has the same effect as the @samp{-d} command-line option:
2178 to make @code{ld} assign space to common symbols even if a relocatable
2179 output file is specified (@samp{-r}).
2181 @kindex INPUT ( @var{files} )
2182 @cindex binary input files
2183 @item INPUT ( @var{file}, @var{file}, @dots{} )
2184 @itemx INPUT ( @var{file} @var{file} @dots{} )
2185 Use this command to include binary input files in the link, without
2186 including them in a particular section definition.
2187 Specify the full name for each @var{file}, including @samp{.a} if
2190 @code{ld} searches for each @var{file} through the archive-library
2191 search path, just as for files you specify on the command line.
2192 See the description of @samp{-L} in @ref{Options,,Command Line
2195 If you use @samp{-l@var{file}}, @code{ld} will transform the name to
2196 @code{lib@var{file}.a} as with the command line argument @samp{-l}.
2198 @kindex GROUP ( @var{files} )
2199 @cindex grouping input files
2200 @item GROUP ( @var{file}, @var{file}, @dots{} )
2201 @itemx GROUP ( @var{file} @var{file} @dots{} )
2202 This command is like @code{INPUT}, except that the named files should
2203 all be archives, and they are searched repeatedly until no new undefined
2204 references are created. See the description of @samp{-(} in
2205 @ref{Options,,Command Line Options}.
2208 @item MAP ( @var{name} )
2209 @kindex MAP ( @var{name} )
2210 @c MAP(...) appears to look for an F in the arg, ignoring all other
2211 @c chars; if it finds one, it sets "map_option_f" to true. But nothing
2212 @c checks map_option_f. Apparently a stub for the future...
2215 @item OUTPUT ( @var{filename} )
2216 @kindex OUTPUT ( @var{filename} )
2217 @cindex naming the output file
2218 Use this command to name the link output file @var{filename}. The
2219 effect of @code{OUTPUT(@var{filename})} is identical to the effect of
2220 @w{@samp{-o @var{filename}}}, which overrides it. You can use this
2221 command to supply a default output-file name other than @code{a.out}.
2223 @ifclear SingleFormat
2224 @item OUTPUT_ARCH ( @var{bfdname} )
2225 @kindex OUTPUT_ARCH ( @var{bfdname} )
2226 @cindex machine architecture, output
2227 Specify a particular output machine architecture, with one of the names
2228 used by the BFD back-end routines (@pxref{BFD}). This command is often
2229 unnecessary; the architecture is most often set implicitly by either the
2230 system BFD configuration or as a side effect of the @code{OUTPUT_FORMAT}
2233 @item OUTPUT_FORMAT ( @var{bfdname} )
2234 @kindex OUTPUT_FORMAT ( @var{bfdname} )
2235 @cindex format, output file
2236 When @code{ld} is configured to support multiple object code formats,
2237 you can use this command to specify a particular output format.
2238 @var{bfdname} is one of the names used by the BFD back-end routines
2239 (@pxref{BFD}). The effect is identical to the effect of the
2240 @samp{-oformat} command-line option. This selection affects only
2241 the output file; the related command @code{TARGET} affects primarily
2245 @item SEARCH_DIR ( @var{path} )
2246 @kindex SEARCH_DIR ( @var{path} )
2247 @cindex path for libraries
2248 @cindex search path, libraries
2249 Add @var{path} to the list of paths where @code{ld} looks for
2250 archive libraries. @code{SEARCH_DIR(@var{path})} has the same
2251 effect as @samp{-L@var{path}} on the command line.
2253 @item STARTUP ( @var{filename} )
2254 @kindex STARTUP ( @var{filename} )
2255 @cindex first input file
2256 Ensure that @var{filename} is the first input file used in the link
2259 @ifclear SingleFormat
2260 @item TARGET ( @var{format} )
2261 @cindex input file format
2262 @kindex TARGET ( @var{format} )
2263 When @code{ld} is configured to support multiple object code formats,
2264 you can use this command to change the input-file object code format
2265 (like the command-line option @samp{-b} or its synonym @samp{-format}).
2266 The argument @var{format} is one of the strings used by BFD to name
2267 binary formats. If @code{TARGET} is specified but @code{OUTPUT_FORMAT}
2268 is not, the last @code{TARGET} argument is also used as the default
2269 format for the @code{ld} output file. @xref{BFD}.
2272 If you don't use the @code{TARGET} command, @code{ld} uses the value of
2273 the environment variable @code{GNUTARGET}, if available, to select the
2274 output file format. If that variable is also absent, @code{ld} uses
2275 the default format configured for your machine in the BFD libraries.
2280 @node Machine Dependent
2281 @chapter Machine Dependent Features
2283 @cindex machine dependencies
2284 @code{ld} has additional features on some platforms; the following
2285 sections describe them. Machines where @code{ld} has no additional
2286 functionality are not listed.
2289 * H8/300:: @code{ld} and the H8/300
2290 * i960:: @code{ld} and the Intel 960 family
2294 @c FIXME! This could use @raisesections/@lowersections, but there seems to be a conflict
2295 @c between those and node-defaulting.
2301 @section @code{ld} and the H8/300
2303 @cindex H8/300 support
2304 For the H8/300, @code{ld} can perform these global optimizations when
2305 you specify the @samp{-relax} command-line option.
2308 @item relaxing address modes
2309 @cindex relaxing on H8/300
2310 @code{ld} finds all @code{jsr} and @code{jmp} instructions whose
2311 targets are within eight bits, and turns them into eight-bit
2312 program-counter relative @code{bsr} and @code{bra} instructions,
2315 @item synthesizing instructions
2316 @cindex synthesizing on H8/300
2317 @c FIXME: specifically mov.b, or any mov instructions really?
2318 @code{ld} finds all @code{mov.b} instructions which use the
2319 sixteen-bit absolute address form, but refer to the top
2320 page of memory, and changes them to use the eight-bit address form.
2321 (That is: the linker turns @samp{mov.b @code{@@}@var{aa}:16} into
2322 @samp{mov.b @code{@@}@var{aa}:8} whenever the address @var{aa} is in the
2323 top page of memory).
2332 @c This stuff is pointless to say unless you're especially concerned
2333 @c with Hitachi chips; don't enable it for generic case, please.
2335 @chapter @code{ld} and other Hitachi chips
2337 @code{ld} also supports the H8/300H, the H8/500, and the Hitachi SH. No
2338 special features, commands, or command-line options are required for
2348 @section @code{ld} and the Intel 960 family
2350 @cindex i960 support
2352 You can use the @samp{-A@var{architecture}} command line option to
2353 specify one of the two-letter names identifying members of the 960
2354 family; the option specifies the desired output target, and warns of any
2355 incompatible instructions in the input files. It also modifies the
2356 linker's search strategy for archive libraries, to support the use of
2357 libraries specific to each particular architecture, by including in the
2358 search loop names suffixed with the string identifying the architecture.
2360 For example, if your @code{ld} command line included @w{@samp{-ACA}} as
2361 well as @w{@samp{-ltry}}, the linker would look (in its built-in search
2362 paths, and in any paths you specify with @samp{-L}) for a library with
2373 The first two possibilities would be considered in any event; the last
2374 two are due to the use of @w{@samp{-ACA}}.
2376 You can meaningfully use @samp{-A} more than once on a command line, since
2377 the 960 architecture family allows combination of target architectures; each
2378 use will add another pair of name variants to search for when @w{@samp{-l}}
2379 specifies a library.
2381 @cindex @code{-relax} on i960
2382 @cindex relaxing on i960
2383 @code{ld} supports the @samp{-relax} option for the i960 family. If you
2384 specify @samp{-relax}, @code{ld} finds all @code{balx} and @code{calx}
2385 instructions whose targets are within 24 bits, and turns them into
2386 24-bit program-counter relative @code{bal} and @code{cal}
2387 instructions, respectively. @code{ld} also turns @code{cal}
2388 instructions into @code{bal} instructions when it determines that the
2389 target subroutine is a leaf routine (that is, the target subroutine does
2390 not itself call any subroutines).
2397 @ifclear SingleFormat
2402 @cindex object file management
2403 @cindex object formats available
2405 The linker accesses object and archive files using the BFD libraries.
2406 These libraries allow the linker to use the same routines to operate on
2407 object files whatever the object file format. A different object file
2408 format can be supported simply by creating a new BFD back end and adding
2409 it to the library. To conserve runtime memory, however, the linker and
2410 associated tools are usually configured to support only a subset of the
2411 object file formats available. You can use @code{objdump -i}
2412 (@pxref{objdump,,objdump,binutils.info,The GNU Binary Utilities}) to
2413 list all the formats available for your configuration.
2415 @cindex BFD requirements
2416 @cindex requirements for BFD
2417 As with most implementations, BFD is a compromise between
2418 several conflicting requirements. The major factor influencing
2419 BFD design was efficiency: any time used converting between
2420 formats is time which would not have been spent had BFD not
2421 been involved. This is partly offset by abstraction payback; since
2422 BFD simplifies applications and back ends, more time and care
2423 may be spent optimizing algorithms for a greater speed.
2425 One minor artifact of the BFD solution which you should bear in
2426 mind is the potential for information loss. There are two places where
2427 useful information can be lost using the BFD mechanism: during
2428 conversion and during output. @xref{BFD information loss}.
2431 * BFD outline:: How it works: an outline of BFD
2435 @section How it works: an outline of BFD
2436 @cindex opening object files
2437 @include bfdsumm.texi
2441 @appendix MRI Compatible Script Files
2442 @cindex MRI compatibility
2443 To aid users making the transition to @sc{gnu} @code{ld} from the MRI
2444 linker, @code{ld} can use MRI compatible linker scripts as an
2445 alternative to the more general-purpose linker scripting language
2446 described in @ref{Commands,,Command Language}. MRI compatible linker
2447 scripts have a much simpler command set than the scripting language
2448 otherwise used with @code{ld}. @sc{gnu} @code{ld} supports the most
2449 commonly used MRI linker commands; these commands are described here.
2451 In general, MRI scripts aren't of much use with the @code{a.out} object
2452 file format, since it only has three sections and MRI scripts lack some
2453 features to make use of them.
2455 You can specify a file containing an MRI-compatible script using the
2456 @samp{-c} command-line option.
2458 Each command in an MRI-compatible script occupies its own line; each
2459 command line starts with the keyword that identifies the command (though
2460 blank lines are also allowed for punctuation). If a line of an
2461 MRI-compatible script begins with an unrecognized keyword, @code{ld}
2462 issues a warning message, but continues processing the script.
2464 Lines beginning with @samp{*} are comments.
2466 You can write these commands using all upper-case letters, or all
2467 lower case; for example, @samp{chip} is the same as @samp{CHIP}.
2468 The following list shows only the upper-case form of each command.
2471 @cindex @code{ABSOLUTE} (MRI)
2472 @item ABSOLUTE @var{secname}
2473 @item ABSOLUTE @var{secname}, @var{secname}, @dots{} @var{secname}
2474 Normally, @code{ld} includes in the output file all sections from all
2475 the input files. However, in an MRI-compatible script, you can use the
2476 @code{ABSOLUTE} command to restrict the sections that will be present in
2477 your output program. If the @code{ABSOLUTE} command is used at all in a
2478 script, then only the sections named explicitly in @code{ABSOLUTE}
2479 commands will appear in the linker output. You can still use other
2480 input sections (whatever you select on the command line, or using
2481 @code{LOAD}) to resolve addresses in the output file.
2483 @cindex @code{ALIAS} (MRI)
2484 @item ALIAS @var{out-secname}, @var{in-secname}
2485 Use this command to place the data from input section @var{in-secname}
2486 in a section called @var{out-secname} in the linker output file.
2488 @var{in-secname} may be an integer.
2490 @cindex @code{ALIGN} (MRI)
2491 @item ALIGN @var{secname} = @var{expression}
2492 Align the section called @var{secname} to @var{expression}. The
2493 @var{expression} should be a power of two.
2495 @cindex @code{BASE} (MRI)
2496 @item BASE @var{expression}
2497 Use the value of @var{expression} as the lowest address (other than
2498 absolute addresses) in the output file.
2500 @cindex @code{CHIP} (MRI)
2501 @item CHIP @var{expression}
2502 @itemx CHIP @var{expression}, @var{expression}
2503 This command does nothing; it is accepted only for compatibility.
2505 @cindex @code{END} (MRI)
2507 This command does nothing whatever; it's only accepted for compatibility.
2509 @cindex @code{FORMAT} (MRI)
2510 @item FORMAT @var{output-format}
2511 Similar to the @code{OUTPUT_FORMAT} command in the more general linker
2512 language, but restricted to one of these output formats:
2516 S-records, if @var{output-format} is @samp{S}
2519 IEEE, if @var{output-format} is @samp{IEEE}
2522 COFF (the @samp{coff-m68k} variant in BFD), if @var{output-format} is
2526 @cindex @code{LIST} (MRI)
2527 @item LIST @var{anything}@dots{}
2528 Print (to the standard output file) a link map, as produced by the
2529 @code{ld} command-line option @samp{-M}.
2531 The keyword @code{LIST} may be followed by anything on the
2532 same line, with no change in its effect.
2534 @cindex @code{LOAD} (MRI)
2535 @item LOAD @var{filename}
2536 @item LOAD @var{filename}, @var{filename}, @dots{} @var{filename}
2537 Include one or more object file @var{filename} in the link; this has the
2538 same effect as specifying @var{filename} directly on the @code{ld}
2541 @cindex @code{NAME} (MRI)
2542 @item NAME @var{output-name}
2543 @var{output-name} is the name for the program produced by @code{ld}; the
2544 MRI-compatible command @code{NAME} is equivalent to the command-line
2545 option @samp{-o} or the general script language command @code{OUTPUT}.
2547 @cindex @code{ORDER} (MRI)
2548 @item ORDER @var{secname}, @var{secname}, @dots{} @var{secname}
2549 @itemx ORDER @var{secname} @var{secname} @var{secname}
2550 Normally, @code{ld} orders the sections in its output file in the
2551 order in which they first appear in the input files. In an MRI-compatible
2552 script, you can override this ordering with the @code{ORDER} command. The
2553 sections you list with @code{ORDER} will appear first in your output
2554 file, in the order specified.
2556 @cindex @code{PUBLIC} (MRI)
2557 @item PUBLIC @var{name}=@var{expression}
2558 @itemx PUBLIC @var{name},@var{expression}
2559 @itemx PUBLIC @var{name} @var{expression}
2560 Supply a value (@var{expression}) for external symbol
2561 @var{name} used in the linker input files.
2563 @cindex @code{SECT} (MRI)
2564 @item SECT @var{secname}, @var{expression}
2565 @itemx SECT @var{secname}=@var{expression}
2566 @itemx SECT @var{secname} @var{expression}
2567 You can use any of these three forms of the @code{SECT} command to
2568 specify the start address (@var{expression}) for section @var{secname}.
2569 If you have more than one @code{SECT} statement for the same
2570 @var{secname}, only the @emph{first} sets the start address.
2580 % I think something like @colophon should be in texinfo. In the
2582 \long\def\colophon{\hbox to0pt{}\vfill
2583 \centerline{The body of this manual is set in}
2584 \centerline{\fontname\tenrm,}
2585 \centerline{with headings in {\bf\fontname\tenbf}}
2586 \centerline{and examples in {\tt\fontname\tentt}.}
2587 \centerline{{\it\fontname\tenit\/} and}
2588 \centerline{{\sl\fontname\tensl\/}}
2589 \centerline{are used for emphasis.}\vfill}