Misc update

This commit is contained in:
mintsuki 2022-07-18 02:56:01 +02:00
parent c5954cb79a
commit 074ae10bb4
2 changed files with 11 additions and 8 deletions

View file

@ -36,11 +36,6 @@ SECTIONS
/* Move to the next memory page for .data */
. += CONSTANT(MAXPAGESIZE);
/* Not placing this here may cause trouble on some hosts */
.note.gnu.build-id : {
*(.note.gnu.build-id)
} :data
.data : {
*(.data .data.*)
} :data
@ -49,4 +44,9 @@ SECTIONS
*(COMMON)
*(.bss .bss.*)
} :data
/* Discard notes since they may cause issues on some hosts. */
/DISCARD/ : {
*(.note .note.*)
}
}