fix #6594
This commit is contained in:
parent
95e6b69b8e
commit
df74a617f1
|
@ -9,6 +9,7 @@ SECTIONS
|
|||
.text :
|
||||
{
|
||||
*(.init)
|
||||
*(.vectors)
|
||||
*(.text)
|
||||
*(.gnu.linkonce.t*)
|
||||
|
||||
|
@ -77,8 +78,10 @@ SECTIONS
|
|||
|
||||
. = ALIGN(4);
|
||||
__bss_start__ = .;
|
||||
__bss_start = .;
|
||||
.bss : { *(.bss)}
|
||||
__bss_end__ = .;
|
||||
__bss_end = .;
|
||||
|
||||
/* stabs debugging sections. */
|
||||
.stab 0 : { *(.stab) }
|
||||
|
|
Loading…
Reference in New Issue