Misc update
This commit is contained in:
parent
c5954cb79a
commit
074ae10bb4
2 changed files with 11 additions and 8 deletions
|
@ -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.*)
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue