mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2025-12-06 07:33:17 +00:00
2001-11-14 Joel Sherrill <joel@OARcorp.com>
* startup/linkcmds: Fixed syntax error in my previous addition of __init.
This commit is contained in:
@@ -1,3 +1,8 @@
|
|||||||
|
2001-11-14 Joel Sherrill <joel@OARcorp.com>
|
||||||
|
|
||||||
|
* startup/linkcmds: Fixed syntax error in my previous addition
|
||||||
|
of __init.
|
||||||
|
|
||||||
2001-11-13 Joel Sherrill <joel@OARcorp.com>
|
2001-11-13 Joel Sherrill <joel@OARcorp.com>
|
||||||
|
|
||||||
* startup/linkcmds: Added _init, and _fini symbols.
|
* startup/linkcmds: Added _init, and _fini symbols.
|
||||||
|
|||||||
@@ -58,8 +58,8 @@ SECTIONS
|
|||||||
|
|
||||||
*(.lit)
|
*(.lit)
|
||||||
*(.shdata)
|
*(.shdata)
|
||||||
_init = .; __init=.; *(.init)
|
_init = .; __init = .; *(.init)
|
||||||
_fini = .; __fini=.; *(.fini)
|
_fini = .; __fini = .; *(.fini)
|
||||||
_endtext = ALIGN(0x10);
|
_endtext = ALIGN(0x10);
|
||||||
text.end = .;
|
text.end = .;
|
||||||
} > RAM
|
} > RAM
|
||||||
|
|||||||
Reference in New Issue
Block a user