* scripttempl/pe.sc: Add support for constructor priorities.
This commit is contained in:
parent
391c4305e8
commit
335c561080
@ -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.
|
||||
|
@ -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)}
|
||||
|
Loading…
Reference in New Issue
Block a user