This is the mail archive of the newlib@sourceware.org mailing list for the newlib project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[rx] add .sbss to linker scripts


Committed.

2009-11-25  DJ Delorie  <dj@redhat.com>

	* rx/rx.ld: Place .sbss properly.
	* rx/rx-sim.ld: Likewise.

Index: rx/rx-sim.ld
===================================================================
RCS file: /cvs/src/src/libgloss/rx/rx-sim.ld,v
retrieving revision 1.1
diff -p -U3 -r1.1 rx-sim.ld
--- rx/rx-sim.ld	26 Oct 2009 10:05:23 -0000	1.1
+++ rx/rx-sim.ld	25 Nov 2009 20:20:03 -0000
@@ -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)
Index: rx/rx.ld
===================================================================
RCS file: /cvs/src/src/libgloss/rx/rx.ld,v
retrieving revision 1.1
diff -p -U3 -r1.1 rx.ld
--- rx/rx.ld	26 Oct 2009 10:05:23 -0000	1.1
+++ rx/rx.ld	25 Nov 2009 20:20:03 -0000
@@ -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)


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]