2021-09-04 07:58:21 +00:00
|
|
|
/*-*- mode: ld-script; indent-tabs-mode: nil; tab-width: 2; coding: utf-8 -*-│
|
|
|
|
│ vi: set et sts=2 sw=2 fenc=utf-8 :vi │
|
|
|
|
╞══════════════════════════════════════════════════════════════════════════════╡
|
2023-07-24 00:07:38 +00:00
|
|
|
│ Copyright 2023 Justine Alexandra Roberts Tunney │
|
2021-09-04 07:58:21 +00:00
|
|
|
│ │
|
|
|
|
│ 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. │
|
|
|
|
╚─────────────────────────────────────────────────────────────────────────────*/
|
2023-07-24 00:07:38 +00:00
|
|
|
|
|
|
|
ENTRY(ElfEntrypoint)
|
|
|
|
|
|
|
|
PHDRS {
|
|
|
|
text PT_LOAD FLAGS(1) FILEHDR PHDRS; /* PF_X */
|
|
|
|
rodata PT_LOAD FLAGS(4); /* PF_R */
|
|
|
|
stack PT_GNU_STACK FLAGS(6); /* PF_W|PF_R */
|
|
|
|
note PT_NOTE FLAGS(4); /* PF_R */
|
|
|
|
}
|
2021-09-04 07:58:21 +00:00
|
|
|
|
|
|
|
SECTIONS {
|
2023-07-24 00:07:38 +00:00
|
|
|
|
|
|
|
. = SEGMENT_START("text-segment", 0x7f000000);
|
2023-07-11 11:29:33 +00:00
|
|
|
__executable_start = .;
|
2023-07-24 00:07:38 +00:00
|
|
|
. += SIZEOF_HEADERS;
|
|
|
|
|
|
|
|
.macho : {
|
|
|
|
KEEP(*(.macho))
|
|
|
|
} :text
|
|
|
|
|
|
|
|
.note : {
|
|
|
|
KEEP(*(.note))
|
|
|
|
} :text :note
|
|
|
|
|
2023-07-01 12:10:12 +00:00
|
|
|
.text : {
|
2023-07-24 00:07:38 +00:00
|
|
|
*(.text .text.* .gnu.linkonce.t.*)
|
|
|
|
} :text
|
|
|
|
|
|
|
|
.rodata ALIGN(CONSTANT(COMMONPAGESIZE)) : {
|
|
|
|
*(.rodata .rodata.* .gnu.linkonce.r.*)
|
|
|
|
} :rodata
|
|
|
|
|
|
|
|
.stack : {
|
|
|
|
*(.stack)
|
|
|
|
} :stack
|
|
|
|
|
2023-07-11 11:29:33 +00:00
|
|
|
_end = .;
|
2023-07-24 00:07:38 +00:00
|
|
|
|
|
|
|
.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) }
|
|
|
|
.gnu.build.attributes : { *(.gnu.build.attributes .gnu.build.attributes.*) }
|
|
|
|
.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) }
|
|
|
|
.debug_loclists 0 : { *(.debug_loclists) }
|
|
|
|
.debug_rnglists 0 : { *(.debug_rnglists) }
|
|
|
|
.debug_line_str 0 : { *(.debug_line_str) }
|
|
|
|
.debug_extra 0 : { *(.debug_line_str) }
|
|
|
|
.debug_pubtypes 0 : { *(.debug_pubtypes) }
|
|
|
|
.gnu.attributes 0 : { KEEP(*(.gnu.attributes)) }
|
|
|
|
|
2021-09-04 07:58:21 +00:00
|
|
|
/DISCARD/ : {
|
|
|
|
*(.*)
|
|
|
|
}
|
|
|
|
}
|