From "Anita Kulkarni" <AnitaK@kpit.com>
authorDaniel Jacobowitz <drow@false.org>
Wed, 25 Sep 2002 17:06:09 +0000 (17:06 +0000)
committerDaniel Jacobowitz <drow@false.org>
Wed, 25 Sep 2002 17:06:09 +0000 (17:06 +0000)
        * scripttempl/sh.sc: Handle .eh_frame* and .gcc_exc*
        sections.

ld/ChangeLog
ld/scripttempl/sh.sc

index 6eff3797035dbafe73a11a27375bfe26e9d855de..8bec4095312af32a737d485467b7ca1baa36a60c 100644 (file)
@@ -1,3 +1,9 @@
+2002-09-25  Daniel Jacobowitz  <drow@mvista.com>
+
+       From "Anita Kulkarni" <AnitaK@kpit.com>
+       * scripttempl/sh.sc: Handle .eh_frame* and .gcc_exc*
+       sections.
+
 2002-09-25  Alan Modra  <amodra@bigpond.net.au>
 
        * genscripts.sh (SEGMENT_SIZE): Use MAXPAGESIZE before
index 036dd216db2f3cb837c39b880d17c22a4c5d04c2..e7f049fb0ec9a06b9d9fe93b58faf149c7bdeb8a 100644 (file)
@@ -29,6 +29,11 @@ SECTIONS
   .data :
   {
     *(.data)
+    ${RELOCATING+*(.gcc_exc*)}
+    ${RELOCATING+___EH_FRAME_BEGIN__ = . ;}
+    ${RELOCATING+*(.eh_fram*)}
+    ${RELOCATING+___EH_FRAME_END__ = . ;}
+    ${RELOCATING+LONG(0);}
     ${RELOCATING+ _edata = . ; }
   } ${RELOCATING+ > ram}
   .bss :
This page took 0.034223 seconds and 4 git commands to generate.