Home | History | Annotate | Download | only in ldscripts
      1 /* Default linker script, for normal executables */
      2 /* Modified for Android.  */
      3 OUTPUT_FORMAT("elf32-x86-64", "elf32-x86-64",
      4 	      "elf32-x86-64")
      5 OUTPUT_ARCH(i386:x64-32)
      6 ENTRY(_start)
      7 SECTIONS
      8 {
      9   /* Read-only sections, merged into text segment: */
     10   PROVIDE (__executable_start = 0x400000); . = 0x400000 + SIZEOF_HEADERS;
     11   .interp         : { *(.interp) }
     12   .note.gnu.build-id : { *(.note.gnu.build-id) }
     13   .hash           : { *(.hash) }
     14   .gnu.hash       : { *(.gnu.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   .rela.init      : { *(.rela.init) }
     21   .rela.text      : { *(.rela.text .rela.text.* .rela.gnu.linkonce.t.*) }
     22   .rela.fini      : { *(.rela.fini) }
     23   .rela.rodata    : { *(.rela.rodata .rela.rodata.* .rela.gnu.linkonce.r.*) }
     24   .rela.data.rel.ro   : { *(.rela.data.rel.ro .rela.data.rel.ro.* .rela.gnu.linkonce.d.rel.ro.*) }
     25   .rela.data      : { *(.rela.data .rela.data.* .rela.gnu.linkonce.d.*) }
     26   .rela.tdata	  : { *(.rela.tdata .rela.tdata.* .rela.gnu.linkonce.td.*) }
     27   .rela.tbss	  : { *(.rela.tbss .rela.tbss.* .rela.gnu.linkonce.tb.*) }
     28   .rela.ctors     : { *(.rela.ctors) }
     29   .rela.dtors     : { *(.rela.dtors) }
     30   .rela.got       : { *(.rela.got) }
     31   .rela.bss       : { *(.rela.bss .rela.bss.* .rela.gnu.linkonce.b.*) }
     32   .rela.ldata     : { *(.rela.ldata .rela.ldata.* .rela.gnu.linkonce.l.*) }
     33   .rela.lbss      : { *(.rela.lbss .rela.lbss.* .rela.gnu.linkonce.lb.*) }
     34   .rela.lrodata   : { *(.rela.lrodata .rela.lrodata.* .rela.gnu.linkonce.lr.*) }
     35   .rela.ifunc     : { *(.rela.ifunc) }
     36   .rela.plt       :
     37     {
     38       *(.rela.plt)
     39       PROVIDE_HIDDEN (__rela_iplt_start = .);
     40       *(.rela.iplt)
     41       PROVIDE_HIDDEN (__rela_iplt_end = .);
     42     }
     43   .init           :
     44   {
     45     KEEP (*(SORT_NONE(.init)))
     46   }
     47   .plt            : { *(.plt) *(.iplt) }
     48   .text           :
     49   {
     50     *(.text.unlikely .text.*_unlikely .text.unlikely.*)
     51     *(.text.exit .text.exit.*)
     52     *(.text.startup .text.startup.*)
     53     *(.text.hot .text.hot.*)
     54     *(.text .stub .text.* .gnu.linkonce.t.*)
     55     /* .gnu.warning sections are handled specially by elf32.em.  */
     56     *(.gnu.warning)
     57   }
     58   .fini           :
     59   {
     60     KEEP (*(SORT_NONE(.fini)))
     61   }
     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 { *(.gcc_except_table
     70   .gcc_except_table.*) }
     71   /* These sections are generated by the Sun/Oracle C++ compiler.  */
     72   .exception_ranges   : ONLY_IF_RO { *(.exception_ranges
     73   .exception_ranges*) }
     74   /* Adjust the address for the data segment.  For 32 bits we want to align
     75   at exactly a page boundary to make life easier for apriori. */
     76   . = ALIGN (CONSTANT (MAXPAGESIZE)); . = DATA_SEGMENT_ALIGN (CONSTANT (MAXPAGESIZE), CONSTANT (COMMONPAGESIZE));
     77   /* Exception handling  */
     78   .eh_frame       : ONLY_IF_RW { KEEP (*(.eh_frame)) }
     79   .gcc_except_table   : ONLY_IF_RW { *(.gcc_except_table .gcc_except_table.*) }
     80   .exception_ranges   : ONLY_IF_RW { *(.exception_ranges .exception_ranges*) }
     81   /* Thread Local Storage sections  */
     82   .tdata	  : { *(.tdata .tdata.* .gnu.linkonce.td.*) }
     83   .tbss		  : { *(.tbss .tbss.* .gnu.linkonce.tb.*) *(.tcommon) }
     84   /* Ensure the __preinit_array_start label is properly aligned.  We
     85      could instead move the label definition inside the section, but
     86      the linker would then create the section even if it turns out to
     87      be empty, which isn't pretty.  */
     88   . = ALIGN(32 / 8);
     89   PROVIDE_HIDDEN (__preinit_array_start = .);
     90   .preinit_array     :
     91   {
     92     KEEP (*(.preinit_array))
     93   }
     94   PROVIDE_HIDDEN (__preinit_array_end = .);
     95   PROVIDE_HIDDEN (__init_array_start = .);
     96   .init_array     :
     97   {
     98     KEEP (*crtbegin*.o(.init_array))
     99     KEEP (*(SORT_BY_INIT_PRIORITY(.init_array.*) SORT_BY_INIT_PRIORITY(.ctors.*)))
    100     KEEP (*(.init_array EXCLUDE_FILE (*crtbegin.o *crtbegin*.o *crtend.o *crtend*.o ) .ctors))
    101   }
    102   PROVIDE_HIDDEN (__init_array_end = .);
    103   PROVIDE_HIDDEN (__fini_array_start = .);
    104   .fini_array     :
    105   {
    106     KEEP (*crtbegin*.o(.fini_array))
    107     KEEP (*(SORT_BY_INIT_PRIORITY(.fini_array.*) SORT_BY_INIT_PRIORITY(.dtors.*)))
    108     KEEP (*(.fini_array EXCLUDE_FILE (*crtbegin.o *crtbegin*.o *crtend.o *crtend*.o ) .dtors))
    109   }
    110   PROVIDE_HIDDEN (__fini_array_end = .);
    111   .ctors          :
    112   {
    113     /* gcc uses crtbegin.o to find the start of
    114        the constructors, so we make sure it is
    115        first.  Because this is a wildcard, it
    116        doesn't matter if the user does not
    117        actually link against crtbegin.o; the
    118        linker won't look for a file to match a
    119        wildcard.  The wildcard also means that it
    120        doesn't matter which directory crtbegin.o
    121        is in.  */
    122     KEEP (*crtbegin.o(.ctors))
    123     KEEP (*crtbegin*.o(.ctors))
    124     /* We don't want to include the .ctor section from
    125        the crtend.o file until after the sorted ctors.
    126        The .ctor section from the crtend file contains the
    127        end of ctors marker and it must be last */
    128     KEEP (*(EXCLUDE_FILE (*crtend.o *crtend*.o ) .ctors))
    129     KEEP (*(SORT(.ctors.*)))
    130     KEEP (*(.ctors))
    131   }
    132   .dtors          :
    133   {
    134     KEEP (*crtbegin.o(.dtors))
    135     KEEP (*crtbegin*.o(.dtors))
    136     KEEP (*(EXCLUDE_FILE (*crtend.o *crtend*.o ) .dtors))
    137     KEEP (*(SORT(.dtors.*)))
    138     KEEP (*(.dtors))
    139   }
    140   .jcr            : { KEEP (*(.jcr)) }
    141   .data.rel.ro : { *(.data.rel.ro.local* .gnu.linkonce.d.rel.ro.local.*) *(.data.rel.ro .data.rel.ro.* .gnu.linkonce.d.rel.ro.*) }
    142   .dynamic        : { *(.dynamic) }
    143   .got            : { *(.got) *(.igot) }
    144   . = DATA_SEGMENT_RELRO_END (SIZEOF (.got.plt) >= 24 ? 24 : 0, .);
    145   .got.plt        : { *(.got.plt)  *(.igot.plt) }
    146   .data           :
    147   {
    148     *(.data .data.* .gnu.linkonce.d.*)
    149     SORT(CONSTRUCTORS)
    150   }
    151   .data1          : { *(.data1) }
    152   _edata = .; PROVIDE (edata = .);
    153   . = .;
    154   __bss_start = .;
    155   .bss            :
    156   {
    157    *(.dynbss)
    158    *(.bss .bss.* .gnu.linkonce.b.*)
    159    *(COMMON)
    160    /* Align here to ensure that the .bss section occupies space up to
    161       _end.  Align after .bss to ensure correct alignment even if the
    162       .bss section disappears because there are no input sections.  */
    163    . = ALIGN(32 / 8);
    164   }
    165   .lbss   :
    166   {
    167     *(.dynlbss)
    168     *(.lbss .lbss.* .gnu.linkonce.lb.*)
    169     *(LARGE_COMMON)
    170   }
    171   . = ALIGN(32 / 8);
    172   . = SEGMENT_START("ldata-segment", .);
    173   .lrodata   ALIGN(CONSTANT (MAXPAGESIZE)) + (. & (CONSTANT (MAXPAGESIZE) - 1)) :
    174   {
    175     *(.lrodata .lrodata.* .gnu.linkonce.lr.*)
    176   }
    177   .ldata   ALIGN(CONSTANT (MAXPAGESIZE)) + (. & (CONSTANT (MAXPAGESIZE) - 1)) :
    178   {
    179     *(.ldata .ldata.* .gnu.linkonce.l.*)
    180     . = ALIGN(. != 0 ? 32 / 8 : 1);
    181   }
    182   . = ALIGN(32 / 8);
    183   _end = .;
    184   _bss_end__ = . ; __bss_end__ = . ; __end__ = . ;
    185   PROVIDE (end = .);
    186   . = DATA_SEGMENT_END (.);
    187   /* Stabs debugging sections.  */
    188   .stab          0 : { *(.stab) }
    189   .stabstr       0 : { *(.stabstr) }
    190   .stab.excl     0 : { *(.stab.excl) }
    191   .stab.exclstr  0 : { *(.stab.exclstr) }
    192   .stab.index    0 : { *(.stab.index) }
    193   .stab.indexstr 0 : { *(.stab.indexstr) }
    194   .comment       0 : { *(.comment) }
    195   /* DWARF debug sections.
    196      Symbols in the DWARF debugging sections are relative to the beginning
    197      of the section so we begin them at 0.  */
    198   /* DWARF 1 */
    199   .debug          0 : { *(.debug) }
    200   .line           0 : { *(.line) }
    201   /* GNU DWARF 1 extensions */
    202   .debug_srcinfo  0 : { *(.debug_srcinfo) }
    203   .debug_sfnames  0 : { *(.debug_sfnames) }
    204   /* DWARF 1.1 and DWARF 2 */
    205   .debug_aranges  0 : { *(.debug_aranges) }
    206   .debug_pubnames 0 : { *(.debug_pubnames) }
    207   /* DWARF 2 */
    208   .debug_info     0 : { *(.debug_info .gnu.linkonce.wi.*) }
    209   .debug_abbrev   0 : { *(.debug_abbrev) }
    210   .debug_line     0 : { *(.debug_line .debug_line.* .debug_line_end ) }
    211   .debug_frame    0 : { *(.debug_frame) }
    212   .debug_str      0 : { *(.debug_str) }
    213   .debug_loc      0 : { *(.debug_loc) }
    214   .debug_macinfo  0 : { *(.debug_macinfo) }
    215   /* SGI/MIPS DWARF 2 extensions */
    216   .debug_weaknames 0 : { *(.debug_weaknames) }
    217   .debug_funcnames 0 : { *(.debug_funcnames) }
    218   .debug_typenames 0 : { *(.debug_typenames) }
    219   .debug_varnames  0 : { *(.debug_varnames) }
    220   /* DWARF 3 */
    221   .debug_pubtypes 0 : { *(.debug_pubtypes) }
    222   .debug_ranges   0 : { *(.debug_ranges) }
    223   /* DWARF Extension.  */
    224   .debug_macro    0 : { *(.debug_macro) }
    225   .gnu.attributes 0 : { KEEP (*(.gnu.attributes)) }
    226   /DISCARD/ : { *(.note.GNU-stack) *(.gnu_debuglink) *(.gnu.lto_*) *(.mdebug.*) }
    227 }
    228