This commit is contained in:
yangjie11 2023-03-31 17:26:04 +08:00 committed by guo
parent 95e6b69b8e
commit df74a617f1
1 changed files with 7 additions and 4 deletions

View File

@ -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) }