home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / gnu / djgpp / docs / binutils / ld.i2 < prev    next >
Encoding:
GNU Info File  |  1993-09-06  |  29.2 KB  |  666 lines

  1. This is Info file ld.info, produced by Makeinfo-1.52 from the input
  2. file ./ld.texinfo.
  3.  
  4. START-INFO-DIR-ENTRY
  5. * Ld: (ld).            The GNU linker.
  6. END-INFO-DIR-ENTRY
  7.  
  8.    This file documents the GNU linker LD.
  9.  
  10.    Copyright (C) 1991, 1992, 1993 Free Software Foundation, Inc.
  11.  
  12.    Permission is granted to make and distribute verbatim copies of this
  13. manual provided the copyright notice and this permission notice are
  14. preserved on all copies.
  15.  
  16.    Permission is granted to copy and distribute modified versions of
  17. this manual under the conditions for verbatim copying, provided also
  18. that the entire resulting derived work is distributed under the terms
  19. of a permission notice identical to this one.
  20.  
  21.    Permission is granted to copy and distribute translations of this
  22. manual into another language, under the above conditions for modified
  23. versions.
  24.  
  25. 
  26. File: ld.info,  Node: BFD,  Next: MRI,  Prev: Commands,  Up: Top
  27.  
  28. BFD
  29. ***
  30.  
  31.    The linker accesses object and archive files using the BFD libraries.
  32. These libraries allow the linker to use the same routines to operate on
  33. object files whatever the object file format.  A different object file
  34. format can be supported simply by creating a new BFD back end and adding
  35. it to the library.  You can use `objdump -i' (*note objdump:
  36. (binutils.info)objdump.) to list all the formats available for each
  37. architecture under BFD.  This was the list of formats, and of
  38. architectures supported for each format, as of the time this manual was
  39. prepared:
  40.      BFD header file version 0.18
  41.      a.out-i386
  42.       (header big endian, data big endian)
  43.        m68k:68020
  44.        a29k
  45.        sparc
  46.        i386
  47.      a.out-sunos-big
  48.       (header big endian, data big endian)
  49.        m68k:68020
  50.        a29k
  51.        sparc
  52.        i386
  53.      b.out.big
  54.       (header big endian, data little endian)
  55.        i960:core
  56.      b.out.little
  57.       (header little endian, data little endian)
  58.        i960:core
  59.      coff-a29k-big
  60.       (header big endian, data big endian)
  61.        a29k
  62.      coff-h8300
  63.       (header big endian, data big endian)
  64.        H8/300
  65.      coff-i386
  66.       (header little endian, data little endian)
  67.        i386
  68.      coff-Intel-big
  69.       (header big endian, data little endian)
  70.        i960:core
  71.      coff-Intel-little
  72.       (header little endian, data little endian)
  73.        i960:core
  74.      coff-m68k
  75.       (header big endian, data big endian)
  76.        m68k:68020
  77.      coff-m88kbcs
  78.       (header big endian, data big endian)
  79.        m88k:88100
  80.      ecoff-bigmips
  81.       (header big endian, data big endian)
  82.        mips
  83.      ecoff-littlemips
  84.       (header little endian, data little endian)
  85.        mips
  86.      elf-big
  87.       (header big endian, data big endian)
  88.        m68k:68020
  89.        vax
  90.        i960:core
  91.        a29k
  92.        sparc
  93.        mips
  94.        i386
  95.        m88k:88100
  96.        H8/300
  97.        rs6000:6000
  98.      elf-little
  99.       (header little endian, data little endian)
  100.        m68k:68020
  101.        vax
  102.        i960:core
  103.        a29k
  104.        sparc
  105.        mips
  106.        i386
  107.        m88k:88100
  108.        H8/300
  109.        rs6000:6000
  110.      ieee
  111.       (header big endian, data big endian)
  112.        m68k:68020
  113.        vax
  114.        i960:core
  115.        a29k
  116.        sparc
  117.        mips
  118.        i386
  119.        m88k:88100
  120.        H8/300
  121.        rs6000:6000
  122.      srec
  123.       (header big endian, data big endian)
  124.        m68k:68020
  125.        vax
  126.        i960:core
  127.        a29k
  128.        sparc
  129.        mips
  130.        i386
  131.        m88k:88100
  132.        H8/300
  133.        rs6000:6000
  134.  
  135.    As with most implementations, BFD is a compromise between several
  136. conflicting requirements. The major factor influencing BFD design was
  137. efficiency: any time used converting between formats is time which
  138. would not have been spent had BFD not been involved. This is partly
  139. offset by abstraction payback; since BFD simplifies applications and
  140. back ends, more time and care may be spent optimizing algorithms for a
  141. greater speed.
  142.  
  143.    One minor artifact of the BFD solution which you should bear in mind
  144. is the potential for information loss.  There are two places where
  145. useful information can be lost using the BFD mechanism: during
  146. conversion and during output. *Note BFD information loss::.
  147.  
  148. * Menu:
  149.  
  150. * BFD outline::                 How it works: an outline of BFD
  151. * BFD information loss::        Information Loss
  152. * Mechanism::                   Mechanism
  153.  
  154. 
  155. File: ld.info,  Node: BFD outline,  Next: BFD information loss,  Up: BFD
  156.  
  157. How it works: an outline of BFD
  158. ===============================
  159.  
  160.    When an object file is opened, BFD subroutines automatically
  161. determine the format of the input object file, and build a descriptor in
  162. memory with pointers to routines that will be used to access elements of
  163. the object file's data structures.
  164.  
  165.    As different information from the the object files is required, BFD
  166. reads from different sections of the file and processes them.  For
  167. example, a very common operation for the linker is processing symbol
  168. tables.  Each BFD back end provides a routine for converting between
  169. the object file's representation of symbols and an internal canonical
  170. format. When the linker asks for the symbol table of an object file, it
  171. calls through the memory pointer to the BFD back end routine which
  172. reads and converts the table into a canonical form.  The linker then
  173. operates upon the common form. When the link is finished and the linker
  174. writes the symbol table of the output file, another BFD back end
  175. routine is called which takes the newly created symbol table and
  176. converts it into the chosen output format.
  177.  
  178. 
  179. File: ld.info,  Node: BFD information loss,  Next: Mechanism,  Prev: BFD outline,  Up: BFD
  180.  
  181. Information Loss
  182. ================
  183.  
  184.    *Information can be lost during output.* The output formats
  185. supported by BFD do not provide identical facilities, and information
  186. which may be described in one form has nowhere to go in another format.
  187. One example of this is alignment information in `b.out'. There is
  188. nowhere in an `a.out' format file to store alignment information on the
  189. contained data, so when a file is linked from `b.out' and an `a.out'
  190. image is produced, alignment information will not propagate to the
  191. output file. (The linker will still use the alignment information
  192. internally, so the link is performed correctly).
  193.  
  194.    Another example is COFF section names. COFF files may contain an
  195. unlimited number of sections, each one with a textual section name. If
  196. the target of the link is a format which does not have many sections
  197. (e.g., `a.out') or has sections without names (e.g., the Oasys format)
  198. the link cannot be done simply. You can circumvent this problem by
  199. describing the desired input-to-output section mapping with the command
  200. language.
  201.  
  202.    *Information can be lost during canonicalization.* The BFD internal
  203. canonical form of the external formats is not exhaustive; there are
  204. structures in input formats for which there is no direct representation
  205. internally.  This means that the BFD back ends cannot maintain all
  206. possible data richness through the transformation between external to
  207. internal and back to external formats.
  208.  
  209.    This limitation is only a problem when using the linker to read one
  210. format and write another. Each BFD back end is responsible for
  211. maintaining as much data as possible, and the internal BFD canonical
  212. form has structures which are opaque to the BFD core, and exported only
  213. to the back ends. When a file is read in one format, the canonical form
  214. is generated for BFD and the linker. At the same time, the back end
  215. saves away any information which would otherwise be lost. If the data
  216. is then written back in the same format, the back end routine will be
  217. able to use the canonical form provided by the BFD core as well as the
  218. information it prepared earlier.  Since there is a great deal of
  219. commonality between back ends, there is no information lost when
  220. linking big endian COFF to little endian COFF, or from `a.out' to
  221. `b.out'.  When a mixture of formats is linked, the information is only
  222. lost from the files whose format differs from the destination.
  223.  
  224. 
  225. File: ld.info,  Node: Mechanism,  Prev: BFD information loss,  Up: BFD
  226.  
  227. Mechanism
  228. =========
  229.  
  230.    The greatest potential for loss of information occurs when there is
  231. the least overlap between the information provided by the source
  232. format, that stored by the canonical format, and that needed by the
  233. destination format. A brief description of the canonical form may help
  234. you understand which kinds of data you can count on preserving across
  235. conversions.
  236.  
  237. *files*
  238.      Information on target machine architecture, particular
  239.      implementation, and format type are stored on a per-file basis.
  240.      Other information includes a demand pagable bit and a write
  241.      protected bit.  Information like Unix magic numbers is not stored
  242.      here--only the magic numbers' meaning, so a `ZMAGIC' file would
  243.      have both the demand pagable bit and the write protected text bit
  244.      set.
  245.  
  246.      The byte order of the target is stored on a per-file basis, so
  247.      that big- and little-endian object files may be linked with one
  248.      another.
  249.  
  250. *sections*
  251.      Each section in the input file contains the name of the section,
  252.      the original address in the object file, various options, size and
  253.      alignment information and pointers into other BFD data structures.
  254.  
  255. *symbols*
  256.      Each symbol contains a pointer to the object file which originally
  257.      defined it, its name, its value, and various option bits.  When a
  258.      BFD back end reads in a symbol table, the back end relocates all
  259.      symbols to make them relative to the base of the section where
  260.      they were defined.  Doing this ensures that each symbol points to
  261.      its containing section.  Each symbol also has a varying amount of
  262.      hidden private data for the BFD back end.  Since the symbol points
  263.      to the original file, the private data format for that symbol is
  264.      accessible.  `ld' can operate on a collection of symbols of wildly
  265.      different formats without problems.
  266.  
  267.      Normal global and simple local symbols are maintained on output,
  268.      so an output file (no matter its format) will retain symbols
  269.      pointing to functions and to global, static, and common variables.
  270.      Some symbol information is not worth retaining; in `a.out', type
  271.      information is stored in the symbol table as long symbol names.
  272.      This information would be useless to most COFF debuggers and may
  273.      be thrown away with appropriate command line switches. (The GNU
  274.      debugger `gdb' does support `a.out' style debugging information in
  275.      COFF).
  276.  
  277.      There is one word of type information within the symbol, so if the
  278.      format supports symbol type information within symbols (for
  279.      example, COFF, IEEE, Oasys) and the type is simple enough to fit
  280.      within one word (nearly everything but aggregates), the
  281.      information will be preserved.
  282.  
  283. *relocation level*
  284.      Each canonical BFD relocation record contains a pointer to the
  285.      symbol to relocate to, the offset of the data to relocate, the
  286.      section the data is in, and a pointer to a relocation type
  287.      descriptor. Relocation is performed by passing messages through
  288.      the relocation type descriptor and the symbol pointer. Therefore,
  289.      relocations can be performed on output data using a relocation
  290.      method that is only available in one of the input formats. For
  291.      instance, Oasys provides a byte relocation format.  A relocation
  292.      record requesting this relocation type would point indirectly to a
  293.      routine to perform this, so the relocation may be performed on a
  294.      byte being written to a COFF file, even though 68k COFF has no
  295.      such relocation type.
  296.  
  297. *line numbers*
  298.      Object formats can contain, for debugging purposes, some form of
  299.      mapping between symbols, source line numbers, and addresses in the
  300.      output file.  These addresses have to be relocated along with the
  301.      symbol information.  Each symbol with an associated list of line
  302.      number records points to the first record of the list.  The head
  303.      of a line number list consists of a pointer to the symbol, which
  304.      allows finding out the address of the function whose line number
  305.      is being described. The rest of the list is made up of pairs:
  306.      offsets into the section and line numbers. Any format which can
  307.      simply derive this information can pass it successfully between
  308.      formats (COFF, IEEE and Oasys).
  309.  
  310. 
  311. File: ld.info,  Node: MRI,  Next: Index,  Prev: BFD,  Up: Top
  312.  
  313. MRI Compatible Script Files
  314. ***************************
  315.  
  316.    To aid users making the transition to GNU `ld' from the MRI linker,
  317. `ld' can use MRI compatible linker scripts as an alternative to the
  318. more general-purpose linker scripting language described in *Note
  319. Command Language: Commands.  MRI compatible linker scripts have a much
  320. simpler command set than the scripting language otherwise used with
  321. `ld'.  GNU `ld' supports the most commonly used MRI linker commands;
  322. these commands are described here.
  323.  
  324.    You can specify a file containing an MRI-compatible script using the
  325. `-c' command-line option.
  326.  
  327.    Each command in an MRI-compatible script occupies its own line; each
  328. command line starts with the keyword that identifies the command (though
  329. blank lines are also allowed for punctuation).  If a line of an
  330. MRI-compatible script begins with an unrecognized keyword, `ld' issues
  331. a warning message, but continues processing the script.
  332.  
  333.    Lines beginning with `*' are comments.
  334.  
  335.    You can write these commands using all upper-case letters, or all
  336. lower case; for example, `chip' is the same as `CHIP'.  The following
  337. list shows only the upper-case form of each command.
  338.  
  339. `ABSOLUTE SECNAME'
  340. `ABSOLUTE SECNAME, SECNAME, ... SECNAME'
  341.      Normally, `ld' includes in the output file all sections from all
  342.      the input files.  However, in an MRI-compatible script, you can
  343.      use the `ABSOLUTE' command to restrict the sections that will be
  344.      present in your output program.  If the `ABSOLUTE' command is used
  345.      at all in a script, then only the sections named explicitly in
  346.      `ABSOLUTE' commands will appear in the linker output.  You can
  347.      still use other input sections (whatever you select on the command
  348.      line, or using `LOAD') to resolve addresses in the output file.
  349.  
  350. `ALIAS OUT-SECNAME, IN-SECNAME'
  351.      Use this command to place the data from input section IN-SECNAME
  352.      in a section called OUT-SECNAME in the linker output file.
  353.  
  354.      IN-SECNAME may be an integer.
  355.  
  356. `BASE EXPRESSION'
  357.      Use the value of EXPRESSION as the lowest address (other than
  358.      absolute addresses) in the output file.
  359.  
  360. `CHIP EXPRESSION'
  361. `CHIP EXPRESSION, EXPRESSION'
  362.      This command does nothing; it is accepted only for compatibility.
  363.  
  364. `END'
  365.      This command does nothing whatever; it's only accepted for
  366.      compatibility.
  367.  
  368. `FORMAT OUTPUT-FORMAT'
  369.      Similar to the `OUTPUT_FORMAT' command in the more general linker
  370.      language, but restricted to one of these output formats:
  371.        1. S-records, if OUTPUT-FORMAT is `S'
  372.  
  373.        2. IEEE, if OUTPUT-FORMAT is `IEEE'
  374.  
  375.        3. COFF (the `coff-m68k' variant in BFD), if OUTPUT-FORMAT is
  376.           `COFF'
  377.  
  378. `LIST ANYTHING...'
  379.      Print (to the standard output file) a link map, as produced by the
  380.      `ld' command-line option `-M'.
  381.  
  382.      The keyword `LIST' may be followed by anything on the same line,
  383.      with no change in its effect.
  384.  
  385. `LOAD FILENAME'
  386. `LOAD FILENAME, FILENAME, ... FILENAME'
  387.      Include one or more object file FILENAME in the link; this has the
  388.      same effect as specifying FILENAME directly on the `ld' command
  389.      line.
  390.  
  391. `NAME OUTPUT-NAME'
  392.      OUTPUT-NAME is the name for the program produced by `ld'; the
  393.      MRI-compatible command `NAME' is equivalent to the command-line
  394.      option `-o' or the general script language command `OUTPUT'.
  395.  
  396. `ORDER SECNAME, SECNAME, ... SECNAME'
  397. `ORDER SECNAME SECNAME SECNAME'
  398.      Normally, `ld' orders the sections in its output file in the order
  399.      in which they first appear in the input files.  In an
  400.      MRI-compatible script, you can override this ordering with the
  401.      `ORDER' command.  The sections you list with `ORDER' will appear
  402.      first in your output file, in the order specified.
  403.  
  404. `PUBLIC NAME=EXPRESSION'
  405. `PUBLIC NAME,EXPRESSION'
  406. `PUBLIC NAME EXPRESSION'
  407.      Supply a value (EXPRESSION) for external symbol NAME used in the
  408.      linker input files.
  409.  
  410. `SECT SECNAME, EXPRESSION'
  411. `SECT SECNAME=EXPRESSION'
  412. `SECT SECNAME EXPRESSION'
  413.      You can use any of these three forms of the `SECT' command to
  414.      specify the start address (EXPRESSION) for section SECNAME.  If
  415.      you have more than one `SECT' statement for the same SECNAME, only
  416.      the *first* sets the start address.
  417.  
  418. 
  419. File: ld.info,  Node: Index,  Prev: MRI,  Up: Top
  420.  
  421. Index
  422. *****
  423.  
  424. * Menu:
  425.  
  426. * ":                                    Symbols.
  427. * ( COMMON ):                           Section Contents.
  428. * *(SECTION):                           Section Contents.
  429. * -b FORMAT:                            Invocation.
  430. * -Bstatic:                             Invocation.
  431. * -c MRI-CMDFILE:                       Invocation.
  432. * -d:                                   Invocation.
  433. * -dc:                                  Invocation.
  434. * -defsym SYMBOL=EXP:                   Invocation.
  435. * -dp:                                  Invocation.
  436. * -e ENTRY:                             Invocation.
  437. * -F:                                   Invocation.
  438. * -format:                              Invocation.
  439. * -g:                                   Invocation.
  440. * -i:                                   Invocation.
  441. * -lAR:                                 Invocation.
  442. * -LDIR:                                Invocation.
  443. * -m:                                   Invocation.
  444. * -M:                                   Invocation.
  445. * -n:                                   Invocation.
  446. * -N:                                   Invocation.
  447. * -noinhibit-exec:                      Invocation.
  448. * -o OUTPUT:                            Invocation.
  449. * -r:                                   Invocation.
  450. * -R FILE:                              Invocation.
  451. * -relax:                               Invocation.
  452. * -S:                                   Invocation.
  453. * -s:                                   Invocation.
  454. * -t:                                   Invocation.
  455. * -T SCRIPT:                            Invocation.
  456. * -Tbss BSSORG:                         Invocation.
  457. * -Tdata DATAORG:                       Invocation.
  458. * -Ttext TEXTORG:                       Invocation.
  459. * -u SYM:                               Invocation.
  460. * -Ur:                                  Invocation.
  461. * -v:                                   Invocation.
  462. * -X:                                   Invocation.
  463. * -x:                                   Invocation.
  464. * -ySYMBOL:                             Invocation.
  465. * .:                                    Location Counter.
  466. * 0x:                                   Integers.
  467. * ;:                                    Assignment.
  468. * =FILL:                                Section Options.
  469. * >REGION:                              Section Options.
  470. * ABSOLUTE (MRI):                       MRI.
  471. * ALIAS (MRI):                          MRI.
  472. * BASE (MRI):                           MRI.
  473. * CHIP (MRI):                           MRI.
  474. * END (MRI):                            MRI.
  475. * FORMAT (MRI):                         MRI.
  476. * LIST (MRI):                           MRI.
  477. * LOAD (MRI):                           MRI.
  478. * NAME (MRI):                           MRI.
  479. * ORDER (MRI):                          MRI.
  480. * PUBLIC (MRI):                         MRI.
  481. * SECT (MRI):                           MRI.
  482. * FILENAME:                             Section Contents.
  483. * FILENAME(SECTION):                    Section Contents.
  484. * SYMBOL = EXPRESSION ;:                Section Contents.
  485. * SYMBOL F= EXPRESSION ;:               Section Contents.
  486. * { SCRIPT }:                           Invocation.
  487. * absolute and relocatable symbols:     Assignment.
  488. * ABSOLUTE(EXP):                        Built-ins.
  489. * ADDR(SECTION):                        Built-ins.
  490. * ALIGN(EXP):                           Built-ins.
  491. * aligning sections:                    Section Options.
  492. * allocating memory:                    MEMORY.
  493. * architectures available:              BFD.
  494. * archive files, from cmd line:         Invocation.
  495. * arithmetic:                           Expressions.
  496. * arithmetic operators:                 Operators.
  497. * assignment in scripts:                Assignment.
  498. * assignment, in section defn:          Section Contents.
  499. * back end:                             BFD.
  500. * BFD canonical format:                 Mechanism.
  501. * BFD requirements:                     BFD.
  502. * binary input files:                   Other Commands.
  503. * binary input format:                  Invocation.
  504. * BLOCK(ALIGN):                         Section Options.
  505. * BYTE(EXPRESSION):                     Section Contents.
  506. * command files:                        Commands.
  507. * command line:                         Invocation.
  508. * commands, fundamental:                Scripts.
  509. * comments:                             Scripts.
  510. * common allocation:                    Invocation.
  511. * common allocation:                    Other Commands.
  512. * commons in output:                    Section Contents.
  513. * compatibility, MRI:                   Invocation.
  514. * constructors:                         Invocation.
  515. * contents of a section:                Section Contents.
  516. * CREATE_OBJECT_SYMBOLS:                Section Contents.
  517. * current output location:              Location Counter.
  518. * decimal integers:                     Integers.
  519. * DEFINED(SYMBOL):                      Built-ins.
  520. * deleting local symbols:               Invocation.
  521. * direct output:                        Section Contents.
  522. * discontinuous memory:                 MEMORY.
  523. * dot:                                  Location Counter.
  524. * entry point, defaults:                Entry Point.
  525. * entry point, from command line:       Invocation.
  526. * ENTRY(SYMBOL):                        Entry Point.
  527. * expression evaluation order:          Evaluation.
  528. * expression syntax:                    Expressions.
  529. * expression, absolute:                 Built-ins.
  530. * filename symbols:                     Section Contents.
  531. * files and sections, section defn:     Section Contents.
  532. * files, including in output sections:  Section Contents.
  533. * fill pattern, entire section:         Section Options.
  534. * FILL(EXPRESSION):                     Section Contents.
  535. * first input file:                     Other Commands.
  536. * first instruction:                    Entry Point.
  537. * FLOAT:                                Other Commands.
  538. * FORCE_COMMON_ALLOCATION:              Other Commands.
  539. * format, output file:                  Other Commands.
  540. * formats available:                    BFD.
  541. * functions in expression language:     Built-ins.
  542. * fundamental script commands:          Scripts.
  543. * GNU linker:                           Overview.
  544. * GNUTARGET:                            Other Commands.
  545. * header size:                          Built-ins.
  546. * hexadecimal integers:                 Integers.
  547. * holes:                                Location Counter.
  548. * holes, filling:                       Section Contents.
  549. * incremental link:                     Invocation.
  550. * INPUT ( FILES ):                      Other Commands.
  551. * input file format:                    Other Commands.
  552. * input filename symbols:               Section Contents.
  553. * input files, displaying:              Invocation.
  554. * input files, section defn:            Section Contents.
  555. * input format:                         Invocation.
  556. * input format:                         Invocation.
  557. * input sections to output section:     Section Contents.
  558. * integer notation:                     Integers.
  559. * integer suffixes:                     Integers.
  560. * internal object-file format:          Mechanism.
  561. * K and M integer suffixes:             Integers.
  562. * l =:                                  MEMORY.
  563. * L, deleting symbols beginning:        Invocation.
  564. * layout of output file:                Scripts.
  565. * lazy evaluation:                      Evaluation.
  566. * len =:                                MEMORY.
  567. * LENGTH =:                             MEMORY.
  568. * link map:                             Invocation.
  569. * local symbols, deleting:              Invocation.
  570. * location counter:                     Location Counter.
  571. * LONG(EXPRESSION):                     Section Contents.
  572. * M and K integer suffixes:             Integers.
  573. * machine architecture, output:         Other Commands.
  574. * MEMORY:                               MEMORY.
  575. * memory region attributes:             MEMORY.
  576. * memory regions and sections:          Section Options.
  577. * MRI compatibility:                    MRI.
  578. * names:                                Symbols.
  579. * naming memory regions:                MEMORY.
  580. * naming output sections:               Section Definition.
  581. * naming the output file:               Invocation.
  582. * naming the output file:               Other Commands.
  583. * negative integers:                    Integers.
  584. * NEXT(EXP):                            Built-ins.
  585. * NMAGIC:                               Invocation.
  586. * NOFLOAT:                              Other Commands.
  587. * NOLOAD:                               Section Options.
  588. * Non constant expression:              Assignment.
  589. * o =:                                  MEMORY.
  590. * object file management:               BFD.
  591. * object files:                         Invocation.
  592. * octal integers:                       Integers.
  593. * OMAGIC:                               Invocation.
  594. * opening object files:                 BFD outline.
  595. * Operators for arithmetic:             Operators.
  596. * options:                              Invocation.
  597. * org =:                                MEMORY.
  598. * ORIGIN =:                             MEMORY.
  599. * OUTPUT ( FILENAME ):                  Other Commands.
  600. * output file after errors:             Invocation.
  601. * output file layout:                   Scripts.
  602. * OUTPUT_ARCH ( BFDNAME ):              Other Commands.
  603. * OUTPUT_FORMAT ( BFDNAME ):            Other Commands.
  604. * partial link:                         Invocation.
  605. * path for libraries:                   Other Commands.
  606. * precedence in expressions:            Operators.
  607. * prevent unnecessary loading:          Section Options.
  608. * quoted symbol names:                  Symbols.
  609. * read-only text:                       Invocation.
  610. * read/write from cmd line:             Invocation.
  611. * regions of memory:                    MEMORY.
  612. * relaxing addressing modes:            Invocation.
  613. * relocatable and absolute symbols:     Assignment.
  614. * relocatable output:                   Invocation.
  615. * requirements for BFD:                 BFD.
  616. * rounding up location counter:         Built-ins.
  617. * scaled integers:                      Integers.
  618. * script files:                         Invocation.
  619. * scripts on command line:              Invocation.
  620. * search directory, from cmd line:      Invocation.
  621. * search path, libraries:               Other Commands.
  622. * SEARCH_DIR ( PATH ):                  Other Commands.
  623. * section address:                      Built-ins.
  624. * section address:                      Section Options.
  625. * section alignment:                    Section Options.
  626. * section definition:                   Section Definition.
  627. * section defn, full syntax:            Section Options.
  628. * section fill pattern:                 Section Options.
  629. * section size:                         Built-ins.
  630. * section start:                        Section Options.
  631. * section, assigning to memory region:  Section Options.
  632. * SECTIONS:                             SECTIONS.
  633. * segment origins, cmd line:            Invocation.
  634. * semicolon:                            Assignment.
  635. * SHORT(EXPRESSION):                    Section Contents.
  636. * SIZEOF(SECTION):                      Built-ins.
  637. * sizeof_headers:                       Built-ins.
  638. * SIZEOF_HEADERS:                       Built-ins.
  639. * standard Unix system:                 Invocation.
  640. * start address, section:               Section Options.
  641. * start of execution:                   Entry Point.
  642. * STARTUP ( FILENAME ):                 Other Commands.
  643. * strip all symbols:                    Invocation.
  644. * strip debugger symbols:               Invocation.
  645. * suffixes for integers:                Integers.
  646. * symbol defaults:                      Built-ins.
  647. * symbol definition, scripts:           Assignment.
  648. * symbol names:                         Symbols.
  649. * symbol tracing:                       Invocation.
  650. * symbol-only input:                    Invocation.
  651. * symbols, from command line:           Invocation.
  652. * symbols, relocatable and absolute:    Assignment.
  653. * synthesizing linker:                  Invocation.
  654. * TARGET ( FORMAT ):                    Other Commands.
  655. * unallocated address, next:            Built-ins.
  656. * undefined symbol:                     Invocation.
  657. * uninitialized data:                   Section Contents.
  658. * unspecified memory:                   Section Contents.
  659. * variables, defining:                  Assignment.
  660. * verbose:                              Invocation.
  661. * version:                              Invocation.
  662. * what is this?:                        Overview.
  663. * [ SECTIONS ]:                         Section Contents.
  664.  
  665.  
  666.