Support for constructors.

This commit is contained in:
Steve Chamberlain 1993-06-17 21:49:48 +00:00
parent 565c93e92a
commit f216ecc54a

View file

@ -14,6 +14,17 @@ SECTIONS
*(.strings)
${RELOCATING+ _etext = . ; }
} ${RELOCATING+ > ram}
.tors : {
___ctors = . ;
*(.ctors)
___ctors_end = . ;
___dtors = . ;
*(.dtors)
___dtors_end = . ;
} ${RELOCATING+ > ram}
.data :
{
*(.data)