Fill .init and .fini sections with NOPs
This commit is contained in:
parent
07dbe97683
commit
f55ba3999c
2 changed files with 7 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
|||
1999-01-11 Nick Clifton <nickc@cygnus.com>
|
||||
|
||||
* scripttempl/fr30.sc: Fill .init and .fini sections with NOP
|
||||
pattern.
|
||||
|
||||
1999-01-03 Ken Raeburn <raeburn@cygnus.com>
|
||||
|
||||
* Makefile.am (check-DEJAGNU): No longer provide HOSTING_EMU,
|
||||
|
|
|
@ -32,7 +32,7 @@ SECTIONS
|
|||
.rela.bss : { *(.rela.bss) }
|
||||
.rel.plt : { *(.rel.plt) }
|
||||
.rela.plt : { *(.rela.plt) }
|
||||
.init : { KEEP (*(.init)) } =0
|
||||
.init : { KEEP (*(.init)) } =0x9fa0
|
||||
.plt : { *(.plt) }
|
||||
|
||||
.text : {
|
||||
|
@ -46,7 +46,7 @@ SECTIONS
|
|||
${RELOCATING+_etext = .;}
|
||||
${RELOCATING+PROVIDE (etext = .);}
|
||||
|
||||
.fini : { KEEP (*(.fini)) } =0
|
||||
.fini : { KEEP (*(.fini)) } =0x9fa0
|
||||
.rodata : { *(.rodata) ${RELOCATING+*(.rodata.*)} *(.gnu.linkonce.r*) }
|
||||
.rodata1 : { *(.rodata1) }
|
||||
|
||||
|
|
Loading…
Reference in a new issue