mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-27 06:17:47 +08:00
* pep.sc: Correct ctor/dtor sentinels for 64-bit targets.
This commit is contained in:
@ -1,3 +1,7 @@
|
|||||||
|
2007-07-24 Kai Tietz <kai.tietz@onevision.com>
|
||||||
|
|
||||||
|
* pep.sc: Correct ctor/dtor sentinels for 64-bit targets.
|
||||||
|
|
||||||
2007-07-21 Nick Clifton <nickc@redhat.com>
|
2007-07-21 Nick Clifton <nickc@redhat.com>
|
||||||
|
|
||||||
* sha1.h: Change to use version 3 of the GNU General Public
|
* sha1.h: Change to use version 3 of the GNU General Public
|
||||||
|
@ -64,9 +64,9 @@ SECTIONS
|
|||||||
*(.glue_7t)
|
*(.glue_7t)
|
||||||
*(.glue_7)
|
*(.glue_7)
|
||||||
${CONSTRUCTING+ ___CTOR_LIST__ = .; __CTOR_LIST__ = . ;
|
${CONSTRUCTING+ ___CTOR_LIST__ = .; __CTOR_LIST__ = . ;
|
||||||
LONG (-1);*(.ctors); *(.ctor); *(SORT(.ctors.*)); LONG (0); }
|
LONG (-1); LONG (-1);*(.ctors); *(.ctor); *(SORT(.ctors.*)); LONG (0); LONG (0); }
|
||||||
${CONSTRUCTING+ ___DTOR_LIST__ = .; __DTOR_LIST__ = . ;
|
${CONSTRUCTING+ ___DTOR_LIST__ = .; __DTOR_LIST__ = . ;
|
||||||
LONG (-1); *(.dtors); *(.dtor); *(SORT(.dtors.*)); LONG (0); }
|
LONG (-1); LONG (-1); *(.dtors); *(.dtor); *(SORT(.dtors.*)); LONG (0); 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