82 lines
3.7 KiB
Plaintext
82 lines
3.7 KiB
Plaintext
/*-*- mode: ld-script; indent-tabs-mode: nil; tab-width: 2; coding: utf-8 -*-│
|
|
│vi: set et sts=2 tw=2 fenc=utf-8 :vi│
|
|
╞══════════════════════════════════════════════════════════════════════════════╡
|
|
│ Copyright 2020 Justine Alexandra Roberts Tunney │
|
|
│ │
|
|
│ This program is free software; you can redistribute it and/or modify │
|
|
│ it under the terms of the GNU General Public License as published by │
|
|
│ the Free Software Foundation; version 2 of the License. │
|
|
│ │
|
|
│ This program is distributed in the hope that it will be useful, but │
|
|
│ WITHOUT ANY WARRANTY; without even the implied warranty of │
|
|
│ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU │
|
|
│ General Public License for more details. │
|
|
│ │
|
|
│ You should have received a copy of the GNU General Public License │
|
|
│ along with this program; if not, write to the Free Software │
|
|
│ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA │
|
|
│ 02110-1301 USA │
|
|
╚─────────────────────────────────────────────────────────────────────────────*/
|
|
|
|
ENTRY(_start)
|
|
|
|
SECTIONS {
|
|
|
|
.text IMAGE_BASE_VIRTUAL : {
|
|
*(.start)
|
|
KEEP(*(.initprologue))
|
|
KEEP(*(SORT_BY_NAME(.init.*)))
|
|
KEEP(*(SORT_NONE(.init)))
|
|
KEEP(*(.initepilogue))
|
|
*(.text .text.*)
|
|
*(.privileged)
|
|
*(.rodata .rodata.*)
|
|
KEEP(*(.initroprologue))
|
|
KEEP(*(SORT_BY_NAME(.initro.*)))
|
|
KEEP(*(.initroepilogue))
|
|
*(.ubsan.types)
|
|
*(.ubsan.data)
|
|
*(.data .data.*)
|
|
*(.bss .bss.*)
|
|
*(COMMON)
|
|
}
|
|
|
|
.gnu_debuglink 0 : { *(.gnu_debuglink) }
|
|
.stab 0 : { *(.stab) }
|
|
.stabstr 0 : { *(.stabstr) }
|
|
.stab.excl 0 : { *(.stab.excl) }
|
|
.stab.exclstr 0 : { *(.stab.exclstr) }
|
|
.stab.index 0 : { *(.stab.index) }
|
|
.stab.indexstr 0 : { *(.stab.indexstr) }
|
|
.debug 0 : { *(.debug) }
|
|
.line 0 : { *(.line) }
|
|
.debug_srcinfo 0 : { *(.debug_srcinfo) }
|
|
.debug_sfnames 0 : { *(.debug_sfnames) }
|
|
.debug_aranges 0 : { *(.debug_aranges) }
|
|
.debug_pubnames 0 : { *(.debug_pubnames) }
|
|
.debug_info 0 : { *(.debug_info .gnu.linkonce.wi.*) }
|
|
.debug_abbrev 0 : { *(.debug_abbrev) }
|
|
.debug_line 0 : { *(.debug_line .debug_line.* .debug_line_end ) }
|
|
.debug_frame 0 : { *(.debug_frame) }
|
|
.debug_str 0 : { *(.debug_str) }
|
|
.debug_loc 0 : { *(.debug_loc) }
|
|
.debug_macinfo 0 : { *(.debug_macinfo) }
|
|
.debug_weaknames 0 : { *(.debug_weaknames) }
|
|
.debug_funcnames 0 : { *(.debug_funcnames) }
|
|
.debug_typenames 0 : { *(.debug_typenames) }
|
|
.debug_varnames 0 : { *(.debug_varnames) }
|
|
.debug_pubtypes 0 : { *(.debug_pubtypes) }
|
|
.debug_ranges 0 : { *(.debug_ranges) }
|
|
.debug_macro 0 : { *(.debug_macro) }
|
|
.debug_addr 0 : { *(.debug_addr) }
|
|
.gnu.attributes 0 : { KEEP(*(.gnu.attributes)) }
|
|
|
|
/DISCARD/ : {
|
|
*(.GCC.command.line)
|
|
*(.comment)
|
|
*(.discard)
|
|
*(.yoink)
|
|
*(.*)
|
|
}
|
|
}
|