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