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

嵌入式Linux

开发平台:

Unix_Linux

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