* scriptempl/pe.sc: Put numbered .ctors.* after .ctors
with default priority. Likewise for dtors.
This commit is contained in:
parent
fdd72f950f
commit
3c17e4f7ec
2 changed files with 7 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
|||
2004-04-18 Danny Smith <dannysmith@users.sourceforge.net>
|
||||
|
||||
* scriptempl/pe.sc: Put numbered .ctors.* after .ctors
|
||||
with default priority. Likewise for dtors.
|
||||
|
||||
2004-04-11 Thiemo Seufer <seufer@csv.ica.uni-stuttgart.de>
|
||||
|
||||
* configure.host: Remove mips*-dec-bsd* target.
|
||||
|
|
|
@ -58,9 +58,9 @@ SECTIONS
|
|||
*(.glue_7t)
|
||||
*(.glue_7)
|
||||
${CONSTRUCTING+ ___CTOR_LIST__ = .; __CTOR_LIST__ = . ;
|
||||
LONG (-1); *(SORT(.ctors.*)); *(.ctors); *(.ctor); LONG (0); }
|
||||
LONG (-1);*(.ctors); *(.ctor); *(SORT(.ctors.*)); LONG (0); }
|
||||
${CONSTRUCTING+ ___DTOR_LIST__ = .; __DTOR_LIST__ = . ;
|
||||
LONG (-1); *(SORT(.dtors.*)); *(.dtors); *(.dtor); LONG (0); }
|
||||
LONG (-1); *(.dtors); *(.dtor); *(SORT(.dtors.*)); LONG (0); }
|
||||
${RELOCATING+ *(.fini)}
|
||||
/* ??? Why is .gcc_exc here? */
|
||||
${RELOCATING+ *(.gcc_exc)}
|
||||
|
|
Loading…
Add table
Reference in a new issue