diff options
author | Nick Clifton <nickc@redhat.com> | 2003-04-18 08:26:17 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2003-04-18 08:26:17 +0000 |
commit | 517ed4859c817850493617d689868c3ebb0a7a3b (patch) | |
tree | b31f6204e4156b705496257250160fea0e50795e /ld | |
parent | 4081944fd18906dd26c21c8bac6aa4f6671bdabf (diff) | |
download | gdb-517ed4859c817850493617d689868c3ebb0a7a3b.zip gdb-517ed4859c817850493617d689868c3ebb0a7a3b.tar.gz gdb-517ed4859c817850493617d689868c3ebb0a7a3b.tar.bz2 |
Define __data and __rdata
Diffstat (limited to 'ld')
-rw-r--r-- | ld/ChangeLog | 4 | ||||
-rw-r--r-- | ld/scripttempl/xstormy16.sc | 2 |
2 files changed, 6 insertions, 0 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog index 76323c2..c097057 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,7 @@ +2003-04-18 Andrew Haley <aph@cambridge.redhat.com> + + * scripttempl/xstormy16.sc (__data, __rdata): New. + 2003-04-16 Nick Clifton <nickc@redhat.com> * scripttempl/xstormy16.sc: Add .jcr section mapping. diff --git a/ld/scripttempl/xstormy16.sc b/ld/scripttempl/xstormy16.sc index 6d4210e..a74df07 100644 --- a/ld/scripttempl/xstormy16.sc +++ b/ld/scripttempl/xstormy16.sc @@ -117,6 +117,8 @@ SECTIONS { .data ${RELOCATING-0} : { + ${RELOCATING+__rdata = .;} + ${RELOCATING+__data = .;} ${RELOCATING+${DATA_START_SYMBOLS}} *(.data) ${RELOCATING+*(.data.*)} |