aboutsummaryrefslogtreecommitdiff
path: root/libgloss
diff options
context:
space:
mode:
authorDJ Delorie <dj@redhat.com>2009-11-25 20:20:25 +0000
committerDJ Delorie <dj@redhat.com>2009-11-25 20:20:25 +0000
commitb2225216e99b691493d4b6d60f5c696e918af0ca (patch)
treea87334bed67b81350382f529559f3b2e430d1d32 /libgloss
parent83e8d44112f4ff1cd0e1fa1e331590a752a10f67 (diff)
downloadnewlib-b2225216e99b691493d4b6d60f5c696e918af0ca.zip
newlib-b2225216e99b691493d4b6d60f5c696e918af0ca.tar.gz
newlib-b2225216e99b691493d4b6d60f5c696e918af0ca.tar.bz2
* rx/rx.ld: Place .sbss properly.
* rx/rx-sim.ld: Likewise.
Diffstat (limited to 'libgloss')
-rw-r--r--libgloss/ChangeLog5
-rw-r--r--libgloss/rx/rx-sim.ld1
-rw-r--r--libgloss/rx/rx.ld1
3 files changed, 7 insertions, 0 deletions
diff --git a/libgloss/ChangeLog b/libgloss/ChangeLog
index 1184836..5dc0632 100644
--- a/libgloss/ChangeLog
+++ b/libgloss/ChangeLog
@@ -1,3 +1,8 @@
+2009-11-25 DJ Delorie <dj@redhat.com>
+
+ * rx/rx.ld: Place .sbss properly.
+ * rx/rx-sim.ld: Likewise.
+
2009-10-26 DJ Delorie <dj@redhat.com>
* configure.in: Add support for RX sub-directory.
diff --git a/libgloss/rx/rx-sim.ld b/libgloss/rx/rx-sim.ld
index b50a7a8..e029e04 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 30898ab..234fdf2 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)