* scripttempl/armpe.sc: Add constructor support.
authorSteve Chamberlain <sac@cygnus>
Thu, 15 Jun 1995 15:48:35 +0000 (15:48 +0000)
committerSteve Chamberlain <sac@cygnus>
Thu, 15 Jun 1995 15:48:35 +0000 (15:48 +0000)
ld/scripttempl/armpe.sc

index 56a945d3db036a874ec11588c87fd138f152328f..ea4e89c88ab3dfd6b489bc9262fce2c6e054cf45 100644 (file)
@@ -11,7 +11,6 @@ ENTRY(_mainCRTStartup)
 
 SECTIONS
 {
-
   .text ${RELOCATING+ 0x401000} : 
        {
            ${RELOCATING+ *(.init);}
@@ -23,7 +22,9 @@ SECTIONS
 
   .rdata BLOCK(0x1000) :
   {                                    
-    *(.rdata)
+       *(.rdata)
+       ${CONSTRUCTING+ __CTOR_LIST__ = .; LONG (-1); *(.ctors); LONG (0); }
+       ${CONSTRUCTING+ __DTOR_LIST__ = .; LONG (-1); *(.dtors); LONG (0); }
     ;
   }
   .data BLOCK(0x1000) : {
@@ -85,15 +86,16 @@ SECTIONS
        end = . ;
        }
 
-  .stab  0 ${RELOCATING+(NOLOAD)} : 
+  .stab  0 :
   {
     [ .stab ]
   }
 
-  .stabstr  0 ${RELOCATING+(NOLOAD)} :
+  .stabstr  0 :
   {
     [ .stabstr ]
   }
-       stack =  0x800000 ;
+
+${RELOCATING+ stack =  0x800000 ;}
 }
 EOF