mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-28 23:39:35 +08:00
* scripttempl/pe.sc: Add support for constructor priorities.
This commit is contained in:
@ -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>
|
2002-01-07 Marek Michalkiewicz <marekm@amelek.gda.pl>
|
||||||
|
|
||||||
* emulparams/avr1200.sh (DATA_START): Define as 0x60.
|
* emulparams/avr1200.sh (DATA_START): Define as 0x60.
|
||||||
|
@ -54,9 +54,9 @@ SECTIONS
|
|||||||
*(.glue_7t)
|
*(.glue_7t)
|
||||||
*(.glue_7)
|
*(.glue_7)
|
||||||
${CONSTRUCTING+ ___CTOR_LIST__ = .; __CTOR_LIST__ = . ;
|
${CONSTRUCTING+ ___CTOR_LIST__ = .; __CTOR_LIST__ = . ;
|
||||||
LONG (-1); *(.ctors); *(.ctor); LONG (0); }
|
LONG (-1); *(SORT(.ctors.*)); *(.ctors); *(.ctor); LONG (0); }
|
||||||
${CONSTRUCTING+ ___DTOR_LIST__ = .; __DTOR_LIST__ = . ;
|
${CONSTRUCTING+ ___DTOR_LIST__ = .; __DTOR_LIST__ = . ;
|
||||||
LONG (-1); *(.dtors); *(.dtor); LONG (0); }
|
LONG (-1); *(SORT(.dtors.*)); *(.dtors); *(.dtor); LONG (0); }
|
||||||
${RELOCATING+ *(.fini)}
|
${RELOCATING+ *(.fini)}
|
||||||
/* ??? Why is .gcc_exc here? */
|
/* ??? Why is .gcc_exc here? */
|
||||||
${RELOCATING+ *(.gcc_exc)}
|
${RELOCATING+ *(.gcc_exc)}
|
||||||
|
Reference in New Issue
Block a user