From: DJ Delorie Date: Wed, 16 Jan 2002 01:48:43 +0000 (+0000) Subject: * scripttempl/pe.sc: Add support for constructor priorities. X-Git-Tag: binutils-2_12-branchpoint~448 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=335c5610808be4ab30471250c6ed1f82cf97e009;p=external%2Fbinutils.git * scripttempl/pe.sc: Add support for constructor priorities. --- diff --git a/ld/ChangeLog b/ld/ChangeLog index 7fac653..6dd069d 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,7 @@ +2002-01-15 DJ Delorie + + * scripttempl/pe.sc: Add support for constructor priorities. + 2002-01-07 Marek Michalkiewicz * emulparams/avr1200.sh (DATA_START): Define as 0x60. diff --git a/ld/scripttempl/pe.sc b/ld/scripttempl/pe.sc index ce1a502..2f24757 100644 --- a/ld/scripttempl/pe.sc +++ b/ld/scripttempl/pe.sc @@ -54,9 +54,9 @@ SECTIONS *(.glue_7t) *(.glue_7) ${CONSTRUCTING+ ___CTOR_LIST__ = .; __CTOR_LIST__ = . ; - LONG (-1); *(.ctors); *(.ctor); LONG (0); } + LONG (-1); *(SORT(.ctors.*)); *(.ctors); *(.ctor); LONG (0); } ${CONSTRUCTING+ ___DTOR_LIST__ = .; __DTOR_LIST__ = . ; - LONG (-1); *(.dtors); *(.dtor); LONG (0); } + LONG (-1); *(SORT(.dtors.*)); *(.dtors); *(.dtor); LONG (0); } ${RELOCATING+ *(.fini)} /* ??? Why is .gcc_exc here? */ ${RELOCATING+ *(.gcc_exc)}