From: Nick Clifton Date: Tue, 11 Feb 2003 18:02:55 +0000 (+0000) Subject: Add new data anchors defenitions. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=db6a5910645f4d680885702af2b3106d74e12315;p=binutils-gdb.git Add new data anchors defenitions. --- diff --git a/ld/ChangeLog b/ld/ChangeLog index c91f3718a6f..de11f83c96b 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,8 @@ +2003-02-11 Dmitry Diky + + * scripttempl/elf32msp430.sc: Add new data anchors defenitions. + * scripttempl/elf32msp430_3.sc: Likewise. + 2003-02-11 Uwe Stieber * configure.tgt: Add support for kaOS as cross build target diff --git a/ld/scripttempl/elf32msp430.sc b/ld/scripttempl/elf32msp430.sc index 763657650ea..ba6e03f77e9 100644 --- a/ld/scripttempl/elf32msp430.sc +++ b/ld/scripttempl/elf32msp430.sc @@ -184,5 +184,9 @@ SECTIONS .debug_macinfo 0 : { *(.debug_macinfo) } PROVIDE (__stack = ${STACK}) ; + PROVIDE (__data_start_rom = _etext) ; + PROVIDE (__data_end_rom = _etext + SIZEOF (.data)) ; + PROVIDE (__noinit_start_rom = _etext + SIZEOF (.data)) ; + PROVIDE (__noinit_end_rom = _etext + SIZEOF (.data) + SIZEOF (.noinit)) ; } EOF diff --git a/ld/scripttempl/elf32msp430_3.sc b/ld/scripttempl/elf32msp430_3.sc index 019e4b766d8..40259bfa1fb 100644 --- a/ld/scripttempl/elf32msp430_3.sc +++ b/ld/scripttempl/elf32msp430_3.sc @@ -153,5 +153,9 @@ SECTIONS .debug_macinfo 0 : { *(.debug_macinfo) } PROVIDE (__stack = ${STACK}) ; + PROVIDE (__data_start_rom = _etext) ; + PROVIDE (__data_end_rom = _etext + SIZEOF (.data)) ; + PROVIDE (__noinit_start_rom = _etext + SIZEOF (.data)) ; + PROVIDE (__noinit_end_rom = _etext + SIZEOF (.data) + SIZEOF (.noinit)) ; } EOF