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

嵌入式Linux

开发平台:

Unix_Linux

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