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]

V850 libgloss: Add .note.renesas section to simulator linker script


Hi Guys,

  I am checking in the patch below to add an explicit placement of the
  .note.renesas section in the V850's simulator targeted linker script.

Cheers
  Nick

libgloss/ChangeLog
2015-03-05  Nick Clifton  <nickc@redhat.com>

	* v850/sim.ld: Add a .note.renesas section.

Index: sim.ld
===================================================================
RCS file: /cvs/src/src/libgloss/v850/sim.ld,v
retrieving revision 1.1
diff -u -3 -p -r1.1 sim.ld
--- sim.ld      23 Jul 2010 17:52:37 -0000      1.1
+++ sim.ld      5 Mar 2015 11:24:25 -0000
@@ -158,6 +158,9 @@ SECTIONS
   }
   _end = . ;
   PROVIDE (end = .);
+
+  .note.renesas 0 : { KEEP(*(.note.renesas)) }  
+
   /* Stabs debugging sections.  */
   .stab 0              : { *(.stab) }
   .stabstr 0           : { *(.stabstr) }


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