2006-02-08 Joel Sherrill <joel@OARcorp.com>

* startup/linkcmds.dl: Add sections required by newer gcc versions.
This commit is contained in:
Joel Sherrill
2006-02-08 12:26:28 +00:00
parent ff167ec45c
commit 894fc7f80a
2 changed files with 7 additions and 3 deletions

View File

@@ -1,3 +1,7 @@
2006-02-08 Joel Sherrill <joel@OARcorp.com>
* startup/linkcmds.dl: Add sections required by newer gcc versions.
2006-02-07 Joel Sherrill <joel@OARcorp.com> 2006-02-07 Joel Sherrill <joel@OARcorp.com>
* startup/linkcmds: Add sections to fix C++ linking errors. * startup/linkcmds: Add sections to fix C++ linking errors.

View File

@@ -31,7 +31,7 @@ SECTIONS
text.start = . ; text.start = . ;
*(.entry) *(.entry)
*(.entry2) *(.entry2)
*(.text) *(.text*)
*(.rodata) *(.rodata)
*(.rodata1) *(.rodata1)
@@ -80,7 +80,7 @@ SECTIONS
*(.data) *(.data)
*(.data1) *(.data1)
PROVIDE (__SDATA_START__ = .); PROVIDE (__SDATA_START__ = .);
*(.sdata) *(.sdata*)
} > RAM } > RAM
PROVIDE (__EXCEPT_START__ = .); PROVIDE (__EXCEPT_START__ = .);
@@ -130,7 +130,7 @@ SECTIONS
.bss : .bss :
{ {
bss.start = .; bss.start = .;
*(.bss) *(.sbss) *(COMMON) *(.bss*) *(.sbss*) *(COMMON)
bss.end = ALIGN(4); bss.end = ALIGN(4);
} > RAM } > RAM
__SBSS_END__ = .; __SBSS_END__ = .;