armelf.xbn
上传用户:szlgq88
上传日期:2009-04-28
资源大小:48287k
文件大小:7k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /* Script for -N: mix text and data on same page; don't align data */
  2. OUTPUT_FORMAT("elf32-littlearm", "elf32-bigarm",
  3.       "elf32-littlearm")
  4. OUTPUT_ARCH(arm)
  5. ENTRY(_start)
  6. /* Do we need any of these for elf?
  7.    __DYNAMIC = 0;    */
  8. SECTIONS
  9. {
  10.   /* Read-only sections, merged into text segment: */
  11.   PROVIDE (__executable_start = 0x8000); . = 0x8000;
  12.   .interp         : { *(.interp) }
  13.   .hash           : { *(.hash) }
  14.   .dynsym         : { *(.dynsym) }
  15.   .dynstr         : { *(.dynstr) }
  16.   .gnu.version    : { *(.gnu.version) }
  17.   .gnu.version_d  : { *(.gnu.version_d) }
  18.   .gnu.version_r  : { *(.gnu.version_r) }
  19.   .rel.init       : { *(.rel.init) }
  20.   .rela.init      : { *(.rela.init) }
  21.   .rel.text       : { *(.rel.text .rel.text.* .rel.gnu.linkonce.t.*) }
  22.   .rela.text      : { *(.rela.text .rela.text.* .rela.gnu.linkonce.t.*) }
  23.   .rel.fini       : { *(.rel.fini) }
  24.   .rela.fini      : { *(.rela.fini) }
  25.   .rel.rodata     : { *(.rel.rodata .rel.rodata.* .rel.gnu.linkonce.r.*) }
  26.   .rela.rodata    : { *(.rela.rodata .rela.rodata.* .rela.gnu.linkonce.r.*) }
  27.   .rel.data.rel.ro   : { *(.rel.data.rel.ro*) }
  28.   .rela.data.rel.ro   : { *(.rel.data.rel.ro*) }
  29.   .rel.data       : { *(.rel.data .rel.data.* .rel.gnu.linkonce.d.*) }
  30.   .rela.data      : { *(.rela.data .rela.data.* .rela.gnu.linkonce.d.*) }
  31.   .rel.tdata   : { *(.rel.tdata .rel.tdata.* .rel.gnu.linkonce.td.*) }
  32.   .rela.tdata   : { *(.rela.tdata .rela.tdata.* .rela.gnu.linkonce.td.*) }
  33.   .rel.tbss   : { *(.rel.tbss .rel.tbss.* .rel.gnu.linkonce.tb.*) }
  34.   .rela.tbss   : { *(.rela.tbss .rela.tbss.* .rela.gnu.linkonce.tb.*) }
  35.   .rel.ctors      : { *(.rel.ctors) }
  36.   .rela.ctors     : { *(.rela.ctors) }
  37.   .rel.dtors      : { *(.rel.dtors) }
  38.   .rela.dtors     : { *(.rela.dtors) }
  39.   .rel.got        : { *(.rel.got) }
  40.   .rela.got       : { *(.rela.got) }
  41.   .rel.bss        : { *(.rel.bss .rel.bss.* .rel.gnu.linkonce.b.*) }
  42.   .rela.bss       : { *(.rela.bss .rela.bss.* .rela.gnu.linkonce.b.*) }
  43.   .rel.plt        : { *(.rel.plt) }
  44.   .rela.plt       : { *(.rela.plt) }
  45.   .init           :
  46.   {
  47.     KEEP (*(.init))
  48.   } =0
  49.   .plt            : { *(.plt) }
  50.   .text           :
  51.   {
  52.     *(.text .stub .text.* .gnu.linkonce.t.*)
  53.     KEEP (*(.text.*personality*))
  54.     /* .gnu.warning sections are handled specially by elf32.em.  */
  55.     *(.gnu.warning)
  56.     *(.glue_7t) *(.glue_7)
  57.   } =0
  58.   .fini           :
  59.   {
  60.     KEEP (*(.fini))
  61.   } =0
  62.   PROVIDE (__etext = .);
  63.   PROVIDE (_etext = .);
  64.   PROVIDE (etext = .);
  65.   .rodata         : { *(.rodata .rodata.* .gnu.linkonce.r.*) }
  66.   .rodata1        : { *(.rodata1) }
  67.   .ARM.extab   : { *(.ARM.extab* .gnu.linkonce.armextab.*) }
  68.    __exidx_start = .;
  69.   .ARM.exidx   : { *(.ARM.exidx* .gnu.linkonce.armexidx.*) }
  70.    __exidx_end = .;
  71.   .eh_frame_hdr : { *(.eh_frame_hdr) }
  72.   .eh_frame       : ONLY_IF_RO { KEEP (*(.eh_frame)) }
  73.   .gcc_except_table   : ONLY_IF_RO { KEEP (*(.gcc_except_table)) *(.gcc_except_table.*) }
  74.   /* Adjust the address for the data segment.  We want to adjust up to
  75.      the same address within the page on the next page up.  */
  76.   . = .;
  77.   /* Exception handling  */
  78.   .eh_frame       : ONLY_IF_RW { KEEP (*(.eh_frame)) }
  79.   .gcc_except_table   : ONLY_IF_RW { KEEP (*(.gcc_except_table)) *(.gcc_except_table.*) }
  80.   /* Thread Local Storage sections  */
  81.   .tdata   : { *(.tdata .tdata.* .gnu.linkonce.td.*) }
  82.   .tbss   : { *(.tbss .tbss.* .gnu.linkonce.tb.*) *(.tcommon) }
  83.   /* Ensure the __preinit_array_start label is properly aligned.  We
  84.      could instead move the label definition inside the section, but
  85.      the linker would then create the section even if it turns out to
  86.      be empty, which isn't pretty.  */
  87.   . = ALIGN(32 / 8);
  88.   PROVIDE (__preinit_array_start = .);
  89.   .preinit_array     : { KEEP (*(.preinit_array)) }
  90.   PROVIDE (__preinit_array_end = .);
  91.   PROVIDE (__init_array_start = .);
  92.   .init_array     : { KEEP (*(.init_array)) }
  93.   PROVIDE (__init_array_end = .);
  94.   PROVIDE (__fini_array_start = .);
  95.   .fini_array     : { KEEP (*(.fini_array)) }
  96.   PROVIDE (__fini_array_end = .);
  97.   .ctors          :
  98.   {
  99.     /* gcc uses crtbegin.o to find the start of
  100.        the constructors, so we make sure it is
  101.        first.  Because this is a wildcard, it
  102.        doesn't matter if the user does not
  103.        actually link against crtbegin.o; the
  104.        linker won't look for a file to match a
  105.        wildcard.  The wildcard also means that it
  106.        doesn't matter which directory crtbegin.o
  107.        is in.  */
  108.     KEEP (*crtbegin*.o(.ctors))
  109.     /* We don't want to include the .ctor section from
  110.        from the crtend.o file until after the sorted ctors.
  111.        The .ctor section from the crtend file contains the
  112.        end of ctors marker and it must be last */
  113.     KEEP (*(EXCLUDE_FILE (*crtend*.o ) .ctors))
  114.     KEEP (*(SORT(.ctors.*)))
  115.     KEEP (*(.ctors))
  116.   }
  117.   .dtors          :
  118.   {
  119.     KEEP (*crtbegin*.o(.dtors))
  120.     KEEP (*(EXCLUDE_FILE (*crtend*.o ) .dtors))
  121.     KEEP (*(SORT(.dtors.*)))
  122.     KEEP (*(.dtors))
  123.   }
  124.   .jcr            : { KEEP (*(.jcr)) }
  125.   .data.rel.ro : { *(.data.rel.ro.local) *(.data.rel.ro*) }
  126.   .dynamic        : { *(.dynamic) }
  127.   .got            : { *(.got.plt) *(.got) }
  128.   .data           :
  129.   {
  130.     __data_start = . ;
  131.     *(.data .data.* .gnu.linkonce.d.*)
  132.     KEEP (*(.gnu.linkonce.d.*personality*))
  133.     SORT(CONSTRUCTORS)
  134.   }
  135.   .data1          : { *(.data1) }
  136.   _edata = .;
  137.   PROVIDE (edata = .);
  138.   __bss_start = .;
  139.   __bss_start__ = .;
  140.   .bss            :
  141.   {
  142.    *(.dynbss)
  143.    *(.bss .bss.* .gnu.linkonce.b.*)
  144.    *(COMMON)
  145.    /* Align here to ensure that the .bss section occupies space up to
  146.       _end.  Align after .bss to ensure correct alignment even if the
  147.       .bss section disappears because there are no input sections.  */
  148.    . = ALIGN(32 / 8);
  149.   }
  150.   . = ALIGN(32 / 8);
  151.   _end = .;
  152.   _bss_end__ = . ; __bss_end__ = . ; __end__ = . ;
  153.   PROVIDE (end = .);
  154.   /* Stabs debugging sections.  */
  155.   .stab          0 : { *(.stab) }
  156.   .stabstr       0 : { *(.stabstr) }
  157.   .stab.excl     0 : { *(.stab.excl) }
  158.   .stab.exclstr  0 : { *(.stab.exclstr) }
  159.   .stab.index    0 : { *(.stab.index) }
  160.   .stab.indexstr 0 : { *(.stab.indexstr) }
  161.   .comment       0 : { *(.comment) }
  162.   /* DWARF debug sections.
  163.      Symbols in the DWARF debugging sections are relative to the beginning
  164.      of the section so we begin them at 0.  */
  165.   /* DWARF 1 */
  166.   .debug          0 : { *(.debug) }
  167.   .line           0 : { *(.line) }
  168.   /* GNU DWARF 1 extensions */
  169.   .debug_srcinfo  0 : { *(.debug_srcinfo) }
  170.   .debug_sfnames  0 : { *(.debug_sfnames) }
  171.   /* DWARF 1.1 and DWARF 2 */
  172.   .debug_aranges  0 : { *(.debug_aranges) }
  173.   .debug_pubnames 0 : { *(.debug_pubnames) }
  174.   /* DWARF 2 */
  175.   .debug_info     0 : { *(.debug_info .gnu.linkonce.wi.*) }
  176.   .debug_abbrev   0 : { *(.debug_abbrev) }
  177.   .debug_line     0 : { *(.debug_line) }
  178.   .debug_frame    0 : { *(.debug_frame) }
  179.   .debug_str      0 : { *(.debug_str) }
  180.   .debug_loc      0 : { *(.debug_loc) }
  181.   .debug_macinfo  0 : { *(.debug_macinfo) }
  182.   /* SGI/MIPS DWARF 2 extensions */
  183.   .debug_weaknames 0 : { *(.debug_weaknames) }
  184.   .debug_funcnames 0 : { *(.debug_funcnames) }
  185.   .debug_typenames 0 : { *(.debug_typenames) }
  186.   .debug_varnames  0 : { *(.debug_varnames) }
  187.     .stack         0x80000 :
  188.   {
  189.     _stack = .;
  190.     *(.stack)
  191.   }
  192.   .note.gnu.arm.ident 0 : { KEEP (*(.note.gnu.arm.ident)) }
  193.   /DISCARD/ : { *(.note.GNU-stack) }
  194. }