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