]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - ld/ld.texinfo
* ld.texinfo, ld.1: Mention -E as a synonym for -export-dynamic.
[thirdparty/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
7 @c @smallbook
8
9 @ifinfo
10 @format
11 START-INFO-DIR-ENTRY
12 * Ld: (ld). The GNU linker.
13 END-INFO-DIR-ENTRY
14 @end format
15 @end ifinfo
16
17 @ifinfo
18 This file documents the @sc{gnu} linker LD.
19
20 Copyright (C) 1991, 92, 93, 94, 95, 1996 Free Software Foundation, Inc.
21
22 Permission is granted to make and distribute verbatim copies of
23 this manual provided the copyright notice and this permission notice
24 are preserved on all copies.
25
26 Permission is granted to copy and distribute modified versions of this
27 manual under the conditions for verbatim copying, provided also that
28 the entire resulting derived work is distributed under the terms of a
29 permission notice identical to this one.
30
31 Permission is granted to copy and distribute translations of this manual
32 into another language, under the above conditions for modified versions.
33
34 @ignore
35 Permission is granted to process this file through Tex and print the
36 results, provided the printed document carries copying permission
37 notice identical to this one except for the removal of this paragraph
38 (this paragraph not being relevant to the printed manual).
39
40 @end ignore
41 @end ifinfo
42 @iftex
43 @finalout
44 @setchapternewpage odd
45 @settitle Using LD, the GNU linker
46 @titlepage
47 @title Using ld
48 @subtitle The GNU linker
49 @sp 1
50 @subtitle @code{ld} version 2
51 @subtitle January 1994
52 @author Steve Chamberlain
53 @author Cygnus Support
54 @page
55
56 @tex
57 {\parskip=0pt
58 \hfill Cygnus Support\par
59 \hfill steve\@cygnus.com, doc\@cygnus.com\par
60 \hfill {\it Using LD, the GNU linker}\par
61 \hfill Edited by Jeffrey Osier (jeffrey\@cygnus.com)\par
62 }
63 \global\parindent=0pt % Steve likes it this way.
64 @end tex
65
66 @vskip 0pt plus 1filll
67 Copyright @copyright{} 1991, 92, 93, 94, 95, 1996 Free Software Foundation, Inc.
68
69 Permission is granted to make and distribute verbatim copies of
70 this manual provided the copyright notice and this permission notice
71 are preserved on all copies.
72
73 Permission is granted to copy and distribute modified versions of this
74 manual under the conditions for verbatim copying, provided also that
75 the entire resulting derived work is distributed under the terms of a
76 permission notice identical to this one.
77
78 Permission is granted to copy and distribute translations of this manual
79 into another language, under the above conditions for modified versions.
80 @end titlepage
81 @end iftex
82 @c FIXME: Talk about importance of *order* of args, cmds to linker!
83
84 @ifinfo
85 @node Top
86 @top Using ld
87 This file documents the @sc{gnu} linker ld.
88
89 @menu
90 * Overview:: Overview
91 * Invocation:: Invocation
92 * Commands:: Command Language
93 @ifset GENERIC
94 * Machine Dependent:: Machine Dependent Features
95 @end ifset
96 @ifclear GENERIC
97 @ifset H8300
98 * H8/300:: ld and the H8/300
99 @end ifset
100 @ifset Hitachi
101 * Hitachi:: ld and other Hitachi micros
102 @end ifset
103 @ifset I960
104 * i960:: ld and the Intel 960 family
105 @end ifset
106 @end ifclear
107 @ifclear SingleFormat
108 * BFD:: BFD
109 @end ifclear
110 @c Following blank line required for remaining bug in makeinfo conds/menus
111
112 * MRI:: MRI Compatible Script Files
113 * Index:: Index
114 @end menu
115 @end ifinfo
116
117 @node Overview
118 @chapter Overview
119
120 @cindex @sc{gnu} linker
121 @cindex what is this?
122 @code{ld} combines a number of object and archive files, relocates
123 their data and ties up symbol references. Usually the last step in
124 compiling a program is to run @code{ld}.
125
126 @code{ld} accepts Linker Command Language files written in
127 a superset of AT&T's Link Editor Command Language syntax,
128 to provide explicit and total control over the linking process.
129
130 @ifclear SingleFormat
131 This version of @code{ld} uses the general purpose BFD libraries
132 to operate on object files. This allows @code{ld} to read, combine, and
133 write object files in many different formats---for example, COFF or
134 @code{a.out}. Different formats may be linked together to produce any
135 available kind of object file. @xref{BFD}, for more information.
136 @end ifclear
137
138 Aside from its flexibility, the @sc{gnu} linker is more helpful than other
139 linkers in providing diagnostic information. Many linkers abandon
140 execution immediately upon encountering an error; whenever possible,
141 @code{ld} continues executing, allowing you to identify other errors
142 (or, in some cases, to get an output file in spite of the error).
143
144 @node Invocation
145 @chapter Invocation
146
147 The @sc{gnu} linker @code{ld} is meant to cover a broad range of situations,
148 and to be as compatible as possible with other linkers. As a result,
149 you have many choices to control its behavior.
150
151 @ifset UsesEnvVars
152 @menu
153 * Options:: Command Line Options
154 * Environment:: Environment Variables
155 @end menu
156
157 @node Options
158 @section Command Line Options
159 @end ifset
160
161 @cindex command line
162 @cindex options
163 Here is a summary of the options you can use on the @code{ld} command
164 line:
165
166 @c FIXME! -relax only avail h8/300, i960. Conditionals screwed in examples.
167 @smallexample
168 ld [ -o @var{output} ] @var{objfile}@dots{}
169 [ -A@var{architecture} ] [ -b @var{input-format} ]
170 [ -Bstatic ] [ -Bdynamic ] [ -Bsymbolic ]
171 [ -c @var{MRI-commandfile} ] [ -d | -dc | -dp ]
172 [ -defsym @var{symbol}=@var{expression} ]
173 [ -dynamic-linker @var{file} ] [ -embedded-relocs ] [ -E ]
174 [ -export-dynamic ] [ -e @var{entry} ] [ -F ] [ -F @var{format} ]
175 [ -format @var{input-format} ] [ -g ] [ -G @var{size} ]
176 [ -help ] [ -i ] [ -l@var{archive} ] [ -L@var{searchdir} ]
177 [ -M ] [ -Map @var{mapfile} ] [ -m @var{emulation} ]
178 [ -N | -n ] [ -noinhibit-exec ] [ -no-keep-memory ]
179 [ -oformat @var{output-format} ] [ -R @var{filename} ]
180 [ -relax ] [ -retain-symbols-file @var{filename} ]
181 [ -r | -Ur ] [ -rpath @var{dir} ] [-rpath-link @var{dir} ]
182 [ -S ] [ -s ] [ -soname @var{name} ] [ -shared ]
183 [ -sort-common ] [ -stats ] [ -T @var{commandfile} ]
184 [ -Ttext @var{org} ] [ -Tdata @var{org} ]
185 [ -Tbss @var{org} ] [ -t ] [ -traditional-format ]
186 [ -u @var{symbol}] [-V] [-v] [ -verbose] [ -version ]
187 [ -warn-common ] [ -warn-constructors] [ -warn-multiple-gp ]
188 [ -warn-once ] [ -y @var{symbol} ] [ -X ] [-x ]
189 [ -( [ archives ] -) ]
190 [ --start-group [ archives ] --end-group ]
191 [ -split-by-reloc @var{count} ] [ -split-by-file ]
192 [ --whole-archive ] [ --no-whole-archive ] [ --wrap @var{symbol} ]
193 @end smallexample
194
195 This plethora of command-line options may seem intimidating, but in
196 actual practice few of them are used in any particular context.
197 @cindex standard Unix system
198 For instance, a frequent use of @code{ld} is to link standard Unix
199 object files on a standard, supported Unix system. On such a system, to
200 link a file @code{hello.o}:
201
202 @smallexample
203 ld -o @var{output} /lib/crt0.o hello.o -lc
204 @end smallexample
205
206 This tells @code{ld} to produce a file called @var{output} as the
207 result of linking the file @code{/lib/crt0.o} with @code{hello.o} and
208 the library @code{libc.a}, which will come from the standard search
209 directories. (See the discussion of the @samp{-l} option below.)
210
211 The command-line options to @code{ld} may be specified in any order, and
212 may be repeated at will. Repeating most options with a
213 different argument will either have no further effect, or override prior
214 occurrences (those further to the left on the command line) of that
215 option.
216
217 @ifclear SingleFormat
218 The exceptions---which may meaningfully be used more than once---are
219 @samp{-A}, @samp{-b} (or its synonym @samp{-format}), @samp{-defsym},
220 @samp{-L}, @samp{-l}, @samp{-R}, @samp{-u}, and @samp{-(} (or its
221 synonym @samp{--start-group}).
222 @end ifclear
223 @ifset SingleFormat
224 The exceptions---which may meaningfully be used more than once---are
225 @samp{-A}, @samp{-defsym}, @samp{-L}, @samp{-l}, @samp{-R}, @samp{-u},
226 and @samp{-(} (or its synonym @samp{--start-group}).
227 @end ifset
228
229 @cindex object files
230 The list of object files to be linked together, shown as @var{objfile}@dots{},
231 may follow, precede, or be mixed in with command-line options, except that
232 an @var{objfile} argument may not be placed between an option and
233 its argument.
234
235 Usually the linker is invoked with at least one object file, but you can
236 specify other forms of binary input files using @samp{-l}, @samp{-R},
237 and the script command language. If @emph{no} binary input files at all
238 are specified, the linker does not produce any output, and issues the
239 message @samp{No input files}.
240
241 If the linker can not recognize the format of an object file, it will
242 assume that it is a linker script. A script specified in this way
243 augments the main linker script used for the link (either the default
244 linker script or the one specified by using @samp{-T}). This feature
245 permits the linker to link against a file which appears to be an object
246 or an archive, but actually merely defines some symbol values, or uses
247 @code{INPUT} or @code{GROUP} to load other objects. @xref{Commands}.
248
249 For options whose names are a single letter,
250 option arguments must either follow the option letter without intervening
251 whitespace, or be given as separate arguments immediately following the
252 option that requires them.
253
254 For options whose names are multiple letters, either one dash or two can
255 precede the option name; for example, @samp{--oformat} and
256 @samp{-oformat} are equivalent. Arguments to multiple-letter options
257 must either be separated from the option name by an equals sign, or be
258 given as separate arguments immediately following the option that
259 requires them. For example, @samp{--oformat srec} and
260 @samp{--oformat=srec} are equivalent. Unique abbreviations of the names
261 of multiple-letter options are accepted.
262
263 @table @code
264 @ifset I960
265 @cindex architectures
266 @kindex -A@var{arch}
267 @item -A@var{architecture}
268 In the current release of @code{ld}, this option is useful only for the
269 Intel 960 family of architectures. In that @code{ld} configuration, the
270 @var{architecture} argument identifies the particular architecture in
271 the 960 family, enabling some safeguards and modifying the
272 archive-library search path. @xref{i960,,@code{ld} and the Intel 960
273 family}, for details.
274
275 Future releases of @code{ld} may support similar functionality for
276 other architecture families.
277 @end ifset
278
279 @ifclear SingleFormat
280 @cindex binary input format
281 @kindex -b @var{format}
282 @cindex input format
283 @cindex input format
284 @item -b @var{input-format}
285 @code{ld} may be configured to support more than one kind of object
286 file. If your @code{ld} is configured this way, you can use the
287 @samp{-b} option to specify the binary format for input object files
288 that follow this option on the command line. Even when @code{ld} is
289 configured to support alternative object formats, you don't usually need
290 to specify this, as @code{ld} should be configured to expect as a
291 default input format the most usual format on each machine.
292 @var{input-format} is a text string, the name of a particular format
293 supported by the BFD libraries. (You can list the available binary
294 formats with @samp{objdump -i}.) @w{@samp{-format @var{input-format}}}
295 has the same effect, as does the script command @code{TARGET}.
296 @xref{BFD}.
297
298 You may want to use this option if you are linking files with an unusual
299 binary format. You can also use @samp{-b} to switch formats explicitly (when
300 linking object files of different formats), by including
301 @samp{-b @var{input-format}} before each group of object files in a
302 particular format.
303
304 The default format is taken from the environment variable
305 @code{GNUTARGET}.
306 @ifset UsesEnvVars
307 @xref{Environment}.
308 @end ifset
309 You can also define the input
310 format from a script, using the command @code{TARGET}; see @ref{Option
311 Commands}.
312 @end ifclear
313
314 @kindex -Bstatic
315 @item -Bstatic
316 Do not link against shared libraries. This is only meaningful on
317 platforms for which shared libraries are supported.
318
319 @kindex -Bdynamic
320 @item -Bdynamic
321 Link against dynamic libraries. This is only meaningful on platforms
322 for which shared libraries are supported. This option is normally the
323 default on such platforms.
324
325 @kindex -Bsymbolic
326 @item -Bsymbolic
327 When creating a shared library, bind references to global symbols to the
328 definition within the shared library, if any. Normally, it is possible
329 for a program linked against a shared library to override the definition
330 within the shared library. This option is only meaningful on ELF
331 platforms which support shared libraries.
332
333 @kindex -c @var{MRI-cmdfile}
334 @cindex compatibility, MRI
335 @item -c @var{MRI-commandfile}
336 For compatibility with linkers produced by MRI, @code{ld} accepts script
337 files written in an alternate, restricted command language, described in
338 @ref{MRI,,MRI Compatible Script Files}. Introduce MRI script files with
339 the option @samp{-c}; use the @samp{-T} option to run linker
340 scripts written in the general-purpose @code{ld} scripting language.
341 If @var{MRI-cmdfile} does not exist, @code{ld} looks for it in the directories
342 specified by any @samp{-L} options.
343
344 @cindex common allocation
345 @kindex -d
346 @kindex -dc
347 @kindex -dp
348 @item -d
349 @itemx -dc
350 @itemx -dp
351 These three options are equivalent; multiple forms are supported for
352 compatibility with other linkers. They
353 assign space to common symbols even if a relocatable output file is
354 specified (with @samp{-r}). The script command
355 @code{FORCE_COMMON_ALLOCATION} has the same effect. @xref{Option
356 Commands}.
357
358 @cindex symbols, from command line
359 @kindex -defsym @var{symbol}=@var{exp}
360 @item -defsym @var{symbol}=@var{expression}
361 Create a global symbol in the output file, containing the absolute
362 address given by @var{expression}. You may use this option as many
363 times as necessary to define multiple symbols in the command line. A
364 limited form of arithmetic is supported for the @var{expression} in this
365 context: you may give a hexadecimal constant or the name of an existing
366 symbol, or use @code{+} and @code{-} to add or subtract hexadecimal
367 constants or symbols. If you need more elaborate expressions, consider
368 using the linker command language from a script (@pxref{Assignment, ,
369 Assignment: Symbol Definitions}). @emph{Note:} there should be no
370 white space between @var{symbol}, the equals sign (``@key{=}''), and
371 @var{expression}.
372
373 @ifset GENERIC
374 @cindex dynamic linker, from command line
375 @kindex -dynamic-linker @var{file}
376 @item -dynamic-linker @var{file}
377 Set the name of the dynamic linker. This is only meaningful when
378 generating dynamically linked ELF executables. The default dynamic
379 linker is normally correct; don't use this unless you know what you are
380 doing.
381 @end ifset
382
383 @cindex MIPS embedded PIC code
384 @kindex -embedded-relocs
385 @item -embedded-relocs
386 This option is only meaningful when linking MIPS embedded PIC code,
387 generated by the -membedded-pic option to the @sc{gnu} compiler and
388 assembler. It causes the linker to create a table which may be used at
389 runtime to relocate any data which was statically initialized to pointer
390 values. See the code in testsuite/ld-empic for details.
391
392 @cindex entry point, from command line
393 @kindex -e @var{entry}
394 @item -e @var{entry}
395 Use @var{entry} as the explicit symbol for beginning execution of your
396 program, rather than the default entry point. @xref{Entry Point}, for a
397 discussion of defaults and other ways of specifying the
398 entry point.
399
400 @cindex dynamic symbol table
401 @kindex -E
402 @kindex -export-dynamic
403 @item -E
404 @itemx -export-dynamic
405 When creating an ELF file, add all symbols to the dynamic symbol table.
406 Normally, the dynamic symbol table contains only symbols which are used
407 by a dynamic object. This option is needed for some uses of
408 @code{dlopen}.
409
410 @ifclear SingleFormat
411 @kindex -F
412 @item -F
413 @itemx -F@var{format}
414 Ignored. Some older linkers used this option throughout a compilation
415 toolchain for specifying object-file format for both input and output
416 object files. The mechanisms @code{ld} uses for this purpose (the
417 @samp{-b} or @samp{-format} options for input files, @samp{-oformat}
418 option or the @code{TARGET} command in linker scripts for output files,
419 the @code{GNUTARGET} environment variable) are more flexible, but
420 @code{ld} accepts the @samp{-F} option for compatibility with scripts
421 written to call the old linker.
422
423 @kindex -format
424 @item -format @var{input-format}
425 Synonym for @samp{-b @var{input-format}}.
426 @end ifclear
427
428 @kindex -g
429 @item -g
430 Ignored. Provided for compatibility with other tools.
431
432 @kindex -G
433 @cindex object size
434 @item -G@var{value}
435 @itemx -G @var{value}
436 Set the maximum size of objects to be optimized using the GP register to
437 @var{size} under MIPS ECOFF. Ignored for other object file formats.
438
439 @cindex help
440 @cindex usage
441 @kindex -help
442 @item -help
443 Print a summary of the command-line options on the standard output and exit.
444
445 @kindex -i
446 @cindex incremental link
447 @item -i
448 Perform an incremental link (same as option @samp{-r}).
449
450 @cindex archive files, from cmd line
451 @kindex -l@var{archive}
452 @item -l@var{ar}
453 Add archive file @var{archive} to the list of files to link. This
454 option may be used any number of times. @code{ld} will search its
455 path-list for occurrences of @code{lib@var{ar}.a} for every @var{archive}
456 specified.
457
458 @cindex search directory, from cmd line
459 @kindex -L@var{dir}
460 @item -L@var{searchdir}
461 @itemx -L @var{searchdir}
462 Add path @var{searchdir} to the list of paths that @code{ld} will search
463 for archive libraries and @code{ld} control scripts. You may use this
464 option any number of times. The directories are searched in the order
465 in which they are specified on the command line. Directories specified
466 on the command line are searched before the default directories. All
467 @code{-L} options apply to all @code{-l} options, regardless of the
468 order in which the options appear.
469
470 @ifset UsesEnvVars
471 The default set of paths searched (without being specified with
472 @samp{-L}) depends on which emulation mode @code{ld} is using, and in
473 some cases also on how it was configured. @xref{Environment}.
474 @end ifset
475
476 The paths can also be specified in a link script with the
477 @code{SEARCH_DIR} command. Directories specified this way are searched
478 at the point in which the linker script appears in the command line.
479
480 @cindex link map
481 @kindex -M
482 @item -M
483 Print (to the standard output) a link map---diagnostic information about
484 where symbols are mapped by @code{ld}, and information on global common
485 storage allocation.
486
487 @cindex link map
488 @kindex -Map
489 @item -Map @var{mapfile}
490 Print to the file @var{mapfile} a link map---diagnostic information
491 about where symbols are mapped by @code{ld}, and information on global
492 common storage allocation.
493
494 @cindex emulation
495 @kindex -m @var{emulation}
496 @item -m@var{emulation}
497 @itemx -m @var{emulation}
498 Emulate the @var{emulation} linker. You can list the available
499 emulations with the @samp{--verbose} or @samp{-V} options. The default
500 depends on how your @code{ld} was configured.
501
502 @kindex -N
503 @cindex read/write from cmd line
504 @kindex OMAGIC
505 @item -N
506 Set the text and data sections to be readable and writable. Also, do
507 not page-align the data segment. If the output format supports Unix
508 style magic numbers, mark the output as @code{OMAGIC}.
509
510 @kindex -n
511 @cindex read-only text
512 @kindex NMAGIC
513 @item -n
514 Set the text segment to be read only, and mark the output as
515 @code{NMAGIC} if possible.
516
517 @cindex output file after errors
518 @kindex -noinhibit-exec
519 @item -noinhibit-exec
520 Retain the executable output file whenever it is still usable.
521 Normally, the linker will not produce an output file if it encounters
522 errors during the link process; it exits without writing an output file
523 when it issues any error whatsoever.
524
525 @cindex memory usage
526 @kindex -no-keep-memory
527 @item -no-keep-memory
528 @code{ld} normally optimizes for speed over memory usage by caching the
529 symbol tables of input files in memory. This option tells @code{ld} to
530 instead optimize for memory usage, by rereading the symbol tables as
531 necessary. This may be required if @code{ld} runs out of memory space
532 while linking a large executable.
533
534 @kindex -o @var{output}
535 @cindex naming the output file
536 @item -o @var{output}
537 Use @var{output} as the name for the program produced by @code{ld}; if this
538 option is not specified, the name @file{a.out} is used by default. The
539 script command @code{OUTPUT} can also specify the output file name.
540
541 @ifclear SingleFormat
542 @kindex -oformat
543 @item -oformat @var{output-format}
544 @code{ld} may be configured to support more than one kind of object
545 file. If your @code{ld} is configured this way, you can use the
546 @samp{-oformat} option to specify the binary format for the output
547 object file. Even when @code{ld} is configured to support alternative
548 object formats, you don't usually need to specify this, as @code{ld}
549 should be configured to produce as a default output format the most
550 usual format on each machine. @var{output-format} is a text string, the
551 name of a particular format supported by the BFD libraries. (You can
552 list the available binary formats with @samp{objdump -i}.) The script
553 command @code{OUTPUT_FORMAT} can also specify the output format, but
554 this option overrides it. @xref{BFD}.
555 @end ifclear
556
557 @kindex -R @var{file}
558 @cindex symbol-only input
559 @item -R @var{filename}
560 Read symbol names and their addresses from @var{filename}, but do not
561 relocate it or include it in the output. This allows your output file
562 to refer symbolically to absolute locations of memory defined in other
563 programs.
564
565 For compatibility with other ELF linkers, if the @code{-R} option is
566 followed by a directory name, rather than a file name, it is treated as
567 the @code{-rpath} option.
568
569 @kindex -relax
570 @cindex synthesizing linker
571 @cindex relaxing addressing modes
572 @item -relax
573 An option with machine dependent effects.
574 @ifset GENERIC
575 Currently this option is only supported on the H8/300 and the Intel 960.
576 @end ifset
577 @ifset H8300
578 @xref{H8/300,,@code{ld} and the H8/300}.
579 @end ifset
580 @ifset I960
581 @xref{i960,, @code{ld} and the Intel 960 family}.
582 @end ifset
583
584 On some platforms, the @samp{-relax} option performs global optimizations that
585 become possible when the linker resolves addressing in the program, such
586 as relaxing address modes and synthesizing new instructions in the
587 output object file.
588
589 @ifset GENERIC
590 On platforms where this is not supported, @samp{-relax} is accepted, but
591 ignored.
592 @end ifset
593
594 @cindex retaining specified symbols
595 @cindex stripping all but some symbols
596 @cindex symbols, retaining selectively
597 @item -retain-symbols-file @var{filename}
598 Retain @emph{only} the symbols listed in the file @var{filename},
599 discarding all others. @var{filename} is simply a flat file, with one
600 symbol name per line. This option is especially useful in environments
601 @ifset GENERIC
602 (such as VxWorks)
603 @end ifset
604 where a large global symbol table is accumulated gradually, to conserve
605 run-time memory.
606
607 @samp{-retain-symbols-file} does @emph{not} discard undefined symbols,
608 or symbols needed for relocations.
609
610 You may only specify @samp{-retain-symbols-file} once in the command
611 line. It overrides @samp{-s} and @samp{-S}.
612
613 @ifset GENERIC
614 @item -rpath @var{dir}
615 @cindex runtime library search path
616 @kindex -rpath
617 Add a directory to the runtime library search path. This is used when
618 linking an ELF executable with shared objects. All @code{-rpath}
619 arguments are concatenated and passed to the runtime linker, which uses
620 them to locate shared objects at runtime. The @code{-rpath} option is
621 also used when locating shared objects which are needed by shared
622 objects explicitly included in the link; see the description of the
623 @code{-rpath-link} option. If @code{-rpath} is not used when linking an
624 ELF executable, the contents of the environment variable
625 @code{LD_RUN_PATH} will be used if it is defined.
626
627 The @code{-rpath} option may also be used on SunOS. By default, on
628 SunOS, the linker will form a runtime search patch out of all the
629 @code{-L} options it is given. If a @code{-rpath} option is used, the
630 runtime search path will be formed exclusively using the @code{-rpath}
631 options, ignoring the @code{-L} options. This can be useful when using
632 gcc, which adds many @code{-L} options which may be on NFS mounted
633 filesystems.
634
635 For compatibility with other ELF linkers, if the @code{-R} option is
636 followed by a directory name, rather than a file name, it is treated as
637 the @code{-rpath} option.
638 @end ifset
639
640 @ifset GENERIC
641 @cindex link-time runtime library search path
642 @kindex -rpath-link
643 @item -rpath-link @var{DIR}
644 When using ELF or SunOS, one shared library may require another. This
645 happens when an @code{ld -shared} link includes a shared library as one
646 of the input files.
647
648 When the linker encounters such a dependency when doing a non-shared,
649 non-relocateable link, it will automatically try to locate the required
650 shared library and include it in the link, if it is not included
651 explicitly. In such a case, the @code{-rpath-link} option
652 specifies the first set of directories to search. The
653 @code{-rpath-link} option may specify a sequence of directory names
654 either by specifying a list of names separated by colons, or by
655 appearing multiple times.
656
657 The linker uses the following search paths to locate required shared
658 libraries.
659 @enumerate
660 @item
661 Any directories specified by @code{-rpath-link} options.
662 @item
663 Any directories specified by @code{-rpath} options. The difference
664 between @code{-rpath} and @code{-rpath-link} is that directories
665 specified by @code{-rpath} options are included in the executable and
666 used at runtime, whereas the @code{-rpath-link} option is only effective
667 at link time.
668 @item
669 On an ELF system, if the @code{-rpath} and @code{rpath-link} options
670 were not used, search the contents of the environment variable
671 @code{LD_RUN_PATH}.
672 @item
673 On SunOS, if the @code{-rpath} option was not used, search any
674 directories specified using @code{-L} options.
675 @item
676 For a native linker, the contents of the environment variable
677 @code{LD_LIBRARY_PATH}.
678 @item
679 The default directories, normally @file{/lib} and @file{/usr/lib}.
680 @end enumerate
681
682 If the required shared library is not found, the linker will issue a
683 warning and continue with the link.
684 @end ifset
685
686 @cindex partial link
687 @cindex relocatable output
688 @kindex -r
689 @item -r
690 Generate relocatable output---i.e., generate an output file that can in
691 turn serve as input to @code{ld}. This is often called @dfn{partial
692 linking}. As a side effect, in environments that support standard Unix
693 magic numbers, this option also sets the output file's magic number to
694 @code{OMAGIC}.
695 @c ; see @code{-N}.
696 If this option is not specified, an absolute file is produced. When
697 linking C++ programs, this option @emph{will not} resolve references to
698 constructors; to do that, use @samp{-Ur}.
699
700 This option does the same thing as @samp{-i}.
701
702 @kindex -S
703 @cindex strip debugger symbols
704 @item -S
705 Omit debugger symbol information (but not all symbols) from the output file.
706
707 @kindex -s
708 @cindex strip all symbols
709 @item -s
710 Omit all symbol information from the output file.
711
712 @ifset GENERIC
713 @cindex runtime library name
714 @kindex -soname
715 @item -soname @var{name}
716 When creating an ELF shared object, set the internal DT_SONAME field to
717 the specified name. When an executable is linked with a shared object
718 which has a DT_SONAME field, then when the executable is run the dynamic
719 linker will attempt to load the shared object specified by the DT_SONAME
720 field rather than the using the file name given to the linker.
721 @end ifset
722
723 @item -shared
724 @cindex shared libraries
725 @kindex -shared
726 Create a shared library. This is currently only supported on ELF and
727 SunOS platforms. On SunOS, the linker will automatically create a
728 shared library if the @code{-e} option is not used and there are
729 undefined symbols in the link.
730
731 @item -sort-common
732 @kindex -sort-common
733 Normally, when @code{ld} places the global common symbols in the
734 appropriate output sections, it sorts them by size. First come all the
735 one byte symbols, then all the two bytes, then all the four bytes, and
736 then everything else. This is to prevent gaps between symbols due to
737 alignment constraints. This option disables that sorting.
738
739 @kindex split
740 @item -split-by-reloc @var{count}
741 Trys to creates extra sections in the output file so that no single output section
742 in the file contains more than @var{count} relocations. This
743 is useful when generating huge relocatable for downloading into
744 certain real time kernels with the COFF object file format; since
745 COFF cannot represent more than 65535 relocations in a single section.
746 Note that this will fail to work with object file formats which do not
747 support arbitrary sections. The linker will not split up individual input
748 sections for redistribution, so if a single input section contains
749 more than @var{count} relocations one output section will contain that
750 many relocations.
751
752 @kindex split
753 @item -split-by-file
754 Similar to -split-by-reloc but creates a new output section for each
755 input file.
756
757 @item -stats
758 Compute and display statistics about the operation of the linker,
759 such as execution time and memory usage.
760
761 @kindex -Tbss @var{org}
762 @kindex -Tdata @var{org}
763 @kindex -Ttext @var{org}
764 @cindex segment origins, cmd line
765 @item -Tbss @var{org}
766 @itemx -Tdata @var{org}
767 @itemx -Ttext @var{org}
768 Use @var{org} as the starting address for---respectively---the
769 @code{bss}, @code{data}, or the @code{text} segment of the output file.
770 @var{org} must be a single hexadecimal integer;
771 for compatibility with other linkers, you may omit the leading
772 @samp{0x} usually associated with hexadecimal values.
773
774 @kindex -T @var{script}
775 @cindex script files
776 @item -T @var{commandfile}
777 @itemx -T@var{commandfile}
778 Read link commands from the file @var{commandfile}. These commands
779 replace @code{ld}'s default link script (rather than adding
780 to it), so @var{commandfile} must specify everything necessary to describe
781 the target format. @xref{Commands}. If @var{commandfile} does not
782 exist, @code{ld} looks for it in the directories specified by any
783 preceding @samp{-L} options. Multiple @samp{-T} options accumulate.
784
785 @kindex -t
786 @cindex input files, displaying
787 @item -t
788 Print the names of the input files as @code{ld} processes them.
789
790 @kindex -traditional-format
791 @cindex traditional format
792 @item -traditional-format
793 For some targets, the output of @code{ld} is different in some ways from
794 the output of some existing linker. This switch requests @code{ld} to
795 use the traditional format instead.
796
797 @cindex dbx
798 For example, on SunOS, @code{ld} combines duplicate entries in the
799 symbol string table. This can reduce the size of an output file with
800 full debugging information by over 30 percent. Unfortunately, the SunOS
801 @code{dbx} program can not read the resulting program (@code{gdb} has no
802 trouble). The @samp{-traditional-format} switch tells @code{ld} to not
803 combine duplicate entries.
804
805 @kindex -u @var{symbol}
806 @cindex undefined symbol
807 @item -u @var{symbol}
808 Force @var{symbol} to be entered in the output file as an undefined symbol.
809 Doing this may, for example, trigger linking of additional modules from
810 standard libraries. @samp{-u} may be repeated with different option
811 arguments to enter additional undefined symbols.
812 @c Nice idea, but no such command: This option is equivalent
813 @c to the @code{EXTERN} linker command.
814
815 @kindex -Ur
816 @cindex constructors
817 @item -Ur
818 For anything other than C++ programs, this option is equivalent to
819 @samp{-r}: it generates relocatable output---i.e., an output file that can in
820 turn serve as input to @code{ld}. When linking C++ programs, @samp{-Ur}
821 @emph{does} resolve references to constructors, unlike @samp{-r}.
822 It does not work to use @samp{-Ur} on files that were themselves linked
823 with @samp{-Ur}; once the constructor table has been built, it cannot
824 be added to. Use @samp{-Ur} only for the last partial link, and
825 @samp{-r} for the others.
826
827 @kindex --verbose
828 @cindex verbose
829 @item --verbose
830 Display the version number for @code{ld} and list the linker emulations
831 supported. Display which input files can and cannot be opened. Display
832 the linker script if using a default builtin script.
833
834 @kindex -v
835 @kindex -V
836 @cindex version
837 @item -v
838 @itemx -V
839 Display the version number for @code{ld}. The @code{-V} option also
840 lists the supported emulations.
841
842 @kindex -version
843 @item -version
844 Display the version number for @code{ld} and exit.
845
846 @kindex -warn-comon
847 @cindex warnings, on combining symbols
848 @cindex combining symbols, warnings on
849 @item -warn-common
850 Warn when a common symbol is combined with another common symbol or with
851 a symbol definition. Unix linkers allow this somewhat sloppy practice,
852 but linkers on some other operating systems do not. This option allows
853 you to find potential problems from combining global symbols.
854 Unfortunately, some C libraries use this practice, so you may get some
855 warnings about symbols in the libraries as well as in your programs.
856
857 There are three kinds of global symbols, illustrated here by C examples:
858
859 @table @samp
860 @item int i = 1;
861 A definition, which goes in the initialized data section of the output
862 file.
863
864 @item extern int i;
865 An undefined reference, which does not allocate space.
866 There must be either a definition or a common symbol for the
867 variable somewhere.
868
869 @item int i;
870 A common symbol. If there are only (one or more) common symbols for a
871 variable, it goes in the uninitialized data area of the output file.
872 The linker merges multiple common symbols for the same variable into a
873 single symbol. If they are of different sizes, it picks the largest
874 size. The linker turns a common symbol into a declaration, if there is
875 a definition of the same variable.
876 @end table
877
878 The @samp{-warn-common} option can produce five kinds of warnings. Each
879 warning consists of a pair of lines: the first describes the symbol just
880 encountered, and the second describes the previous symbol encountered
881 with the same name. One or both of the two symbols will be a common
882 symbol.
883
884 @enumerate
885 @item
886 Turning a common symbol into a reference, because there is already a
887 definition for the symbol.
888 @smallexample
889 @var{file}(@var{section}): warning: common of `@var{symbol}'
890 overridden by definition
891 @var{file}(@var{section}): warning: defined here
892 @end smallexample
893
894 @item
895 Turning a common symbol into a reference, because a later definition for
896 the symbol is encountered. This is the same as the previous case,
897 except that the symbols are encountered in a different order.
898 @smallexample
899 @var{file}(@var{section}): warning: definition of `@var{symbol}'
900 overriding common
901 @var{file}(@var{section}): warning: common is here
902 @end smallexample
903
904 @item
905 Merging a common symbol with a previous same-sized common symbol.
906 @smallexample
907 @var{file}(@var{section}): warning: multiple common
908 of `@var{symbol}'
909 @var{file}(@var{section}): warning: previous common is here
910 @end smallexample
911
912 @item
913 Merging a common symbol with a previous larger common symbol.
914 @smallexample
915 @var{file}(@var{section}): warning: common of `@var{symbol}'
916 overridden by larger common
917 @var{file}(@var{section}): warning: larger common is here
918 @end smallexample
919
920 @item
921 Merging a common symbol with a previous smaller common symbol. This is
922 the same as the previous case, except that the symbols are
923 encountered in a different order.
924 @smallexample
925 @var{file}(@var{section}): warning: common of `@var{symbol}'
926 overriding smaller common
927 @var{file}(@var{section}): warning: smaller common is here
928 @end smallexample
929 @end enumerate
930
931 @kindex -warn-constructors
932 @item -warn-constructors
933 Warn if any global constructors are used. This is only useful for a few
934 object file formats. For formats like COFF or ELF, the linker can not
935 detect the use of global constructors.
936
937 @kindex -warn-multiple-gp
938 @item -warn-multiple-gp
939 Warn if multiple global pointer values are required in the output file.
940 This is only meaningful for certain processors, such as the Alpha.
941 Specifically, some processors put large-valued constants in a special
942 section. A special register (the global pointer) points into the middle
943 of this section, so that constants can be loaded efficiently via a
944 base-register relative addressing mode. Since the offset in
945 base-register relative mode is fixed and relatively small (e.g., 16
946 bits), this limits the maximum size of the constant pool. Thus, in
947 large programs, it is often necessary to use multiple global pointer
948 values in order to be able to address all possible constants. This
949 option causes a warning to be issued whenever this case occurs.
950
951 @kindex -warn-once
952 @cindex warnings, on undefined symbols
953 @cindex undefined symbols, warnings on
954 @item -warn-once
955 Only warn once for each undefined symbol, rather than once per module
956 which refers to it.
957
958 @kindex --whole-archive
959 @cindex including an entire archive
960 @item --whole-archive
961 For each archive mentioned on the command line after the
962 @code{--whole-archive} option, include every object file in the archive
963 in the link, rather than searching the archive for the required object
964 files. This is normally used to turn an archive file into a shared
965 library, forcing every object to be included in the resulting shared
966 library.
967
968 @kindex --no-whole-archive
969 @item --no-whole-archive
970 Turn off the effect of the @code{--whole-archive} option for archives
971 which appear later on the command line.
972
973 @kindex --wrap
974 @item --wrap @var{symbol}
975 Use a wrapper function for @var{symbol}. Any undefined reference to
976 @var{symbol} will be resolved to @code{__wrap_@var{symbol}}. Any
977 undefined reference to @code{__real_@var{symbol}} will be resolved to
978 @var{symbol}.
979
980 This can be used to provide a wrapper for a system function. The
981 wrapper function should be called @code{__wrap_@var{symbol}}. If it
982 wishes to call the system function, it should call
983 @code{__real_@var{symbol}}.
984
985 Here is a trivial example:
986
987 @smallexample
988 void *
989 __wrap_malloc (int c)
990 @{
991 printf ("malloc called with %ld\n", c);
992 return __real_malloc (c);
993 @}
994 @end smallexample
995
996 If you link other code with this file using @code{--wrap malloc}, then
997 all calls to @code{malloc} will call the function @code{__wrap_malloc}
998 instead. The call to @code{__real_malloc} in @code{__wrap_malloc} will
999 call the real @code{malloc} function.
1000
1001 You may wish to provide a @code{__real_malloc} function as well, so that
1002 links without the @code{--wrap} option will succeed. If you do this,
1003 you should not put the definition of @code{__real_malloc} in the same
1004 file as @code{__wrap_malloc}; if you do, the assembler may resolve the
1005 call before the linker has a chance to wrap it to @code{malloc}.
1006
1007 @kindex -X
1008 @cindex local symbols, deleting
1009 @cindex L, deleting symbols beginning
1010 @item -X
1011 Delete all temporary local symbols. For most targets, this is all local
1012 symbols whose names begin with @samp{L}.
1013
1014 @kindex -x
1015 @cindex deleting local symbols
1016 @item -x
1017 Delete all local symbols.
1018
1019 @kindex -y @var{symbol}
1020 @cindex symbol tracing
1021 @item -y @var{symbol}
1022 Print the name of each linked file in which @var{symbol} appears. This
1023 option may be given any number of times. On many systems it is necessary
1024 to prepend an underscore.
1025
1026 This option is useful when you have an undefined symbol in your link but
1027 don't know where the reference is coming from.
1028
1029 @kindex -(
1030 @cindex groups of archives
1031 @item -( @var{archives} -)
1032 @itemx --start-group @var{archives} --end-group
1033 The @var{archives} should be a list of archive files. They may be
1034 either explicit file names, or @samp{-l} options.
1035
1036 The specified archives are searched repeatedly until no new undefined
1037 references are created. Normally, an archive is searched only once in
1038 the order that it is specified on the command line. If a symbol in that
1039 archive is needed to resolve an undefined symbol referred to by an
1040 object in an archive that appears later on the command line, the linker
1041 would not be able to resolve that reference. By grouping the archives,
1042 they all be searched repeatedly until all possible references are
1043 resolved.
1044
1045 Using this option has a significant performance cost. It is best to use
1046 it only when there are unavoidable circular references between two or
1047 more archives.
1048 @end table
1049
1050 @ifset UsesEnvVars
1051 @node Environment
1052 @section Environment Variables
1053
1054 You can change the behavior of @code{ld} with the environment
1055 variable @code{GNUTARGET}.
1056
1057 @kindex GNUTARGET
1058 @cindex default input format
1059 @code{GNUTARGET} determines the input-file object format if you don't
1060 use @samp{-b} (or its synonym @samp{-format}). Its value should be one
1061 of the BFD names for an input format (@pxref{BFD}). If there is no
1062 @code{GNUTARGET} in the environment, @code{ld} uses the natural format
1063 of the target. If @code{GNUTARGET} is set to @code{default} then BFD attempts to discover the
1064 input format by examining binary input files; this method often
1065 succeeds, but there are potential ambiguities, since there is no method
1066 of ensuring that the magic number used to specify object-file formats is
1067 unique. However, the configuration procedure for BFD on each system
1068 places the conventional format for that system first in the search-list,
1069 so ambiguities are resolved in favor of convention.
1070 @end ifset
1071
1072 @node Commands
1073 @chapter Command Language
1074
1075 @cindex command files
1076 The command language provides explicit control over the link process,
1077 allowing complete specification of the mapping between the linker's
1078 input files and its output. It controls:
1079 @itemize @bullet
1080 @item
1081 input files
1082 @item
1083 file formats
1084 @item
1085 output file layout
1086 @item
1087 addresses of sections
1088 @item
1089 placement of common blocks
1090 @end itemize
1091
1092 You may supply a command file (also known as a link script) to the
1093 linker either explicitly through the @samp{-T} option, or implicitly as
1094 an ordinary file. If the linker opens a file which it cannot recognize
1095 as a supported object or archive format, it reports an error.
1096
1097 @menu
1098 * Scripts:: Linker Scripts
1099 * Expressions:: Expressions
1100 * MEMORY:: MEMORY Command
1101 * SECTIONS:: SECTIONS Command
1102 * PHDRS:: PHDRS Command
1103 * Entry Point:: The Entry Point
1104 * Option Commands:: Option Commands
1105 @end menu
1106
1107 @node Scripts
1108 @section Linker Scripts
1109 The @code{ld} command language is a collection of statements; some are
1110 simple keywords setting a particular option, some are used to select and
1111 group input files or name output files; and two statement
1112 types have a fundamental and pervasive impact on the linking process.
1113
1114 @cindex fundamental script commands
1115 @cindex commands, fundamental
1116 @cindex output file layout
1117 @cindex layout of output file
1118 The most fundamental command of the @code{ld} command language is the
1119 @code{SECTIONS} command (@pxref{SECTIONS}). Every meaningful command
1120 script must have a @code{SECTIONS} command: it specifies a
1121 ``picture'' of the output file's layout, in varying degrees of detail.
1122 No other command is required in all cases.
1123
1124 The @code{MEMORY} command complements @code{SECTIONS} by describing the
1125 available memory in the target architecture. This command is optional;
1126 if you don't use a @code{MEMORY} command, @code{ld} assumes sufficient
1127 memory is available in a contiguous block for all output.
1128 @xref{MEMORY}.
1129
1130 @cindex comments
1131 You may include comments in linker scripts just as in C: delimited
1132 by @samp{/*} and @samp{*/}. As in C, comments are syntactically
1133 equivalent to whitespace.
1134
1135 @node Expressions
1136 @section Expressions
1137 @cindex expression syntax
1138 @cindex arithmetic
1139 Many useful commands involve arithmetic expressions. The syntax for
1140 expressions in the command language is identical to that of C
1141 expressions, with the following features:
1142 @itemize @bullet
1143 @item
1144 All expressions evaluated as integers and
1145 are of ``long'' or ``unsigned long'' type.
1146 @item
1147 All constants are integers.
1148 @item
1149 All of the C arithmetic operators are provided.
1150 @item
1151 You may reference, define, and create global variables.
1152 @item
1153 You may call special purpose built-in functions.
1154 @end itemize
1155
1156 @menu
1157 * Integers:: Integers
1158 * Symbols:: Symbol Names
1159 * Location Counter:: The Location Counter
1160 * Operators:: Operators
1161 * Evaluation:: Evaluation
1162 * Assignment:: Assignment: Defining Symbols
1163 * Arithmetic Functions:: Built-In Functions
1164 @end menu
1165
1166 @node Integers
1167 @subsection Integers
1168 @cindex integer notation
1169 @cindex octal integers
1170 An octal integer is @samp{0} followed by zero or more of the octal
1171 digits (@samp{01234567}).
1172 @smallexample
1173 _as_octal = 0157255;
1174 @end smallexample
1175
1176 @cindex decimal integers
1177 A decimal integer starts with a non-zero digit followed by zero or
1178 more digits (@samp{0123456789}).
1179 @smallexample
1180 _as_decimal = 57005;
1181 @end smallexample
1182
1183 @cindex hexadecimal integers
1184 @kindex 0x
1185 A hexadecimal integer is @samp{0x} or @samp{0X} followed by one or
1186 more hexadecimal digits chosen from @samp{0123456789abcdefABCDEF}.
1187 @smallexample
1188 _as_hex = 0xdead;
1189 @end smallexample
1190
1191 @cindex negative integers
1192 To write a negative integer, use
1193 the prefix operator @samp{-} (@pxref{Operators}).
1194 @smallexample
1195 _as_neg = -57005;
1196 @end smallexample
1197
1198 @cindex scaled integers
1199 @cindex K and M integer suffixes
1200 @cindex M and K integer suffixes
1201 @cindex suffixes for integers
1202 @cindex integer suffixes
1203 Additionally the suffixes @code{K} and @code{M} may be used to scale a
1204 constant by
1205 @c TEXI2ROFF-KILL
1206 @ifinfo
1207 @c END TEXI2ROFF-KILL
1208 @code{1024} or @code{1024*1024}
1209 @c TEXI2ROFF-KILL
1210 @end ifinfo
1211 @tex
1212 ${\rm 1024}$ or ${\rm 1024}^2$
1213 @end tex
1214 @c END TEXI2ROFF-KILL
1215 respectively. For example, the following all refer to the same quantity:
1216
1217 @smallexample
1218 _fourk_1 = 4K;
1219 _fourk_2 = 4096;
1220 _fourk_3 = 0x1000;
1221 @end smallexample
1222
1223 @node Symbols
1224 @subsection Symbol Names
1225 @cindex symbol names
1226 @cindex names
1227 @cindex quoted symbol names
1228 @kindex "
1229 Unless quoted, symbol names start with a letter, underscore, or point
1230 and may include any letters, underscores, digits, points,
1231 and hyphens. Unquoted symbol names must not conflict with any
1232 keywords. You can specify a symbol which contains odd characters or has
1233 the same name as a keyword, by surrounding the symbol name in double quotes:
1234 @smallexample
1235 "SECTION" = 9;
1236 "with a space" = "also with a space" + 10;
1237 @end smallexample
1238
1239 Since symbols can contain many non-alphabetic characters, it is safest
1240 to delimit symbols with spaces. For example, @samp{A-B} is one symbol,
1241 whereas @samp{A - B} is an expression involving subtraction.
1242
1243 @node Location Counter
1244 @subsection The Location Counter
1245 @kindex .
1246 @cindex dot
1247 @cindex location counter
1248 @cindex current output location
1249 The special linker variable @dfn{dot} @samp{.} always contains the
1250 current output location counter. Since the @code{.} always refers to
1251 a location in an output section, it must always appear in an
1252 expression within a @code{SECTIONS} command. The @code{.} symbol
1253 may appear anywhere that an ordinary symbol is allowed in an
1254 expression, but its assignments have a side effect. Assigning a value
1255 to the @code{.} symbol will cause the location counter to be moved.
1256 @cindex holes
1257 This may be used to create holes in the output section. The location
1258 counter may never be moved backwards.
1259 @smallexample
1260 SECTIONS
1261 @{
1262 output :
1263 @{
1264 file1(.text)
1265 . = . + 1000;
1266 file2(.text)
1267 . += 1000;
1268 file3(.text)
1269 @} = 0x1234;
1270 @}
1271 @end smallexample
1272 @noindent
1273 In the previous example, @code{file1} is located at the beginning of the
1274 output section, then there is a 1000 byte gap. Then @code{file2}
1275 appears, also with a 1000 byte gap following before @code{file3} is
1276 loaded. The notation @samp{= 0x1234} specifies what data to write in
1277 the gaps (@pxref{Section Options}).
1278
1279 @iftex
1280 @vfill
1281 @end iftex
1282
1283 @need 2000
1284 @node Operators
1285 @subsection Operators
1286 @cindex Operators for arithmetic
1287 @cindex arithmetic operators
1288 @cindex precedence in expressions
1289 The linker recognizes the standard C set of arithmetic operators, with
1290 the standard bindings and precedence levels:
1291 @c TEXI2ROFF-KILL
1292 @ifinfo
1293 @c END TEXI2ROFF-KILL
1294 @smallexample
1295 precedence associativity Operators Notes
1296 (highest)
1297 1 left ! - ~ (1)
1298 2 left * / %
1299 3 left + -
1300 4 left >> <<
1301 5 left == != > < <= >=
1302 6 left &
1303 7 left |
1304 8 left &&
1305 9 left ||
1306 10 right ? :
1307 11 right &= += -= *= /= (2)
1308 (lowest)
1309 @end smallexample
1310 Notes:
1311 (1) Prefix operators
1312 (2) @xref{Assignment}.
1313 @c TEXI2ROFF-KILL
1314 @end ifinfo
1315 @tex
1316 \vskip \baselineskip
1317 %"lispnarrowing" is the extra indent used generally for @smallexample
1318 \hskip\lispnarrowing\vbox{\offinterlineskip
1319 \hrule
1320 \halign
1321 {\vrule#&\strut\hfil\ #\ \hfil&\vrule#&\strut\hfil\ #\ \hfil&\vrule#&\strut\hfil\ {\tt #}\ \hfil&\vrule#\cr
1322 height2pt&\omit&&\omit&&\omit&\cr
1323 &Precedence&& Associativity &&{\rm Operators}&\cr
1324 height2pt&\omit&&\omit&&\omit&\cr
1325 \noalign{\hrule}
1326 height2pt&\omit&&\omit&&\omit&\cr
1327 &highest&&&&&\cr
1328 % '176 is tilde, '~' in tt font
1329 &1&&left&&\qquad- \char'176\ !\qquad\dag&\cr
1330 &2&&left&&* / \%&\cr
1331 &3&&left&&+ -&\cr
1332 &4&&left&&>> <<&\cr
1333 &5&&left&&== != > < <= >=&\cr
1334 &6&&left&&\&&\cr
1335 &7&&left&&|&\cr
1336 &8&&left&&{\&\&}&\cr
1337 &9&&left&&||&\cr
1338 &10&&right&&? :&\cr
1339 &11&&right&&\qquad\&= += -= *= /=\qquad\ddag&\cr
1340 &lowest&&&&&\cr
1341 height2pt&\omit&&\omit&&\omit&\cr}
1342 \hrule}
1343 @end tex
1344 @iftex
1345 {
1346 @obeylines@parskip=0pt@parindent=0pt
1347 @dag@quad Prefix operators.
1348 @ddag@quad @xref{Assignment}.
1349 }
1350 @end iftex
1351 @c END TEXI2ROFF-KILL
1352
1353 @node Evaluation
1354 @subsection Evaluation
1355
1356 @cindex lazy evaluation
1357 @cindex expression evaluation order
1358 The linker uses ``lazy evaluation'' for expressions; it only calculates
1359 an expression when absolutely necessary. The linker needs the value of
1360 the start address, and the lengths of memory regions, in order to do any
1361 linking at all; these values are computed as soon as possible when the
1362 linker reads in the command file. However, other values (such as symbol
1363 values) are not known or needed until after storage allocation. Such
1364 values are evaluated later, when other information (such as the sizes of
1365 output sections) is available for use in the symbol assignment
1366 expression.
1367
1368 @node Assignment
1369 @subsection Assignment: Defining Symbols
1370 @cindex assignment in scripts
1371 @cindex symbol definition, scripts
1372 @cindex variables, defining
1373 You may create global symbols, and assign values (addresses) to global
1374 symbols, using any of the C assignment operators:
1375
1376 @table @code
1377 @item @var{symbol} = @var{expression} ;
1378 @itemx @var{symbol} &= @var{expression} ;
1379 @itemx @var{symbol} += @var{expression} ;
1380 @itemx @var{symbol} -= @var{expression} ;
1381 @itemx @var{symbol} *= @var{expression} ;
1382 @itemx @var{symbol} /= @var{expression} ;
1383 @end table
1384
1385 Two things distinguish assignment from other operators in @code{ld}
1386 expressions.
1387 @itemize @bullet
1388 @item
1389 Assignment may only be used at the root of an expression;
1390 @samp{a=b+3;} is allowed, but @samp{a+b=3;} is an error.
1391
1392 @kindex ;
1393 @cindex semicolon
1394 @item
1395 You must place a trailing semicolon (``@key{;}'') at the end of an
1396 assignment statement.
1397 @end itemize
1398
1399 Assignment statements may appear:
1400 @itemize @bullet
1401 @item
1402 as commands in their own right in an @code{ld} script; or
1403 @item
1404 as independent statements within a @code{SECTIONS} command; or
1405 @item
1406 as part of the contents of a section definition in a
1407 @code{SECTIONS} command.
1408 @end itemize
1409
1410 The first two cases are equivalent in effect---both define a symbol with
1411 an absolute address. The last case defines a symbol whose address is
1412 relative to a particular section (@pxref{SECTIONS}).
1413
1414 @cindex absolute and relocatable symbols
1415 @cindex relocatable and absolute symbols
1416 @cindex symbols, relocatable and absolute
1417 When a linker expression is evaluated and assigned to a variable, it is
1418 given either an absolute or a relocatable type. An absolute expression
1419 type is one in which the symbol contains the value that it will have in
1420 the output file; a relocatable expression type is one in which the
1421 value is expressed as a fixed offset from the base of a section.
1422
1423 The type of the expression is controlled by its position in the script
1424 file. A symbol assigned within a section definition is created relative
1425 to the base of the section; a symbol assigned in any other place is
1426 created as an absolute symbol. Since a symbol created within a
1427 section definition is relative to the base of the section, it
1428 will remain relocatable if relocatable output is requested. A symbol
1429 may be created with an absolute value even when assigned to within a
1430 section definition by using the absolute assignment function
1431 @code{ABSOLUTE}. For example, to create an absolute symbol whose address
1432 is the last byte of an output section named @code{.data}:
1433 @smallexample
1434 SECTIONS@{ @dots{}
1435 .data :
1436 @{
1437 *(.data)
1438 _edata = ABSOLUTE(.) ;
1439 @}
1440 @dots{} @}
1441 @end smallexample
1442
1443 The linker tries to put off the evaluation of an assignment until all
1444 the terms in the source expression are known (@pxref{Evaluation}). For
1445 instance, the sizes of sections cannot be known until after allocation,
1446 so assignments dependent upon these are not performed until after
1447 allocation. Some expressions, such as those depending upon the location
1448 counter @dfn{dot}, @samp{.} must be evaluated during allocation. If the
1449 result of an expression is required, but the value is not available,
1450 then an error results. For example, a script like the following
1451 @smallexample
1452 SECTIONS @{ @dots{}
1453 text 9+this_isnt_constant :
1454 @{ @dots{}
1455 @}
1456 @dots{} @}
1457 @end smallexample
1458 @kindex Non constant expression
1459 @noindent
1460 will cause the error message ``@code{Non constant expression for initial
1461 address}''.
1462
1463 @cindex provide
1464 In some cases, it is desirable for a linker script to define a symbol
1465 only if it is referenced, and only if it is not defined by any object
1466 included in the link. For example, traditional linkers defined the
1467 symbol @samp{etext}. However, ANSI C requires that the user be able to
1468 use @samp{etext} as a function name without encountering an error.
1469 The @code{PROVIDE} keyword may be used to define a symbol, such as
1470 @samp{etext}, only if it is referenced but not defined. The syntax is
1471 @code{PROVIDE(@var{symbol} = @var{expression})}.
1472
1473 @node Arithmetic Functions
1474 @subsection Arithmetic Functions
1475 @cindex functions in expression language
1476 The command language includes a number of built-in
1477 functions for use in link script expressions.
1478 @table @code
1479 @kindex ABSOLUTE(@var{exp})
1480 @cindex expression, absolute
1481 @item ABSOLUTE(@var{exp})
1482 Return the absolute (non-relocatable, as opposed to non-negative) value
1483 of the expression @var{exp}. Primarily useful to assign an absolute
1484 value to a symbol within a section definition, where symbol values are
1485 normally section-relative.
1486
1487 @kindex ADDR(@var{section})
1488 @cindex section address
1489 @item ADDR(@var{section})
1490 Return the absolute address of the named @var{section}. Your script must
1491 previously have defined the location of that section. In the following
1492 example, @code{symbol_1} and @code{symbol_2} are assigned identical
1493 values:
1494 @smallexample
1495 @group
1496 SECTIONS@{ @dots{}
1497 .output1 :
1498 @{
1499 start_of_output_1 = ABSOLUTE(.);
1500 @dots{}
1501 @}
1502 .output :
1503 @{
1504 symbol_1 = ADDR(.output1);
1505 symbol_2 = start_of_output_1;
1506 @}
1507 @dots{} @}
1508 @end group
1509 @end smallexample
1510
1511 @kindex ALIGN(@var{exp})
1512 @cindex rounding up location counter
1513 @item ALIGN(@var{exp})
1514 Return the result of the current location counter (@code{.}) aligned to
1515 the next @var{exp} boundary. @var{exp} must be an expression whose
1516 value is a power of two. This is equivalent to
1517 @smallexample
1518 (. + @var{exp} - 1) & ~(@var{exp} - 1)
1519 @end smallexample
1520
1521 @code{ALIGN} doesn't change the value of the location counter---it just
1522 does arithmetic on it. As an example, to align the output @code{.data}
1523 section to the next @code{0x2000} byte boundary after the preceding
1524 section and to set a variable within the section to the next
1525 @code{0x8000} boundary after the input sections:
1526 @smallexample
1527 @group
1528 SECTIONS@{ @dots{}
1529 .data ALIGN(0x2000): @{
1530 *(.data)
1531 variable = ALIGN(0x8000);
1532 @}
1533 @dots{} @}
1534 @end group
1535 @end smallexample
1536 @noindent
1537 The first use of @code{ALIGN} in this example specifies the location of
1538 a section because it is used as the optional @var{start} attribute of a
1539 section definition (@pxref{Section Options}). The second use simply
1540 defines the value of a variable.
1541
1542 The built-in @code{NEXT} is closely related to @code{ALIGN}.
1543
1544 @kindex DEFINED(@var{symbol})
1545 @cindex symbol defaults
1546 @item DEFINED(@var{symbol})
1547 Return 1 if @var{symbol} is in the linker global symbol table and is
1548 defined, otherwise return 0. You can use this function to provide default
1549 values for symbols. For example, the following command-file fragment shows how
1550 to set a global symbol @code{begin} to the first location in the
1551 @code{.text} section---but if a symbol called @code{begin} already
1552 existed, its value is preserved:
1553
1554 @smallexample
1555 @group
1556 SECTIONS@{ @dots{}
1557 .text : @{
1558 begin = DEFINED(begin) ? begin : . ;
1559 @dots{}
1560 @}
1561 @dots{} @}
1562 @end group
1563 @end smallexample
1564
1565 @kindex NEXT(@var{exp})
1566 @cindex unallocated address, next
1567 @item NEXT(@var{exp})
1568 Return the next unallocated address that is a multiple of @var{exp}.
1569 This function is closely related to @code{ALIGN(@var{exp})}; unless you
1570 use the @code{MEMORY} command to define discontinuous memory for the
1571 output file, the two functions are equivalent.
1572
1573 @kindex SIZEOF(@var{section})
1574 @cindex section size
1575 @item SIZEOF(@var{section})
1576 Return the size in bytes of the named @var{section}, if that section has
1577 been allocated. In the following example, @code{symbol_1} and
1578 @code{symbol_2} are assigned identical values:
1579 @c What does it return if the section hasn't been allocated? 0?
1580 @smallexample
1581 @group
1582 SECTIONS@{ @dots{}
1583 .output @{
1584 .start = . ;
1585 @dots{}
1586 .end = . ;
1587 @}
1588 symbol_1 = .end - .start ;
1589 symbol_2 = SIZEOF(.output);
1590 @dots{} @}
1591 @end group
1592 @end smallexample
1593
1594 @kindex SIZEOF_HEADERS
1595 @cindex header size
1596 @kindex sizeof_headers
1597 @item SIZEOF_HEADERS
1598 @itemx sizeof_headers
1599 Return the size in bytes of the output file's headers. You can use this number
1600 as the start address of the first section, if you choose, to facilitate
1601 paging.
1602
1603 @end table
1604
1605 @node MEMORY
1606 @section Memory Layout
1607 @kindex MEMORY
1608 @cindex regions of memory
1609 @cindex discontinuous memory
1610 @cindex allocating memory
1611 The linker's default configuration permits allocation of all available memory.
1612 You can override this configuration by using the @code{MEMORY} command. The
1613 @code{MEMORY} command describes the location and size of blocks of
1614 memory in the target. By using it carefully, you can describe which
1615 memory regions may be used by the linker, and which memory regions it
1616 must avoid. The linker does not shuffle sections to fit into the
1617 available regions, but does move the requested sections into the correct
1618 regions and issue errors when the regions become too full.
1619
1620 A command file may contain at most one use of the @code{MEMORY}
1621 command; however, you can define as many blocks of memory within it as
1622 you wish. The syntax is:
1623
1624 @smallexample
1625 @group
1626 MEMORY
1627 @{
1628 @var{name} (@var{attr}) : ORIGIN = @var{origin}, LENGTH = @var{len}
1629 @dots{}
1630 @}
1631 @end group
1632 @end smallexample
1633 @table @code
1634 @cindex naming memory regions
1635 @item @var{name}
1636 is a name used internally by the linker to refer to the region. Any
1637 symbol name may be used. The region names are stored in a separate
1638 name space, and will not conflict with symbols, file names or section
1639 names. Use distinct names to specify multiple regions.
1640
1641 @cindex memory region attributes
1642 @item (@var{attr})
1643 is an optional list of attributes, permitted for compatibility with the
1644 AT&T linker but not used by @code{ld} beyond checking that the
1645 attribute list is valid. Valid attribute lists must be made up of the
1646 characters ``@code{LIRWX}''. If you omit the attribute list, you may
1647 omit the parentheses around it as well.
1648
1649 @kindex ORIGIN =
1650 @kindex o =
1651 @kindex org =
1652 @item @var{origin}
1653 is the start address of the region in physical memory. It is
1654 an expression that must evaluate to a constant before
1655 memory allocation is performed. The keyword @code{ORIGIN} may be
1656 abbreviated to @code{org} or @code{o} (but not, for example, @samp{ORG}).
1657
1658 @kindex LENGTH =
1659 @kindex len =
1660 @kindex l =
1661 @item @var{len}
1662 is the size in bytes of the region (an expression).
1663 The keyword @code{LENGTH} may be abbreviated to @code{len} or @code{l}.
1664 @end table
1665
1666 For example, to specify that memory has two regions available for
1667 allocation---one starting at 0 for 256 kilobytes, and the other
1668 starting at @code{0x40000000} for four megabytes:
1669
1670 @smallexample
1671 @group
1672 MEMORY
1673 @{
1674 rom : ORIGIN = 0, LENGTH = 256K
1675 ram : org = 0x40000000, l = 4M
1676 @}
1677 @end group
1678 @end smallexample
1679
1680 Once you have defined a region of memory named @var{mem}, you can direct
1681 specific output sections there by using a command ending in
1682 @samp{>@var{mem}} within the @code{SECTIONS} command (@pxref{Section
1683 Options}). If the combined output sections directed to a region are too
1684 big for the region, the linker will issue an error message.
1685
1686 @node SECTIONS
1687 @section Specifying Output Sections
1688
1689 @kindex SECTIONS
1690 The @code{SECTIONS} command controls exactly where input sections are
1691 placed into output sections, their order in the output file, and to
1692 which output sections they are allocated.
1693
1694 You may use at most one @code{SECTIONS} command in a script file,
1695 but you can have as many statements within it as you wish. Statements
1696 within the @code{SECTIONS} command can do one of three things:
1697
1698 @itemize @bullet
1699 @item
1700 define the entry point;
1701
1702 @item
1703 assign a value to a symbol;
1704
1705 @item
1706 describe the placement of a named output section, and which input
1707 sections go into it.
1708 @end itemize
1709
1710 You can also use the first two operations---defining the entry point and
1711 defining symbols---outside the @code{SECTIONS} command: @pxref{Entry
1712 Point}, and @ref{Assignment}. They are permitted here as well for
1713 your convenience in reading the script, so that symbols and the entry
1714 point can be defined at meaningful points in your output-file layout.
1715
1716 If you do not use a @code{SECTIONS} command, the linker places each input
1717 section into an identically named output section in the order that the
1718 sections are first encountered in the input files. If all input sections
1719 are present in the first file, for example, the order of sections in the
1720 output file will match the order in the first input file.
1721
1722 @menu
1723 * Section Definition:: Section Definitions
1724 * Section Placement:: Section Placement
1725 * Section Data Expressions:: Section Data Expressions
1726 * Section Options:: Optional Section Attributes
1727 @end menu
1728
1729 @node Section Definition
1730 @subsection Section Definitions
1731 @cindex section definition
1732 The most frequently used statement in the @code{SECTIONS} command is
1733 the @dfn{section definition}, which specifies the
1734 properties of an output section: its location, alignment, contents,
1735 fill pattern, and target memory region. Most of
1736 these specifications are optional; the simplest form of a section
1737 definition is
1738 @smallexample
1739 SECTIONS @{ @dots{}
1740 @var{secname} : @{
1741 @var{contents}
1742 @}
1743 @dots{} @}
1744 @end smallexample
1745 @cindex naming output sections
1746 @noindent
1747 @var{secname} is the name of the output section, and @var{contents} a
1748 specification of what goes there---for example, a list of input files or
1749 sections of input files (@pxref{Section Placement}). As you might
1750 assume, the whitespace shown is optional. You do need the colon
1751 @samp{:} and the braces @samp{@{@}}, however.
1752
1753 @var{secname} must meet the constraints of your output format. In
1754 formats which only support a limited number of sections, such as
1755 @code{a.out}, the name must be one of the names supported by the format
1756 (@code{a.out}, for example, allows only @code{.text}, @code{.data} or
1757 @code{.bss}). If the output format supports any number of sections, but
1758 with numbers and not names (as is the case for Oasys), the name should be
1759 supplied as a quoted numeric string. A section name may consist of any
1760 sequence of characters, but any name which does not conform to the standard
1761 @code{ld} symbol name syntax must be quoted.
1762 @xref{Symbols, , Symbol Names}.
1763
1764 The special @var{secname} @samp{/DISCARD/} may be used to discard input
1765 sections. Any sections which are assigned to an output section named
1766 @samp{/DISCARD/} are not included in the final link output.
1767
1768 The linker will not create output sections which do not have any
1769 contents. This is for convenience when referring to input sections that
1770 may or may not exist. For example,
1771 @smallexample
1772 .foo @{ *(.foo) @}
1773 @end smallexample
1774 will only create a @samp{.foo} section in the output file if there is a
1775 @samp{.foo} section in at least one input file.
1776
1777 @node Section Placement
1778 @subsection Section Placement
1779
1780 @cindex contents of a section
1781 In a section definition, you can specify the contents of an output
1782 section by listing particular input files, by listing particular
1783 input-file sections, or by a combination of the two. You can also place
1784 arbitrary data in the section, and define symbols relative to the
1785 beginning of the section.
1786
1787 The @var{contents} of a section definition may include any of the
1788 following kinds of statement. You can include as many of these as you
1789 like in a single section definition, separated from one another by
1790 whitespace.
1791
1792 @table @code
1793 @kindex @var{filename}
1794 @cindex input files, section defn
1795 @cindex files, including in output sections
1796 @item @var{filename}
1797 You may simply name a particular input file to be placed in the current
1798 output section; @emph{all} sections from that file are placed in the
1799 current section definition. If the file name has already been mentioned
1800 in another section definition, with an explicit section name list, then
1801 only those sections which have not yet been allocated are used.
1802
1803 To specify a list of particular files by name:
1804 @smallexample
1805 .data : @{ afile.o bfile.o cfile.o @}
1806 @end smallexample
1807 @noindent
1808 The example also illustrates that multiple statements can be included in
1809 the contents of a section definition, since each file name is a separate
1810 statement.
1811
1812 @kindex @var{filename}(@var{section})
1813 @cindex files and sections, section defn
1814 @item @var{filename}( @var{section} )
1815 @itemx @var{filename}( @var{section} , @var{section}, @dots{} )
1816 @itemx @var{filename}( @var{section} @var{section} @dots{} )
1817 You can name one or more sections from your input files, for
1818 insertion in the current output section. If you wish to specify a list
1819 of input-file sections inside the parentheses, you may separate the
1820 section names by either commas or whitespace.
1821
1822 @cindex input sections to output section
1823 @kindex *(@var{section})
1824 @item * (@var{section})
1825 @itemx * (@var{section}, @var{section}, @dots{})
1826 @itemx * (@var{section} @var{section} @dots{})
1827 Instead of explicitly naming particular input files in a link control
1828 script, you can refer to @emph{all} files from the @code{ld} command
1829 line: use @samp{*} instead of a particular file name before the
1830 parenthesized input-file section list.
1831
1832 If you have already explicitly included some files by name, @samp{*}
1833 refers to all @emph{remaining} files---those whose places in the output
1834 file have not yet been defined.
1835
1836 For example, to copy sections @code{1} through @code{4} from an Oasys file
1837 into the @code{.text} section of an @code{a.out} file, and sections @code{13}
1838 and @code{14} into the @code{.data} section:
1839 @smallexample
1840 @group
1841 SECTIONS @{
1842 .text :@{
1843 *("1" "2" "3" "4")
1844 @}
1845
1846 .data :@{
1847 *("13" "14")
1848 @}
1849 @}
1850 @end group
1851 @end smallexample
1852
1853 @cindex @code{[@var{section}@dots{}]}, not supported
1854 @samp{[ @var{section} @dots{} ]} used to be accepted as an alternate way
1855 to specify named sections from all unallocated input files. Because
1856 some operating systems (VMS) allow brackets in file names, that notation
1857 is no longer supported.
1858
1859 @cindex uninitialized data
1860 @cindex commons in output
1861 @kindex *( COMMON )
1862 @item @var{filename}@code{( COMMON )}
1863 @itemx *( COMMON )
1864 Specify where in your output file to place uninitialized data
1865 with this notation. @code{*(COMMON)} by itself refers to all
1866 uninitialized data from all input files (so far as it is not yet
1867 allocated); @var{filename}@code{(COMMON)} refers to uninitialized data
1868 from a particular file. Both are special cases of the general
1869 mechanisms for specifying where to place input-file sections:
1870 @code{ld} permits you to refer to uninitialized data as if it
1871 were in an input-file section named @code{COMMON}, regardless of the
1872 input file's format.
1873 @end table
1874
1875 For example, the following command script arranges the output file into
1876 three consecutive sections, named @code{.text}, @code{.data}, and
1877 @code{.bss}, taking the input for each from the correspondingly named
1878 sections of all the input files:
1879
1880 @smallexample
1881 @group
1882 SECTIONS @{
1883 .text : @{ *(.text) @}
1884 .data : @{ *(.data) @}
1885 .bss : @{ *(.bss) *(COMMON) @}
1886 @}
1887 @end group
1888 @end smallexample
1889
1890 The following example reads all of the sections from file @code{all.o}
1891 and places them at the start of output section @code{outputa} which
1892 starts at location @code{0x10000}. All of section @code{.input1} from
1893 file @code{foo.o} follows immediately, in the same output section. All
1894 of section @code{.input2} from @code{foo.o} goes into output section
1895 @code{outputb}, followed by section @code{.input1} from @code{foo1.o}.
1896 All of the remaining @code{.input1} and @code{.input2} sections from any
1897 files are written to output section @code{outputc}.
1898
1899 @smallexample
1900 @group
1901 SECTIONS @{
1902 outputa 0x10000 :
1903 @{
1904 all.o
1905 foo.o (.input1)
1906 @}
1907 outputb :
1908 @{
1909 foo.o (.input2)
1910 foo1.o (.input1)
1911 @}
1912 outputc :
1913 @{
1914 *(.input1)
1915 *(.input2)
1916 @}
1917 @}
1918 @end group
1919 @end smallexample
1920
1921 @node Section Data Expressions
1922 @subsection Section Data Expressions
1923
1924 @cindex expressions in a section
1925 The foregoing statements arrange, in your output file, data originating
1926 from your input files. You can also place data directly in an output
1927 section from the link command script. Most of these additional
1928 statements involve expressions (@pxref{Expressions}). Although these
1929 statements are shown separately here for ease of presentation, no such
1930 segregation is needed within a section definition in the @code{SECTIONS}
1931 command; you can intermix them freely with any of the statements we've
1932 just described.
1933
1934 @table @code
1935 @cindex input filename symbols
1936 @cindex filename symbols
1937 @kindex CREATE_OBJECT_SYMBOLS
1938 @item CREATE_OBJECT_SYMBOLS
1939 Create a symbol for each input file
1940 in the current section, set to the address of the first byte of
1941 data written from that input file. For instance, with @code{a.out}
1942 files it is conventional to have a symbol for each input file. You can
1943 accomplish this by defining the output @code{.text} section as follows:
1944 @smallexample
1945 @group
1946 SECTIONS @{
1947 .text 0x2020 :
1948 @{
1949 CREATE_OBJECT_SYMBOLS
1950 *(.text)
1951 _etext = ALIGN(0x2000);
1952 @}
1953 @dots{}
1954 @}
1955 @end group
1956 @end smallexample
1957
1958 If @code{sample.ld} is a file containing this script, and @code{a.o},
1959 @code{b.o}, @code{c.o}, and @code{d.o} are four input files with
1960 contents like the following---
1961 @smallexample
1962 @group
1963 /* a.c */
1964
1965 afunction() @{ @}
1966 int adata=1;
1967 int abss;
1968 @end group
1969 @end smallexample
1970
1971 @noindent
1972 @samp{ld -M -T sample.ld a.o b.o c.o d.o} would create a map like this,
1973 containing symbols matching the object file names:
1974 @smallexample
1975 00000000 A __DYNAMIC
1976 00004020 B _abss
1977 00004000 D _adata
1978 00002020 T _afunction
1979 00004024 B _bbss
1980 00004008 D _bdata
1981 00002038 T _bfunction
1982 00004028 B _cbss
1983 00004010 D _cdata
1984 00002050 T _cfunction
1985 0000402c B _dbss
1986 00004018 D _ddata
1987 00002068 T _dfunction
1988 00004020 D _edata
1989 00004030 B _end
1990 00004000 T _etext
1991 00002020 t a.o
1992 00002038 t b.o
1993 00002050 t c.o
1994 00002068 t d.o
1995 @end smallexample
1996
1997 @kindex @var{symbol} = @var{expression} ;
1998 @kindex @var{symbol} @var{f}= @var{expression} ;
1999 @item @var{symbol} = @var{expression} ;
2000 @itemx @var{symbol} @var{f}= @var{expression} ;
2001 @var{symbol} is any symbol name (@pxref{Symbols}). ``@var{f}=''
2002 refers to any of the operators @code{&= += -= *= /=} which combine
2003 arithmetic and assignment.
2004
2005 @cindex assignment, in section defn
2006 When you assign a value to a symbol within a particular section
2007 definition, the value is relative to the beginning of the section
2008 (@pxref{Assignment}). If you write
2009
2010 @smallexample
2011 @group
2012 SECTIONS @{
2013 abs = 14 ;
2014 @dots{}
2015 .data : @{ @dots{} rel = 14 ; @dots{} @}
2016 abs2 = 14 + ADDR(.data);
2017 @dots{}
2018 @}
2019 @end group
2020 @end smallexample
2021
2022 @c FIXME: Try above example!
2023 @noindent
2024 @code{abs} and @code{rel} do not have the same value; @code{rel} has the
2025 same value as @code{abs2}.
2026
2027 @kindex BYTE(@var{expression})
2028 @kindex SHORT(@var{expression})
2029 @kindex LONG(@var{expression})
2030 @kindex QUAD(@var{expression})
2031 @cindex direct output
2032 @item BYTE(@var{expression})
2033 @itemx SHORT(@var{expression})
2034 @itemx LONG(@var{expression})
2035 @itemx QUAD(@var{expression})
2036 By including one of these four statements in a section definition, you
2037 can explicitly place one, two, four, or eight bytes (respectively) at
2038 the current address of that section. @code{QUAD} is only supported when
2039 using a 64 bit host or target.
2040
2041 @ifclear SingleFormat
2042 Multiple-byte quantities are represented in whatever byte order is
2043 appropriate for the output file format (@pxref{BFD}).
2044 @end ifclear
2045
2046 @kindex FILL(@var{expression})
2047 @cindex holes, filling
2048 @cindex unspecified memory
2049 @item FILL(@var{expression})
2050 Specify the ``fill pattern'' for the current section. Any otherwise
2051 unspecified regions of memory within the section (for example, regions
2052 you skip over by assigning a new value to the location counter @samp{.})
2053 are filled with the two least significant bytes from the
2054 @var{expression} argument. A @code{FILL} statement covers memory
2055 locations @emph{after} the point it occurs in the section definition; by
2056 including more than one @code{FILL} statement, you can have different
2057 fill patterns in different parts of an output section.
2058 @end table
2059
2060 @node Section Options
2061 @subsection Optional Section Attributes
2062 @cindex section defn, full syntax
2063 Here is the full syntax of a section definition, including all the
2064 optional portions:
2065
2066 @smallexample
2067 @group
2068 SECTIONS @{
2069 @dots{}
2070 @var{secname} @var{start} BLOCK(@var{align}) (NOLOAD) : AT ( @var{ldadr} )
2071 @{ @var{contents} @} >@var{region} :@var{phdr} =@var{fill}
2072 @dots{}
2073 @}
2074 @end group
2075 @end smallexample
2076
2077 @var{secname} and @var{contents} are required. @xref{Section
2078 Definition}, and @ref{Section Placement}, for details on
2079 @var{contents}. The remaining elements---@var{start},
2080 @code{BLOCK(@var{align)}}, @code{(NOLOAD)}, @code{AT ( @var{ldadr} )},
2081 @code{>@var{region}}, @code{:@var{phdr}}, and @code{=@var{fill}}---are
2082 all optional.
2083
2084 @table @code
2085 @cindex start address, section
2086 @cindex section start
2087 @cindex section address
2088 @item @var{start}
2089 You can force the output section to be loaded at a specified address by
2090 specifying @var{start} immediately following the section name.
2091 @var{start} can be represented as any expression. The following
2092 example generates section @var{output} at location
2093 @code{0x40000000}:
2094
2095 @smallexample
2096 @group
2097 SECTIONS @{
2098 @dots{}
2099 output 0x40000000: @{
2100 @dots{}
2101 @}
2102 @dots{}
2103 @}
2104 @end group
2105 @end smallexample
2106
2107 @kindex BLOCK(@var{align})
2108 @cindex section alignment
2109 @cindex aligning sections
2110 @item BLOCK(@var{align})
2111 You can include @code{BLOCK()} specification to advance
2112 the location counter @code{.} prior to the beginning of the section, so
2113 that the section will begin at the specified alignment. @var{align} is
2114 an expression.
2115
2116 @kindex NOLOAD
2117 @cindex prevent unnecessary loading
2118 @cindex loading, preventing
2119 @item (NOLOAD)
2120 Use @samp{(NOLOAD)} to prevent a section from being loaded into memory
2121 each time it is accessed. For example, in the script sample below, the
2122 @code{ROM} segment is addressed at memory location @samp{0} and does not
2123 need to be loaded into each object file:
2124
2125 @smallexample
2126 @group
2127 SECTIONS @{
2128 ROM 0 (NOLOAD) : @{ @dots{} @}
2129 @dots{}
2130 @}
2131 @end group
2132 @end smallexample
2133
2134 @kindex AT ( @var{ldadr} )
2135 @cindex specify load address
2136 @cindex load address, specifying
2137 @item AT ( @var{ldadr} )
2138 The expression @var{ldadr} that follows the @code{AT} keyword specifies
2139 the load address of the section. The default (if you do not use the
2140 @code{AT} keyword) is to make the load address the same as the
2141 relocation address. This feature is designed to make it easy to build a
2142 ROM image. For example, this @code{SECTIONS} definition creates two
2143 output sections: one called @samp{.text}, which starts at @code{0x1000},
2144 and one called @samp{.mdata}, which is loaded at the end of the
2145 @samp{.text} section even though its relocation address is
2146 @code{0x2000}. The symbol @code{_data} is defined with the value
2147 @code{0x2000}:
2148
2149 @smallexample
2150 @group
2151 SECTIONS
2152 @{
2153 .text 0x1000 : @{ *(.text) _etext = . ; @}
2154 .mdata 0x2000 :
2155 AT ( ADDR(.text) + SIZEOF ( .text ) )
2156 @{ _data = . ; *(.data); _edata = . ; @}
2157 .bss 0x3000 :
2158 @{ _bstart = . ; *(.bss) *(COMMON) ; _bend = . ;@}
2159 @}
2160 @end group
2161 @end smallexample
2162
2163 The run-time initialization code (for C programs, usually @code{crt0})
2164 for use with a ROM generated this way has to include something like
2165 the following, to copy the initialized data from the ROM image to its runtime
2166 address:
2167
2168 @smallexample
2169 @group
2170 char *src = _etext;
2171 char *dst = _data;
2172
2173 /* ROM has data at end of text; copy it. */
2174 while (dst < _edata) @{
2175 *dst++ = *src++;
2176 @}
2177
2178 /* Zero bss */
2179 for (dst = _bstart; dst< _bend; dst++)
2180 *dst = 0;
2181 @end group
2182 @end smallexample
2183
2184 @kindex >@var{region}
2185 @cindex section, assigning to memory region
2186 @cindex memory regions and sections
2187 @item >@var{region}
2188 Assign this section to a previously defined region of memory.
2189 @xref{MEMORY}.
2190
2191 @kindex :@var{phdr}
2192 @cindex section, assigning to program header
2193 @cindex program headers and sections
2194 @item :@var{phdr}
2195 Assign this section to a segment described by a program header.
2196 @xref{PHDRS}. If a section is assigned to one or more segments, then
2197 all subsequent allocated sections will be assigned to those segments as
2198 well, unless they use an explicitly @code{:@var{phdr}} modifier. To
2199 prevent a section from being assigned to a segment when it would
2200 normally default to one, use @code{:NONE}.
2201
2202 @kindex =@var{fill}
2203 @cindex section fill pattern
2204 @cindex fill pattern, entire section
2205 @item =@var{fill}
2206 Including @code{=@var{fill}} in a section definition specifies the
2207 initial fill value for that section. You may use any expression to
2208 specify @var{fill}. Any unallocated holes in the current output section
2209 when written to the output file will be filled with the two least
2210 significant bytes of the value, repeated as necessary. You can also
2211 change the fill value with a @code{FILL} statement in the @var{contents}
2212 of a section definition.
2213
2214 @end table
2215
2216 @node PHDRS
2217 @section ELF Program Headers
2218 @kindex PHDRS
2219 @kindex program headers
2220 @kindex ELF program headers
2221
2222 The ELF object file format uses @dfn{program headers}, which are read by
2223 the system loader and describe how the program should be loaded into
2224 memory. These program headers must be set correctly in order to run the
2225 program on a native ELF system. The linker will create reasonable
2226 program headers by default. However, in some cases, it is desirable to
2227 specify the program headers more precisely; the @code{PHDRS} command may
2228 be used for this purpose. When the @code{PHDRS} command is used, the
2229 linker will not generate any program headers itself.
2230
2231 The @code{PHDRS} command is only meaningful when generating an ELF
2232 output file. It is ignored in other cases. This manual does not
2233 describe the details of how the system loader interprets program
2234 headers; for more information, see the ELF ABI. The program headers of
2235 an ELF file may be displayed using the @samp{-p} option of the
2236 @code{objdump} command.
2237
2238 This is the syntax of the @code{PHDRS} command. The words @code{PHDRS},
2239 @code{FILEHDR}, @code{AT}, and @code{FLAGS} are keywords.
2240
2241 @smallexample
2242 @group
2243 PHDRS
2244 @{
2245 @var{name} @var{type} [ FILEHDR ] [ PHDRS ] [ AT ( @var{address} ) ]
2246 [ FLAGS ( @var{flags} ) ] ;
2247 @}
2248 @end group
2249 @end smallexample
2250
2251 The @var{name} is used only for reference in the @code{SECTIONS} command
2252 of the linker script. It does not get put into the output file.
2253
2254 Certain program header types describe segments of memory which are
2255 loaded from the file by the system loader. In the linker script, the
2256 contents of these segments are specified by directing allocated output
2257 sections to be placed in the segment. To do this, the command
2258 describing the output section in the @code{SECTIONS} command should use
2259 @samp{:@var{name}}, where @var{name} is the name of the program header
2260 as it appears in the @code{PHDRS} command. @xref{Section Options}.
2261
2262 It is normal for certain sections to appear in more than one segment.
2263 This merely implies that one segment of memory contains another. This
2264 is specified by repeating @samp{:@var{name}}, using it once for each
2265 program header in which the section is to appear.
2266
2267 If a section is placed in one or more segments using @samp{:@var{name}},
2268 then all subsequent allocated sections which do not specify
2269 @samp{:@var{name}} are placed in the same segments. This is for
2270 convenience, since generally a whole set of contiguous sections will be
2271 placed in a single segment. To prevent a section from being assigned to
2272 a segment when it would normally default to one, use @code{:NONE}.
2273
2274 The @code{FILEHDR} and @code{PHDRS} keywords which may appear after the
2275 program header type also indicate contents of the segment of memory.
2276 The @code{FILEHDR} keyword means that the segment should include the ELF
2277 file header. The @code{PHDRS} keyword means that the segment should
2278 include the ELF program headers themselves.
2279
2280 The @var{type} may be one of the following. The numbers indicate the
2281 value of the keyword.
2282
2283 @table @asis
2284 @item @code{PT_NULL} (0)
2285 Indicates an unused program header.
2286
2287 @item @code{PT_LOAD} (1)
2288 Indicates that this program header describes a segment to be loaded from
2289 the file.
2290
2291 @item @code{PT_DYNAMIC} (2)
2292 Indicates a segment where dynamic linking information can be found.
2293
2294 @item @code{PT_INTERP} (3)
2295 Indicates a segment where the name of the program interpreter may be
2296 found.
2297
2298 @item @code{PT_NOTE} (4)
2299 Indicates a segment holding note information.
2300
2301 @item @code{PT_SHLIB} (5)
2302 A reserved program header type, defined but not specified by the ELF
2303 ABI.
2304
2305 @item @code{PT_PHDR} (6)
2306 Indicates a segment where the program headers may be found.
2307
2308 @item @var{expression}
2309 An expression giving the numeric type of the program header. This may
2310 be used for types not defined above.
2311 @end table
2312
2313 It is possible to specify that a segment should be loaded at a
2314 particular address in memory. This is done using an @code{AT}
2315 expression. This is identical to the @code{AT} command used in the
2316 @code{SECTIONS} command (@pxref{Section Options}). Using the @code{AT}
2317 command for a program header overrides any information in the
2318 @code{SECTIONS} command.
2319
2320 Normally the segment flags are set based on the sections. The
2321 @code{FLAGS} keyword may be used to explicitly specify the segment
2322 flags. The value of @var{flags} must be an integer. It is used to
2323 set the @code{p_flags} field of the program header.
2324
2325 Here is an example of the use of @code{PHDRS}. This shows a typical set
2326 of program headers used on a native ELF system.
2327
2328 @example
2329 @group
2330 PHDRS
2331 @{
2332 headers PT_PHDR PHDRS ;
2333 interp PT_INTERP ;
2334 text PT_LOAD FILEHDR PHDRS ;
2335 data PT_LOAD ;
2336 dynamic PT_DYNAMIC ;
2337 @}
2338
2339 SECTIONS
2340 @{
2341 . = SIZEOF_HEADERS;
2342 .interp : @{ *(.interp) @} :text :interp
2343 .text : @{ *(.text) @} :text
2344 .rodata : @{ *(.rodata) @} /* defaults to :text */
2345 @dots{}
2346 . = . + 0x1000; /* move to a new page in memory */
2347 .data : @{ *(.data) @} :data
2348 .dynamic : @{ *(.dynamic) @} :data :dynamic
2349 @dots{}
2350 @}
2351 @end group
2352 @end example
2353
2354 @node Entry Point
2355 @section The Entry Point
2356 @kindex ENTRY(@var{symbol})
2357 @cindex start of execution
2358 @cindex first instruction
2359 The linker command language includes a command specifically for
2360 defining the first executable instruction in an output file (its
2361 @dfn{entry point}). Its argument is a symbol name:
2362 @smallexample
2363 ENTRY(@var{symbol})
2364 @end smallexample
2365
2366 Like symbol assignments, the @code{ENTRY} command may be placed either
2367 as an independent command in the command file, or among the section
2368 definitions within the @code{SECTIONS} command---whatever makes the most
2369 sense for your layout.
2370
2371 @cindex entry point, defaults
2372 @code{ENTRY} is only one of several ways of choosing the entry point.
2373 You may indicate it in any of the following ways (shown in descending
2374 order of priority: methods higher in the list override methods lower down).
2375 @itemize @bullet
2376 @item
2377 the @samp{-e} @var{entry} command-line option;
2378 @item
2379 the @code{ENTRY(@var{symbol})} command in a linker control script;
2380 @item
2381 the value of the symbol @code{start}, if present;
2382 @item
2383 the address of the first byte of the @code{.text} section, if present;
2384 @item
2385 The address @code{0}.
2386 @end itemize
2387
2388 For example, you can use these rules to generate an entry point with an
2389 assignment statement: if no symbol @code{start} is defined within your
2390 input files, you can simply define it, assigning it an appropriate
2391 value---
2392
2393 @smallexample
2394 start = 0x2020;
2395 @end smallexample
2396
2397 @noindent
2398 The example shows an absolute address, but you can use any expression.
2399 For example, if your input object files use some other symbol-name
2400 convention for the entry point, you can just assign the value of
2401 whatever symbol contains the start address to @code{start}:
2402
2403 @smallexample
2404 start = other_symbol ;
2405 @end smallexample
2406
2407 @node Option Commands
2408 @section Option Commands
2409 The command language includes a number of other commands that you can
2410 use for specialized purposes. They are similar in purpose to
2411 command-line options.
2412
2413 @table @code
2414 @kindex CONSTRUCTORS
2415 @cindex C++ constructors, arranging in link
2416 @cindex constructors, arranging in link
2417 @item CONSTRUCTORS
2418 This command ties up C++ style constructor and destructor records. The
2419 details of the constructor representation vary from one object format to
2420 another, but usually lists of constructors and destructors appear as
2421 special sections. The @code{CONSTRUCTORS} command specifies where the
2422 linker is to place the data from these sections, relative to the rest of
2423 the linked output. Constructor data is marked by the symbol
2424 @w{@code{__CTOR_LIST__}} at the start, and @w{@code{__CTOR_LIST_END}} at
2425 the end; destructor data is bracketed similarly, between
2426 @w{@code{__DTOR_LIST__}} and @w{@code{__DTOR_LIST_END}}. (The compiler
2427 must arrange to actually run this code; @sc{gnu} C++ calls constructors from
2428 a subroutine @code{__main}, which it inserts automatically into the
2429 startup code for @code{main}, and destructors from @code{_exit}.)
2430
2431 @need 1000
2432 @kindex FLOAT
2433 @kindex NOFLOAT
2434 @item FLOAT
2435 @itemx NOFLOAT
2436 These keywords were used in some older linkers to request a particular
2437 math subroutine library. @code{ld} doesn't use the keywords, assuming
2438 instead that any necessary subroutines are in libraries specified using
2439 the general mechanisms for linking to archives; but to permit the use of
2440 scripts that were written for the older linkers, the keywords
2441 @code{FLOAT} and @code{NOFLOAT} are accepted and ignored.
2442
2443 @kindex FORCE_COMMON_ALLOCATION
2444 @cindex common allocation
2445 @item FORCE_COMMON_ALLOCATION
2446 This command has the same effect as the @samp{-d} command-line option:
2447 to make @code{ld} assign space to common symbols even if a relocatable
2448 output file is specified (@samp{-r}).
2449
2450 @kindex INPUT ( @var{files} )
2451 @cindex binary input files
2452 @item INPUT ( @var{file}, @var{file}, @dots{} )
2453 @itemx INPUT ( @var{file} @var{file} @dots{} )
2454 Use this command to include binary input files in the link, without
2455 including them in a particular section definition.
2456 Specify the full name for each @var{file}, including @samp{.a} if
2457 required.
2458
2459 @code{ld} searches for each @var{file} through the archive-library
2460 search path, just as for files you specify on the command line.
2461 See the description of @samp{-L} in @ref{Options,,Command Line
2462 Options}.
2463
2464 If you use @samp{-l@var{file}}, @code{ld} will transform the name to
2465 @code{lib@var{file}.a} as with the command line argument @samp{-l}.
2466
2467 @kindex GROUP ( @var{files} )
2468 @cindex grouping input files
2469 @item GROUP ( @var{file}, @var{file}, @dots{} )
2470 @itemx GROUP ( @var{file} @var{file} @dots{} )
2471 This command is like @code{INPUT}, except that the named files should
2472 all be archives, and they are searched repeatedly until no new undefined
2473 references are created. See the description of @samp{-(} in
2474 @ref{Options,,Command Line Options}.
2475
2476 @ignore
2477 @kindex MAP ( @var{name} )
2478 @item MAP ( @var{name} )
2479 @c MAP(...) appears to look for an F in the arg, ignoring all other
2480 @c chars; if it finds one, it sets "map_option_f" to true. But nothing
2481 @c checks map_option_f. Apparently a stub for the future...
2482 @end ignore
2483
2484 @kindex OUTPUT ( @var{filename} )
2485 @cindex naming the output file
2486 @item OUTPUT ( @var{filename} )
2487 Use this command to name the link output file @var{filename}. The
2488 effect of @code{OUTPUT(@var{filename})} is identical to the effect of
2489 @w{@samp{-o @var{filename}}}, which overrides it. You can use this
2490 command to supply a default output-file name other than @code{a.out}.
2491
2492 @ifclear SingleFormat
2493 @kindex OUTPUT_ARCH ( @var{bfdname} )
2494 @cindex machine architecture, output
2495 @item OUTPUT_ARCH ( @var{bfdname} )
2496 Specify a particular output machine architecture, with one of the names
2497 used by the BFD back-end routines (@pxref{BFD}). This command is often
2498 unnecessary; the architecture is most often set implicitly by either the
2499 system BFD configuration or as a side effect of the @code{OUTPUT_FORMAT}
2500 command.
2501
2502 @kindex OUTPUT_FORMAT ( @var{bfdname} )
2503 @cindex format, output file
2504 @item OUTPUT_FORMAT ( @var{bfdname} )
2505 When @code{ld} is configured to support multiple object code formats,
2506 you can use this command to specify a particular output format.
2507 @var{bfdname} is one of the names used by the BFD back-end routines
2508 (@pxref{BFD}). The effect is identical to the effect of the
2509 @samp{-oformat} command-line option. This selection affects only
2510 the output file; the related command @code{TARGET} affects primarily
2511 input files.
2512 @end ifclear
2513
2514 @kindex SEARCH_DIR ( @var{path} )
2515 @cindex path for libraries
2516 @cindex search path, libraries
2517 @item SEARCH_DIR ( @var{path} )
2518 Add @var{path} to the list of paths where @code{ld} looks for
2519 archive libraries. @code{SEARCH_DIR(@var{path})} has the same
2520 effect as @samp{-L@var{path}} on the command line.
2521
2522 @kindex STARTUP ( @var{filename} )
2523 @cindex first input file
2524 @item STARTUP ( @var{filename} )
2525 Ensure that @var{filename} is the first input file used in the link
2526 process.
2527
2528 @ifclear SingleFormat
2529 @cindex input file format
2530 @kindex TARGET ( @var{format} )
2531 @item TARGET ( @var{format} )
2532 When @code{ld} is configured to support multiple object code formats,
2533 you can use this command to change the input-file object code format
2534 (like the command-line option @samp{-b} or its synonym @samp{-format}).
2535 The argument @var{format} is one of the strings used by BFD to name
2536 binary formats. If @code{TARGET} is specified but @code{OUTPUT_FORMAT}
2537 is not, the last @code{TARGET} argument is also used as the default
2538 format for the @code{ld} output file. @xref{BFD}.
2539
2540 @kindex GNUTARGET
2541 If you don't use the @code{TARGET} command, @code{ld} uses the value of
2542 the environment variable @code{GNUTARGET}, if available, to select the
2543 output file format. If that variable is also absent, @code{ld} uses
2544 the default format configured for your machine in the BFD libraries.
2545 @end ifclear
2546 @end table
2547
2548 @ifset GENERIC
2549 @node Machine Dependent
2550 @chapter Machine Dependent Features
2551
2552 @cindex machine dependencies
2553 @code{ld} has additional features on some platforms; the following
2554 sections describe them. Machines where @code{ld} has no additional
2555 functionality are not listed.
2556
2557 @menu
2558 * H8/300:: @code{ld} and the H8/300
2559 * i960:: @code{ld} and the Intel 960 family
2560 @end menu
2561 @end ifset
2562
2563 @c FIXME! This could use @raisesections/@lowersections, but there seems to be a conflict
2564 @c between those and node-defaulting.
2565 @ifset H8300
2566 @ifclear GENERIC
2567 @raisesections
2568 @end ifclear
2569 @node H8/300
2570 @section @code{ld} and the H8/300
2571
2572 @cindex H8/300 support
2573 For the H8/300, @code{ld} can perform these global optimizations when
2574 you specify the @samp{-relax} command-line option.
2575
2576 @table @emph
2577 @cindex relaxing on H8/300
2578 @item relaxing address modes
2579 @code{ld} finds all @code{jsr} and @code{jmp} instructions whose
2580 targets are within eight bits, and turns them into eight-bit
2581 program-counter relative @code{bsr} and @code{bra} instructions,
2582 respectively.
2583
2584 @cindex synthesizing on H8/300
2585 @item synthesizing instructions
2586 @c FIXME: specifically mov.b, or any mov instructions really?
2587 @code{ld} finds all @code{mov.b} instructions which use the
2588 sixteen-bit absolute address form, but refer to the top
2589 page of memory, and changes them to use the eight-bit address form.
2590 (That is: the linker turns @samp{mov.b @code{@@}@var{aa}:16} into
2591 @samp{mov.b @code{@@}@var{aa}:8} whenever the address @var{aa} is in the
2592 top page of memory).
2593 @end table
2594 @ifclear GENERIC
2595 @lowersections
2596 @end ifclear
2597 @end ifset
2598
2599 @ifclear GENERIC
2600 @ifset Hitachi
2601 @c This stuff is pointless to say unless you're especially concerned
2602 @c with Hitachi chips; don't enable it for generic case, please.
2603 @node Hitachi
2604 @chapter @code{ld} and other Hitachi chips
2605
2606 @code{ld} also supports the H8/300H, the H8/500, and the Hitachi SH. No
2607 special features, commands, or command-line options are required for
2608 these chips.
2609 @end ifset
2610 @end ifclear
2611
2612 @ifset I960
2613 @ifclear GENERIC
2614 @raisesections
2615 @end ifclear
2616 @node i960
2617 @section @code{ld} and the Intel 960 family
2618
2619 @cindex i960 support
2620
2621 You can use the @samp{-A@var{architecture}} command line option to
2622 specify one of the two-letter names identifying members of the 960
2623 family; the option specifies the desired output target, and warns of any
2624 incompatible instructions in the input files. It also modifies the
2625 linker's search strategy for archive libraries, to support the use of
2626 libraries specific to each particular architecture, by including in the
2627 search loop names suffixed with the string identifying the architecture.
2628
2629 For example, if your @code{ld} command line included @w{@samp{-ACA}} as
2630 well as @w{@samp{-ltry}}, the linker would look (in its built-in search
2631 paths, and in any paths you specify with @samp{-L}) for a library with
2632 the names
2633
2634 @smallexample
2635 @group
2636 try
2637 libtry.a
2638 tryca
2639 libtryca.a
2640 @end group
2641 @end smallexample
2642
2643 @noindent
2644 The first two possibilities would be considered in any event; the last
2645 two are due to the use of @w{@samp{-ACA}}.
2646
2647 You can meaningfully use @samp{-A} more than once on a command line, since
2648 the 960 architecture family allows combination of target architectures; each
2649 use will add another pair of name variants to search for when @w{@samp{-l}}
2650 specifies a library.
2651
2652 @cindex @code{-relax} on i960
2653 @cindex relaxing on i960
2654 @code{ld} supports the @samp{-relax} option for the i960 family. If you
2655 specify @samp{-relax}, @code{ld} finds all @code{balx} and @code{calx}
2656 instructions whose targets are within 24 bits, and turns them into
2657 24-bit program-counter relative @code{bal} and @code{cal}
2658 instructions, respectively. @code{ld} also turns @code{cal}
2659 instructions into @code{bal} instructions when it determines that the
2660 target subroutine is a leaf routine (that is, the target subroutine does
2661 not itself call any subroutines).
2662
2663 @ifclear GENERIC
2664 @lowersections
2665 @end ifclear
2666 @end ifset
2667
2668 @ifclear SingleFormat
2669 @node BFD
2670 @chapter BFD
2671
2672 @cindex back end
2673 @cindex object file management
2674 @cindex object formats available
2675 @kindex objdump -i
2676 The linker accesses object and archive files using the BFD libraries.
2677 These libraries allow the linker to use the same routines to operate on
2678 object files whatever the object file format. A different object file
2679 format can be supported simply by creating a new BFD back end and adding
2680 it to the library. To conserve runtime memory, however, the linker and
2681 associated tools are usually configured to support only a subset of the
2682 object file formats available. You can use @code{objdump -i}
2683 (@pxref{objdump,,objdump,binutils.info,The GNU Binary Utilities}) to
2684 list all the formats available for your configuration.
2685
2686 @cindex BFD requirements
2687 @cindex requirements for BFD
2688 As with most implementations, BFD is a compromise between
2689 several conflicting requirements. The major factor influencing
2690 BFD design was efficiency: any time used converting between
2691 formats is time which would not have been spent had BFD not
2692 been involved. This is partly offset by abstraction payback; since
2693 BFD simplifies applications and back ends, more time and care
2694 may be spent optimizing algorithms for a greater speed.
2695
2696 One minor artifact of the BFD solution which you should bear in
2697 mind is the potential for information loss. There are two places where
2698 useful information can be lost using the BFD mechanism: during
2699 conversion and during output. @xref{BFD information loss}.
2700
2701 @menu
2702 * BFD outline:: How it works: an outline of BFD
2703 @end menu
2704
2705 @node BFD outline
2706 @section How it works: an outline of BFD
2707 @cindex opening object files
2708 @include bfdsumm.texi
2709 @end ifclear
2710
2711 @node MRI
2712 @appendix MRI Compatible Script Files
2713 @cindex MRI compatibility
2714 To aid users making the transition to @sc{gnu} @code{ld} from the MRI
2715 linker, @code{ld} can use MRI compatible linker scripts as an
2716 alternative to the more general-purpose linker scripting language
2717 described in @ref{Commands,,Command Language}. MRI compatible linker
2718 scripts have a much simpler command set than the scripting language
2719 otherwise used with @code{ld}. @sc{gnu} @code{ld} supports the most
2720 commonly used MRI linker commands; these commands are described here.
2721
2722 In general, MRI scripts aren't of much use with the @code{a.out} object
2723 file format, since it only has three sections and MRI scripts lack some
2724 features to make use of them.
2725
2726 You can specify a file containing an MRI-compatible script using the
2727 @samp{-c} command-line option.
2728
2729 Each command in an MRI-compatible script occupies its own line; each
2730 command line starts with the keyword that identifies the command (though
2731 blank lines are also allowed for punctuation). If a line of an
2732 MRI-compatible script begins with an unrecognized keyword, @code{ld}
2733 issues a warning message, but continues processing the script.
2734
2735 Lines beginning with @samp{*} are comments.
2736
2737 You can write these commands using all upper-case letters, or all
2738 lower case; for example, @samp{chip} is the same as @samp{CHIP}.
2739 The following list shows only the upper-case form of each command.
2740
2741 @table @code
2742 @cindex @code{ABSOLUTE} (MRI)
2743 @item ABSOLUTE @var{secname}
2744 @itemx ABSOLUTE @var{secname}, @var{secname}, @dots{} @var{secname}
2745 Normally, @code{ld} includes in the output file all sections from all
2746 the input files. However, in an MRI-compatible script, you can use the
2747 @code{ABSOLUTE} command to restrict the sections that will be present in
2748 your output program. If the @code{ABSOLUTE} command is used at all in a
2749 script, then only the sections named explicitly in @code{ABSOLUTE}
2750 commands will appear in the linker output. You can still use other
2751 input sections (whatever you select on the command line, or using
2752 @code{LOAD}) to resolve addresses in the output file.
2753
2754 @cindex @code{ALIAS} (MRI)
2755 @item ALIAS @var{out-secname}, @var{in-secname}
2756 Use this command to place the data from input section @var{in-secname}
2757 in a section called @var{out-secname} in the linker output file.
2758
2759 @var{in-secname} may be an integer.
2760
2761 @cindex @code{ALIGN} (MRI)
2762 @item ALIGN @var{secname} = @var{expression}
2763 Align the section called @var{secname} to @var{expression}. The
2764 @var{expression} should be a power of two.
2765
2766 @cindex @code{BASE} (MRI)
2767 @item BASE @var{expression}
2768 Use the value of @var{expression} as the lowest address (other than
2769 absolute addresses) in the output file.
2770
2771 @cindex @code{CHIP} (MRI)
2772 @item CHIP @var{expression}
2773 @itemx CHIP @var{expression}, @var{expression}
2774 This command does nothing; it is accepted only for compatibility.
2775
2776 @cindex @code{END} (MRI)
2777 @item END
2778 This command does nothing whatever; it's only accepted for compatibility.
2779
2780 @cindex @code{FORMAT} (MRI)
2781 @item FORMAT @var{output-format}
2782 Similar to the @code{OUTPUT_FORMAT} command in the more general linker
2783 language, but restricted to one of these output formats:
2784
2785 @enumerate
2786 @item
2787 S-records, if @var{output-format} is @samp{S}
2788
2789 @item
2790 IEEE, if @var{output-format} is @samp{IEEE}
2791
2792 @item
2793 COFF (the @samp{coff-m68k} variant in BFD), if @var{output-format} is
2794 @samp{COFF}
2795 @end enumerate
2796
2797 @cindex @code{LIST} (MRI)
2798 @item LIST @var{anything}@dots{}
2799 Print (to the standard output file) a link map, as produced by the
2800 @code{ld} command-line option @samp{-M}.
2801
2802 The keyword @code{LIST} may be followed by anything on the
2803 same line, with no change in its effect.
2804
2805 @cindex @code{LOAD} (MRI)
2806 @item LOAD @var{filename}
2807 @itemx LOAD @var{filename}, @var{filename}, @dots{} @var{filename}
2808 Include one or more object file @var{filename} in the link; this has the
2809 same effect as specifying @var{filename} directly on the @code{ld}
2810 command line.
2811
2812 @cindex @code{NAME} (MRI)
2813 @item NAME @var{output-name}
2814 @var{output-name} is the name for the program produced by @code{ld}; the
2815 MRI-compatible command @code{NAME} is equivalent to the command-line
2816 option @samp{-o} or the general script language command @code{OUTPUT}.
2817
2818 @cindex @code{ORDER} (MRI)
2819 @item ORDER @var{secname}, @var{secname}, @dots{} @var{secname}
2820 @itemx ORDER @var{secname} @var{secname} @var{secname}
2821 Normally, @code{ld} orders the sections in its output file in the
2822 order in which they first appear in the input files. In an MRI-compatible
2823 script, you can override this ordering with the @code{ORDER} command. The
2824 sections you list with @code{ORDER} will appear first in your output
2825 file, in the order specified.
2826
2827 @cindex @code{PUBLIC} (MRI)
2828 @item PUBLIC @var{name}=@var{expression}
2829 @itemx PUBLIC @var{name},@var{expression}
2830 @itemx PUBLIC @var{name} @var{expression}
2831 Supply a value (@var{expression}) for external symbol
2832 @var{name} used in the linker input files.
2833
2834 @cindex @code{SECT} (MRI)
2835 @item SECT @var{secname}, @var{expression}
2836 @itemx SECT @var{secname}=@var{expression}
2837 @itemx SECT @var{secname} @var{expression}
2838 You can use any of these three forms of the @code{SECT} command to
2839 specify the start address (@var{expression}) for section @var{secname}.
2840 If you have more than one @code{SECT} statement for the same
2841 @var{secname}, only the @emph{first} sets the start address.
2842 @end table
2843
2844
2845 @node Index
2846 @unnumbered Index
2847
2848 @printindex cp
2849
2850 @tex
2851 % I think something like @colophon should be in texinfo. In the
2852 % meantime:
2853 \long\def\colophon{\hbox to0pt{}\vfill
2854 \centerline{The body of this manual is set in}
2855 \centerline{\fontname\tenrm,}
2856 \centerline{with headings in {\bf\fontname\tenbf}}
2857 \centerline{and examples in {\tt\fontname\tentt}.}
2858 \centerline{{\it\fontname\tenit\/} and}
2859 \centerline{{\sl\fontname\tensl\/}}
2860 \centerline{are used for emphasis.}\vfill}
2861 \page\colophon
2862 % Blame: doc@cygnus.com, 28mar91.
2863 @end tex
2864
2865
2866 @contents
2867 @bye
2868
2869