diff --git a/libgloss/ChangeLog b/libgloss/ChangeLog index 1184836d6..5dc06325f 100644 --- a/libgloss/ChangeLog +++ b/libgloss/ChangeLog @@ -1,3 +1,8 @@ +2009-11-25 DJ Delorie + + * rx/rx.ld: Place .sbss properly. + * rx/rx-sim.ld: Likewise. + 2009-10-26 DJ Delorie * configure.in: Add support for RX sub-directory. diff --git a/libgloss/rx/rx-sim.ld b/libgloss/rx/rx-sim.ld index b50a7a8ad..e029e0469 100644 --- a/libgloss/rx/rx-sim.ld +++ b/libgloss/rx/rx-sim.ld @@ -144,6 +144,7 @@ SECTIONS . = ALIGN(4); PROVIDE (__bssstart = .); *(.dynbss) + *(.sbss .sbss.*) *(.bss B B_2 B_1 .bss.* .gnu.linkonce.b.*) . = ALIGN(4); *(COMMON) diff --git a/libgloss/rx/rx.ld b/libgloss/rx/rx.ld index 30898abf4..234fdf247 100644 --- a/libgloss/rx/rx.ld +++ b/libgloss/rx/rx.ld @@ -148,6 +148,7 @@ SECTIONS . = ALIGN(4); PROVIDE (__bssstart = .); *(.dynbss) + *(.sbss .sbss.*) *(.bss B B_2 B_1 .bss.* .gnu.linkonce.b.*) . = ALIGN(4); *(COMMON)