The following linker script snippet does not seem to account for the constructors of all my initialized data objects: __CTOR_LIST__ = .; LONG((__CTOR_END__ - __CTOR_LIST__) / 4 - 2) *(SORT(.ctors)) LONG(0) __CTOR_END__ = . ; __DTOR_LIST__ = .; LONG((__DTOR_END__ - __DTOR_LIST__) / 4 - 2) *(SORT(.dtors)) LONG(0) __DTOR_END__ = . ; Am I missing something? Do constructor calls wind up elsewhere under certain circumstances? Thanks, James Dabbs, TGA PS. Is there a better list/group for questions like this? Sorry for any OT posting..
Message
FW: GNUARM C++ Constructors
2004-05-21 by James Dabbs