From: Steve Chamberlain Date: Thu, 15 Jun 1995 15:48:35 +0000 (+0000) Subject: * scripttempl/armpe.sc: Add constructor support. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=8a239b623503a391d5b49e1fbdcfd69a3d852f2e;p=binutils-gdb.git * scripttempl/armpe.sc: Add constructor support. --- diff --git a/ld/scripttempl/armpe.sc b/ld/scripttempl/armpe.sc index 56a945d3db0..ea4e89c88ab 100644 --- a/ld/scripttempl/armpe.sc +++ b/ld/scripttempl/armpe.sc @@ -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