linker.ld: Better solution for workaround in 3a71b67

This commit is contained in:
mintsuki 2022-06-26 21:53:33 +02:00
parent 1929fda490
commit 8d9603b566

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,10 @@ SECTIONS
*(COMMON)
*(.bss .bss.*)
} :data
/* Discard unused sections from object files that may cause issues. */
/DISCARD/ : {
*.o(*)
*.a:*(*)
}
}