|
@@ -8,6 +8,8 @@ SECTIONS
|
|
|
/* .hash and/or .gnu.hash MUST come first! */
|
|
|
.hash : { *(.hash) }
|
|
|
.gnu.hash : { *(.gnu.hash) }
|
|
|
+ .eh_frame : { *(.eh_frame) }
|
|
|
+ .gcc_except_table : { *(.gcc_except_table*) }
|
|
|
. = ALIGN(4096);
|
|
|
.text :
|
|
|
{
|
|
@@ -45,7 +47,7 @@ SECTIONS
|
|
|
*(.sbss)
|
|
|
*(.scommon)
|
|
|
*(.dynbss)
|
|
|
- *(.bss)
|
|
|
+ *(.bss*)
|
|
|
*(COMMON)
|
|
|
}
|
|
|
.note.gnu.build-id : { *(.note.gnu.build-id) }
|
|
@@ -82,7 +84,6 @@ SECTIONS
|
|
|
/DISCARD/ :
|
|
|
{
|
|
|
*(.rel.reloc)
|
|
|
- *(.eh_frame)
|
|
|
*(.note.GNU-stack)
|
|
|
}
|
|
|
.comment 0 : { *(.comment) }
|