45eff3df96
The linker script CONSTRUCTORS keyword is only meaningful "when linking object file formats which do not support arbitrary sections, such as ECOFF and XCOFF"[1] and is ignored for other object file formats. LLVM's lld does not yet accept (and ignore) CONSTRUCTORS, so just remove CONSTRUCTORS from the linker scripts as it has no effect. [1] https://sourceware.org/binutils/docs/ld/Output-Section-Keywords.html Reviewed by: kib Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D7343
60 lines
710 B
Plaintext
60 lines
710 B
Plaintext
/* $FreeBSD$ */
|
|
|
|
ENTRY(_start)
|
|
|
|
PHDRS {
|
|
text PT_LOAD FLAGS(0x7);
|
|
}
|
|
|
|
SECTIONS {
|
|
. = KERNLOADADDR + SIZEOF_HEADERS;
|
|
|
|
.text : {
|
|
*(.text)
|
|
*(.dynamic)
|
|
etext = .;
|
|
_etext = .;
|
|
. = ALIGN(0x2000);
|
|
} : text
|
|
|
|
. = ALIGN(0x2000);
|
|
.rodata : {
|
|
_fdata = .;
|
|
*(.rodata)
|
|
. = ALIGN(32);
|
|
}
|
|
|
|
.data : {
|
|
_rwdata = .;
|
|
*(.data)
|
|
. = ALIGN(32);
|
|
}
|
|
|
|
_gp = (. + 0x8000);
|
|
|
|
.sdata : {
|
|
_small_start = .;
|
|
*(.sdata)
|
|
. = ALIGN(32);
|
|
edata = .;
|
|
_edata = .;
|
|
} : text
|
|
|
|
.sbss : {
|
|
__bss_start = .;
|
|
_fbss = .;
|
|
*(.sbss) *(.scommon)
|
|
_small_end = .;
|
|
. = ALIGN(32);
|
|
}
|
|
|
|
.bss : {
|
|
*(.bss)
|
|
*(COMMON)
|
|
. = ALIGN(32);
|
|
_end = .;
|
|
end = .;
|
|
}
|
|
|
|
}
|