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

嵌入式Linux

开发平台:

Unix_Linux

  1. /* Script for ld --shared: link shared library */
  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.   . = 0 + SIZEOF_HEADERS;
  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.   .eh_frame_hdr : { *(.eh_frame_hdr) }
  68.   .eh_frame       : ONLY_IF_RO { KEEP (*(.eh_frame)) }
  69.   .gcc_except_table   : ONLY_IF_RO { KEEP (*(.gcc_except_table)) *(.gcc_except_table.*) }
  70.   /* Adjust the address for the data segment.  We want to adjust up to
  71.      the same address within the page on the next page up.  */
  72.   . = ALIGN (0x8000) - ((0x8000 - .) & (0x8000 - 1)); . = DATA_SEGMENT_ALIGN (0x8000, 0x1000);
  73.   /* Exception handling  */
  74.   .eh_frame       : ONLY_IF_RW { KEEP (*(.eh_frame)) }
  75.   .gcc_except_table   : ONLY_IF_RW { KEEP (*(.gcc_except_table)) *(.gcc_except_table.*) }
  76.   /* Thread Local Storage sections  */
  77.   .tdata   : { *(.tdata .tdata.* .gnu.linkonce.td.*) }
  78.   .tbss   : { *(.tbss .tbss.* .gnu.linkonce.tb.*) *(.tcommon) }
  79.   /* Ensure the __preinit_array_start label is properly aligned.  We
  80.      could instead move the label definition inside the section, but
  81.      the linker would then create the section even if it turns out to
  82.      be empty, which isn't pretty.  */
  83.   . = ALIGN(32 / 8);
  84.   .preinit_array     : { KEEP (*(.preinit_array)) }
  85.   .init_array     : { KEEP (*(.init_array)) }
  86.   .fini_array     : { KEEP (*(.fini_array)) }
  87.   .ctors          :
  88.   {
  89.     /* gcc uses crtbegin.o to find the start of
  90.        the constructors, so we make sure it is
  91.        first.  Because this is a wildcard, it
  92.        doesn't matter if the user does not
  93.        actually link against crtbegin.o; the
  94.        linker won't look for a file to match a
  95.        wildcard.  The wildcard also means that it
  96.        doesn't matter which directory crtbegin.o
  97.        is in.  */
  98.     KEEP (*crtbegin*.o(.ctors))
  99.     /* We don't want to include the .ctor section from
  100.        from the crtend.o file until after the sorted ctors.
  101.        The .ctor section from the crtend file contains the
  102.        end of ctors marker and it must be last */
  103.     KEEP (*(EXCLUDE_FILE (*crtend*.o ) .ctors))
  104.     KEEP (*(SORT(.ctors.*)))
  105.     KEEP (*(.ctors))
  106.   }
  107.   .dtors          :
  108.   {
  109.     KEEP (*crtbegin*.o(.dtors))
  110.     KEEP (*(EXCLUDE_FILE (*crtend*.o ) .dtors))
  111.     KEEP (*(SORT(.dtors.*)))
  112.     KEEP (*(.dtors))
  113.   }
  114.   .jcr            : { KEEP (*(.jcr)) }
  115.   .data.rel.ro : { *(.data.rel.ro.local) *(.data.rel.ro*) }
  116.   .dynamic        : { *(.dynamic) }
  117.   . = DATA_SEGMENT_RELRO_END (0, .);
  118.   .got            : { *(.got.plt) *(.got) }
  119.   .data           :
  120.   {
  121.     __data_start = . ;
  122.     *(.data .data.* .gnu.linkonce.d.*)
  123.     KEEP (*(.gnu.linkonce.d.*personality*))
  124.     SORT(CONSTRUCTORS)
  125.   }
  126.   .data1          : { *(.data1) }
  127.   _edata = .;
  128.   PROVIDE (edata = .);
  129.   __bss_start = .;
  130.   __bss_start__ = .;
  131.   .bss            :
  132.   {
  133.    *(.dynbss)
  134.    *(.bss .bss.* .gnu.linkonce.b.*)
  135.    *(COMMON)
  136.    /* Align here to ensure that the .bss section occupies space up to
  137.       _end.  Align after .bss to ensure correct alignment even if the
  138.       .bss section disappears because there are no input sections.  */
  139.    . = ALIGN(32 / 8);
  140.   }
  141.   . = ALIGN(32 / 8);
  142.   _end = .;
  143.   _bss_end__ = . ; __bss_end__ = . ; __end__ = . ;
  144.   PROVIDE (end = .);
  145.   . = DATA_SEGMENT_END (.);
  146.   /* Stabs debugging sections.  */
  147.   .stab          0 : { *(.stab) }
  148.   .stabstr       0 : { *(.stabstr) }
  149.   .stab.excl     0 : { *(.stab.excl) }
  150.   .stab.exclstr  0 : { *(.stab.exclstr) }
  151.   .stab.index    0 : { *(.stab.index) }
  152.   .stab.indexstr 0 : { *(.stab.indexstr) }
  153.   .comment       0 : { *(.comment) }
  154.   /* DWARF debug sections.
  155.      Symbols in the DWARF debugging sections are relative to the beginning
  156.      of the section so we begin them at 0.  */
  157.   /* DWARF 1 */
  158.   .debug          0 : { *(.debug) }
  159.   .line           0 : { *(.line) }
  160.   /* GNU DWARF 1 extensions */
  161.   .debug_srcinfo  0 : { *(.debug_srcinfo) }
  162.   .debug_sfnames  0 : { *(.debug_sfnames) }
  163.   /* DWARF 1.1 and DWARF 2 */
  164.   .debug_aranges  0 : { *(.debug_aranges) }
  165.   .debug_pubnames 0 : { *(.debug_pubnames) }
  166.   /* DWARF 2 */
  167.   .debug_info     0 : { *(.debug_info .gnu.linkonce.wi.*) }
  168.   .debug_abbrev   0 : { *(.debug_abbrev) }
  169.   .debug_line     0 : { *(.debug_line) }
  170.   .debug_frame    0 : { *(.debug_frame) }
  171.   .debug_str      0 : { *(.debug_str) }
  172.   .debug_loc      0 : { *(.debug_loc) }
  173.   .debug_macinfo  0 : { *(.debug_macinfo) }
  174.   /* SGI/MIPS DWARF 2 extensions */
  175.   .debug_weaknames 0 : { *(.debug_weaknames) }
  176.   .debug_funcnames 0 : { *(.debug_funcnames) }
  177.   .debug_typenames 0 : { *(.debug_typenames) }
  178.   .debug_varnames  0 : { *(.debug_varnames) }
  179.   .note.gnu.arm.ident 0 : { KEEP (*(.note.gnu.arm.ident)) }
  180.   /DISCARD/ : { *(.note.GNU-stack) }
  181. }