* scripttempl/v850.sc (.zdata): Add this before .text.

(.sdata): Also include .rosdata as part of the .sdata.
        (.tdata): Include this just before .sdata.
This commit is contained in:
Jeff Law 1996-10-17 20:48:42 +00:00
parent 6cc77b01e7
commit c23b6a6bc9
2 changed files with 7 additions and 1 deletions

View File

@ -7,6 +7,10 @@ end-sanitize-m32r
start-sanitize-v850
Thu Oct 17 10:56:49 1996 Jeffrey A Law (law@cygnus.com)
* scripttempl/v850.sc (.zdata): Add this before .text.
(.sdata): Also include .rosdata as part of the .sdata.
(.tdata): Include this just before .sdata.
* emulparms/v850.sh (SCRIPT_NAME): Use "v850" not "elf".
* scripttempl/v850.sc: Wrap script with a "cat << EOF".

View File

@ -35,6 +35,7 @@ SECTIONS
.rela.plt : { *(.rela.plt) }
.init : { *(.init) } =0
.plt : { *(.plt) }
.zdata : { *(.zdata) *(.zrodata) *(.zbss*) }
.text :
{
*(.text)
@ -71,10 +72,11 @@ SECTIONS
}
.got : { *(.got.plt) *(.got) }
.dynamic : { *(.dynamic) }
.tdata : { *(.tdata) }
/* We want the small data sections together, so single-instruction offsets
can access them all, and initialized data all before uninitialized, so
we can shorten the on-disk segment size. */
.sdata : { *(.sdata) }
.sdata : { *(.rosdata) *(.sdata) }
_edata = .;
PROVIDE (edata = .);
__bss_start = .;