mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-01-31 03:27:39 +00:00
67 lines
3.3 KiB
Text
67 lines
3.3 KiB
Text
|
/*-*- 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 2021 Justine Alexandra Roberts Tunney │
|
||
|
│ │
|
||
|
│ Permission to use, copy, modify, and/or distribute this software for │
|
||
|
│ any purpose with or without fee is hereby granted, provided that the │
|
||
|
│ above copyright notice and this permission notice appear in all copies. │
|
||
|
│ │
|
||
|
│ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL │
|
||
|
│ WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED │
|
||
|
│ WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE │
|
||
|
│ AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL │
|
||
|
│ DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR │
|
||
|
│ PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER │
|
||
|
│ TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR │
|
||
|
│ PERFORMANCE OF THIS SOFTWARE. │
|
||
|
╚─────────────────────────────────────────────────────────────────────────────*/
|
||
|
|
||
|
ENTRY(_start)
|
||
|
|
||
|
SECTIONS {
|
||
|
|
||
|
. = 0x200000 + SIZEOF_HEADERS;
|
||
|
|
||
|
.text : {
|
||
|
*(.text .text.*)
|
||
|
*(.rodata .rodata.*)
|
||
|
*(.data .data.*)
|
||
|
*(.bss .bss.*)
|
||
|
}
|
||
|
|
||
|
.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/ : {
|
||
|
*(.*)
|
||
|
}
|
||
|
}
|