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]

[mep] update link maps


Committed.

	* mep/gmap_default.ld: Add linkonce sections for .vtext.
	* mep/default.ld: Likewise.
	* mep/fmax.ld: Likewise.
	* mep/simple.ld: Likewise.

Index: mep/default.ld
===================================================================
RCS file: /cvs/src/src/libgloss/mep/default.ld,v
retrieving revision 1.1
diff -p -U3 -r1.1 default.ld
--- mep/default.ld	21 Apr 2009 18:13:32 -0000	1.1
+++ mep/default.ld	29 Jul 2009 00:56:48 -0000
@@ -168,7 +168,7 @@ SECTIONS
   } >RAM2 /* CODE-section */ =0
   .vtext ALIGN(8)    :
   {
-    *(.vtext)
+    *(.vtext) *(.vtext.*) *(.gnu.linkonce.v.*)
   } >RAM2 /* CODE-section */
   .fini      :
   {
Index: mep/fmax.ld
===================================================================
RCS file: /cvs/src/src/libgloss/mep/fmax.ld,v
retrieving revision 1.2
diff -p -U3 -r1.2 fmax.ld
--- mep/fmax.ld	13 Jul 2007 17:32:21 -0000	1.2
+++ mep/fmax.ld	29 Jul 2009 00:56:48 -0000
@@ -162,7 +162,7 @@ SECTIONS
   } >RAM1 /* CODE-section */ =0
   .vtext ALIGN(8)    :
   {
-    *(.vtext)
+    *(.vtext) *(.vtext.*) *(.gnu.linkonce.v.*)
   } >RAM1 /* CODE-section */
   .fini      :
   {
Index: mep/gmap_default.ld
===================================================================
RCS file: /cvs/src/src/libgloss/mep/gmap_default.ld,v
retrieving revision 1.3
diff -p -U3 -r1.3 gmap_default.ld
--- mep/gmap_default.ld	21 Apr 2009 18:13:32 -0000	1.3
+++ mep/gmap_default.ld	29 Jul 2009 00:56:48 -0000
@@ -174,7 +174,7 @@ SECTIONS
   } >RAM /* CODE-section */ =0
   .vtext ALIGN(8)    :
   {
-    *(.vtext)
+    *(.vtext) *(.vtext.*) *(.gnu.linkonce.v.*)
   } >RAM /* CODE-section */
   .fini      :
   {
Index: mep/simple.ld
===================================================================
RCS file: /cvs/src/src/libgloss/mep/simple.ld,v
retrieving revision 1.2
diff -p -U3 -r1.2 simple.ld
--- mep/simple.ld	13 Jul 2007 17:32:21 -0000	1.2
+++ mep/simple.ld	29 Jul 2009 00:56:48 -0000
@@ -162,7 +162,7 @@ SECTIONS
   } >RAM1 /* CODE-section */ =0
   .vtext ALIGN(8)    :
   {
-    *(.vtext)
+    *(.vtext) *(.vtext.*) *(.gnu.linkonce.v.*)
   } >RAM1 /* CODE-section */
   .fini      :
   {


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