diff options
author | Jeff Law <law@redhat.com> | 1996-10-22 17:45:57 +0000 |
---|---|---|
committer | Jeff Law <law@redhat.com> | 1996-10-22 17:45:57 +0000 |
commit | 06c5b0fc96ac3ca2625cdf4f3fe5e67b1d8fb127 (patch) | |
tree | a26725c1683c828ddc211695ebd23dd1ca110d73 /ld/scripttempl | |
parent | 53845f94f71fe2f8603d2fe00a825703e30ca256 (diff) | |
download | gdb-06c5b0fc96ac3ca2625cdf4f3fe5e67b1d8fb127.zip gdb-06c5b0fc96ac3ca2625cdf4f3fe5e67b1d8fb127.tar.gz gdb-06c5b0fc96ac3ca2625cdf4f3fe5e67b1d8fb127.tar.bz2 |
* scriptempl/v850.sc: Move all "normal" sections into
the external memory region (0x100000 - 0x200000).
So plumhall works again (hopefully).
Diffstat (limited to 'ld/scripttempl')
-rw-r--r-- | ld/scripttempl/v850.sc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ld/scripttempl/v850.sc b/ld/scripttempl/v850.sc index c19d4f2..4398a76 100644 --- a/ld/scripttempl/v850.sc +++ b/ld/scripttempl/v850.sc @@ -35,6 +35,7 @@ SECTIONS .rela.plt : { *(.rela.plt) } .init : { *(.init) } =0 .plt : { *(.plt) } + . = 0x100000; .zdata : { *(.zdata) *(.zrodata) *(.zbss*) } .text : { @@ -50,7 +51,6 @@ SECTIONS .rodata1 : { *(.rodata1) } /* Adjust the address for the data segment. We want to adjust up to the same address within the page on the next page up. */ - . = 0x100000; .data : { *(.data) |