Home | History | Annotate | Download | only in ldscripts
      1 /* Script for ld -pie: link position independent executable */
      2 /* Copyright (C) 2014-2016 Free Software Foundation, Inc.
      3    Copying and distribution of this script, with or without modification,
      4    are permitted in any medium without royalty provided the copyright
      5    notice and this notice are preserved.  */
      6 OUTPUT_FORMAT("elf32-x86-64", "elf32-x86-64",
      7 	      "elf32-x86-64")
      8 OUTPUT_ARCH(i386:x64-32)
      9 ENTRY(_start)
     10 SEARCH_DIR("=/tmp/1285d9c885c98a78fb8e48ce0e3cec51/x86_64-linux-android/libx32"); SEARCH_DIR("=/usr/local/libx32"); SEARCH_DIR("=/libx32"); SEARCH_DIR("=/usr/libx32"); SEARCH_DIR("=/tmp/1285d9c885c98a78fb8e48ce0e3cec51/x86_64-linux-android/lib"); SEARCH_DIR("=/usr/local/lib"); SEARCH_DIR("=/lib"); SEARCH_DIR("=/usr/lib");
     11 SECTIONS
     12 {
     13   /* Read-only sections, merged into text segment: */
     14   PROVIDE (__executable_start = SEGMENT_START("text-segment", 0)); . = SEGMENT_START("text-segment", 0) + SIZEOF_HEADERS;
     15   .interp         : { *(.interp) }
     16   .note.gnu.build-id : { *(.note.gnu.build-id) }
     17   .hash           : { *(.hash) }
     18   .gnu.hash       : { *(.gnu.hash) }
     19   .dynsym         : { *(.dynsym) }
     20   .dynstr         : { *(.dynstr) }
     21   .gnu.version    : { *(.gnu.version) }
     22   .gnu.version_d  : { *(.gnu.version_d) }
     23   .gnu.version_r  : { *(.gnu.version_r) }
     24   .rela.init      : { *(.rela.init) }
     25   .rela.text      : { *(.rela.text .rela.text.* .rela.gnu.linkonce.t.*) }
     26   .rela.fini      : { *(.rela.fini) }
     27   .rela.rodata    : { *(.rela.rodata .rela.rodata.* .rela.gnu.linkonce.r.*) }
     28   .rela.data.rel.ro   : { *(.rela.data.rel.ro .rela.data.rel.ro.* .rela.gnu.linkonce.d.rel.ro.*) }
     29   .rela.data      : { *(.rela.data .rela.data.* .rela.gnu.linkonce.d.*) }
     30   .rela.tdata	  : { *(.rela.tdata .rela.tdata.* .rela.gnu.linkonce.td.*) }
     31   .rela.tbss	  : { *(.rela.tbss .rela.tbss.* .rela.gnu.linkonce.tb.*) }
     32   .rela.ctors     : { *(.rela.ctors) }
     33   .rela.dtors     : { *(.rela.dtors) }
     34   .rela.got       : { *(.rela.got) }
     35   .rela.bss       : { *(.rela.bss .rela.bss.* .rela.gnu.linkonce.b.*) }
     36   .rela.ldata     : { *(.rela.ldata .rela.ldata.* .rela.gnu.linkonce.l.*) }
     37   .rela.lbss      : { *(.rela.lbss .rela.lbss.* .rela.gnu.linkonce.lb.*) }
     38   .rela.lrodata   : { *(.rela.lrodata .rela.lrodata.* .rela.gnu.linkonce.lr.*) }
     39   .rela.ifunc     : { *(.rela.ifunc) }
     40   .rela.plt       :
     41     {
     42       *(.rela.plt)
     43       PROVIDE_HIDDEN (__rela_iplt_start = .);
     44       *(.rela.iplt)
     45       PROVIDE_HIDDEN (__rela_iplt_end = .);
     46     }
     47   .init           :
     48   {
     49     KEEP (*(SORT_NONE(.init)))
     50   }
     51   .plt            : { *(.plt) *(.iplt) }
     52   .text           :
     53   {
     54     *(.text.unlikely .text.*_unlikely .text.unlikely.*)
     55     *(.text.exit .text.exit.*)
     56     *(.text.startup .text.startup.*)
     57     *(.text.hot .text.hot.*)
     58     *(.text .stub .text.* .gnu.linkonce.t.*)
     59     /* .gnu.warning sections are handled specially by elf32.em.  */
     60     *(.gnu.warning)
     61   }
     62   .fini           :
     63   {
     64     KEEP (*(SORT_NONE(.fini)))
     65   }
     66   PROVIDE (__etext = .);
     67   PROVIDE (_etext = .);
     68   PROVIDE (etext = .);
     69   .rodata         : { *(.rodata .rodata.* .gnu.linkonce.r.*) }
     70   .rodata1        : { *(.rodata1) }
     71   .eh_frame_hdr : { *(.eh_frame_hdr) *(.eh_frame_entry .eh_frame_entry.*) }
     72   .eh_frame       : ONLY_IF_RO { KEEP (*(.eh_frame)) *(.eh_frame.*) }
     73   .gcc_except_table   : ONLY_IF_RO { *(.gcc_except_table
     74   .gcc_except_table.*) }
     75   .gnu_extab   : ONLY_IF_RO { *(.gnu_extab*) }
     76   /* These sections are generated by the Sun/Oracle C++ compiler.  */
     77   .exception_ranges   : ONLY_IF_RO { *(.exception_ranges
     78   .exception_ranges*) }
     79   /* Adjust the address for the data segment.  We want to adjust up to
     80      the same address within the page on the next page up.  */
     81   . = DATA_SEGMENT_ALIGN (CONSTANT (MAXPAGESIZE), CONSTANT (COMMONPAGESIZE));
     82   /* Exception handling  */
     83   .eh_frame       : ONLY_IF_RW { KEEP (*(.eh_frame)) *(.eh_frame.*) }
     84   .gnu_extab      : ONLY_IF_RW { *(.gnu_extab) }
     85   .gcc_except_table   : ONLY_IF_RW { *(.gcc_except_table .gcc_except_table.*) }
     86   .exception_ranges   : ONLY_IF_RW { *(.exception_ranges .exception_ranges*) }
     87   /* Thread Local Storage sections  */
     88   .tdata	  : { *(.tdata .tdata.* .gnu.linkonce.td.*) }
     89   .tbss		  : { *(.tbss .tbss.* .gnu.linkonce.tb.*) *(.tcommon) }
     90   .preinit_array     :
     91   {
     92     PROVIDE_HIDDEN (__preinit_array_start = .);
     93     KEEP (*(.preinit_array))
     94     PROVIDE_HIDDEN (__preinit_array_end = .);
     95   }
     96   .init_array     :
     97   {
     98     PROVIDE_HIDDEN (__init_array_start = .);
     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     PROVIDE_HIDDEN (__init_array_end = .);
    102   }
    103   .fini_array     :
    104   {
    105     PROVIDE_HIDDEN (__fini_array_start = .);
    106     KEEP (*(SORT_BY_INIT_PRIORITY(.fini_array.*) SORT_BY_INIT_PRIORITY(.dtors.*)))
    107     KEEP (*(.fini_array EXCLUDE_FILE (*crtbegin.o *crtbegin?.o *crtend.o *crtend?.o ) .dtors))
    108     PROVIDE_HIDDEN (__fini_array_end = .);
    109   }
    110   .ctors          :
    111   {
    112     /* gcc uses crtbegin.o to find the start of
    113        the constructors, so we make sure it is
    114        first.  Because this is a wildcard, it
    115        doesn't matter if the user does not
    116        actually link against crtbegin.o; the
    117        linker won't look for a file to match a
    118        wildcard.  The wildcard also means that it
    119        doesn't matter which directory crtbegin.o
    120        is in.  */
    121     KEEP (*crtbegin.o(.ctors))
    122     KEEP (*crtbegin?.o(.ctors))
    123     /* We don't want to include the .ctor section from
    124        the crtend.o file until after the sorted ctors.
    125        The .ctor section from the crtend file contains the
    126        end of ctors marker and it must be last */
    127     KEEP (*(EXCLUDE_FILE (*crtend.o *crtend?.o ) .ctors))
    128     KEEP (*(SORT(.ctors.*)))
    129     KEEP (*(.ctors))
    130   }
    131   .dtors          :
    132   {
    133     KEEP (*crtbegin.o(.dtors))
    134     KEEP (*crtbegin?.o(.dtors))
    135     KEEP (*(EXCLUDE_FILE (*crtend.o *crtend?.o ) .dtors))
    136     KEEP (*(SORT(.dtors.*)))
    137     KEEP (*(.dtors))
    138   }
    139   .jcr            : { KEEP (*(.jcr)) }
    140   .data.rel.ro : { *(.data.rel.ro.local* .gnu.linkonce.d.rel.ro.local.*) *(.data.rel.ro .data.rel.ro.* .gnu.linkonce.d.rel.ro.*) }
    141   .dynamic        : { *(.dynamic) }
    142   .got            : { *(.got) *(.igot) }
    143   . = DATA_SEGMENT_RELRO_END (SIZEOF (.got.plt) >= 24 ? 24 : 0, .);
    144   .got.plt        : { *(.got.plt)  *(.igot.plt) }
    145   .data           :
    146   {
    147     *(.data .data.* .gnu.linkonce.d.*)
    148     SORT(CONSTRUCTORS)
    149   }
    150   .data1          : { *(.data1) }
    151   _edata = .; PROVIDE (edata = .);
    152   __bss_start = .;
    153   .bss            :
    154   {
    155    *(.dynbss)
    156    *(.bss .bss.* .gnu.linkonce.b.*)
    157    *(COMMON)
    158    /* Align here to ensure that the .bss section occupies space up to
    159       _end.  Align after .bss to ensure correct alignment even if the
    160       .bss section disappears because there are no input sections.
    161       FIXME: Why do we need it? When there is no .bss section, we don't
    162       pad the .data section.  */
    163    . = ALIGN(. != 0 ? 32 / 8 : 1);
    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 = .; PROVIDE (end = .);
    184   . = DATA_SEGMENT_END (.);
    185   /* Stabs debugging sections.  */
    186   .stab          0 : { *(.stab) }
    187   .stabstr       0 : { *(.stabstr) }
    188   .stab.excl     0 : { *(.stab.excl) }
    189   .stab.exclstr  0 : { *(.stab.exclstr) }
    190   .stab.index    0 : { *(.stab.index) }
    191   .stab.indexstr 0 : { *(.stab.indexstr) }
    192   .comment       0 : { *(.comment) }
    193   /* DWARF debug sections.
    194      Symbols in the DWARF debugging sections are relative to the beginning
    195      of the section so we begin them at 0.  */
    196   /* DWARF 1 */
    197   .debug          0 : { *(.debug) }
    198   .line           0 : { *(.line) }
    199   /* GNU DWARF 1 extensions */
    200   .debug_srcinfo  0 : { *(.debug_srcinfo) }
    201   .debug_sfnames  0 : { *(.debug_sfnames) }
    202   /* DWARF 1.1 and DWARF 2 */
    203   .debug_aranges  0 : { *(.debug_aranges) }
    204   .debug_pubnames 0 : { *(.debug_pubnames) }
    205   /* DWARF 2 */
    206   .debug_info     0 : { *(.debug_info .gnu.linkonce.wi.*) }
    207   .debug_abbrev   0 : { *(.debug_abbrev) }
    208   .debug_line     0 : { *(.debug_line .debug_line.* .debug_line_end ) }
    209   .debug_frame    0 : { *(.debug_frame) }
    210   .debug_str      0 : { *(.debug_str) }
    211   .debug_loc      0 : { *(.debug_loc) }
    212   .debug_macinfo  0 : { *(.debug_macinfo) }
    213   /* SGI/MIPS DWARF 2 extensions */
    214   .debug_weaknames 0 : { *(.debug_weaknames) }
    215   .debug_funcnames 0 : { *(.debug_funcnames) }
    216   .debug_typenames 0 : { *(.debug_typenames) }
    217   .debug_varnames  0 : { *(.debug_varnames) }
    218   /* DWARF 3 */
    219   .debug_pubtypes 0 : { *(.debug_pubtypes) }
    220   .debug_ranges   0 : { *(.debug_ranges) }
    221   /* DWARF Extension.  */
    222   .debug_macro    0 : { *(.debug_macro) }
    223   .debug_addr     0 : { *(.debug_addr) }
    224   .gnu.attributes 0 : { KEEP (*(.gnu.attributes)) }
    225   /DISCARD/ : { *(.note.GNU-stack) *(.gnu_debuglink) *(.gnu.lto_*) }
    226 }
    227