* scripttempl/elfm68hc11.sc (CTOR, DTOR): Put constructor and
destructor in rom. * scripttempl/elfm68hc12.sc (CTOR, DTOR): Likewise.
This commit is contained in:
parent
373f2697a8
commit
ecfdd20cce
3 changed files with 10 additions and 4 deletions
|
@ -1,3 +1,9 @@
|
|||
2001-11-25 Stephane Carrez <Stephane.Carrez@worldnet.fr>
|
||||
|
||||
* scripttempl/elfm68hc11.sc (CTOR, DTOR): Put constructor and
|
||||
destructor in rom.
|
||||
* scripttempl/elfm68hc12.sc (CTOR, DTOR): Likewise.
|
||||
|
||||
2001-11-22 H.J. Lu <hjl@gnu.org>
|
||||
|
||||
* Makefile.in: Regenerated with automake based on automake
|
||||
|
|
|
@ -40,7 +40,7 @@ CTOR=".ctors ${CONSTRUCTING-0} :
|
|||
|
||||
${CONSTRUCTING+${CTOR_END}}
|
||||
${CONSTRUCTING+ PROVIDE(__CTOR_END__ = .); }
|
||||
} ${RELOCATING+ > ${DATA_MEMORY}}"
|
||||
} ${RELOCATING+ > ${TEXT_MEMORY}}"
|
||||
|
||||
DTOR=" .dtors ${CONSTRUCTING-0} :
|
||||
{
|
||||
|
@ -52,7 +52,7 @@ DTOR=" .dtors ${CONSTRUCTING-0} :
|
|||
KEEP (*(SORT(.dtors.*)))
|
||||
KEEP (*(.dtors)) */
|
||||
${CONSTRUCTING+ PROVIDE(__DTOR_END__ = .); }
|
||||
} ${RELOCATING+ > ${DATA_MEMORY}}"
|
||||
} ${RELOCATING+ > ${TEXT_MEMORY}}"
|
||||
|
||||
|
||||
VECTORS="
|
||||
|
|
|
@ -40,7 +40,7 @@ CTOR=".ctors ${CONSTRUCTING-0} :
|
|||
|
||||
${CONSTRUCTING+${CTOR_END}}
|
||||
${CONSTRUCTING+ PROVIDE(__CTOR_END__ = .); }
|
||||
} ${RELOCATING+ > ${DATA_MEMORY}}"
|
||||
} ${RELOCATING+ > ${TEXT_MEMORY}}"
|
||||
|
||||
DTOR=" .dtors ${CONSTRUCTING-0} :
|
||||
{
|
||||
|
@ -52,7 +52,7 @@ DTOR=" .dtors ${CONSTRUCTING-0} :
|
|||
KEEP (*(SORT(.dtors.*)))
|
||||
KEEP (*(.dtors)) */
|
||||
${CONSTRUCTING+ PROVIDE(__DTOR_END__ = .); }
|
||||
} ${RELOCATING+ > ${DATA_MEMORY}}"
|
||||
} ${RELOCATING+ > ${TEXT_MEMORY}}"
|
||||
|
||||
|
||||
VECTORS="
|
||||
|
|
Loading…
Reference in a new issue