* scripttempl/pe.sc: Add support for constructor priorities.

This commit is contained in:
DJ Delorie 2002-01-16 01:48:43 +00:00
parent 391c4305e8
commit 335c561080
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2002-01-15 DJ Delorie <dj@redhat.com>
* scripttempl/pe.sc: Add support for constructor priorities.
2002-01-07 Marek Michalkiewicz <marekm@amelek.gda.pl>
* emulparams/avr1200.sh (DATA_START): Define as 0x60.

View File

@ -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)}