Support cross-compilers that add the underscore for a little longer.

This _will_ go away.
This commit is contained in:
marcus 2001-03-03 19:45:57 +00:00
parent 51668836b3
commit f693207ab0
1 changed files with 3 additions and 0 deletions

View File

@ -12,6 +12,7 @@ SECTIONS
*(.rodata)
*(.strings)
etext = . ;
_etext = . ; /* XXX */
} > ram
.tors :
{
@ -26,6 +27,7 @@ SECTIONS
{
*(.data)
edata = . ;
_edata = . ; /* XXX */
} > ram
.bss :
{
@ -33,6 +35,7 @@ SECTIONS
*(.bss)
*(COMMON)
end = . ;
_end = . ; /* XXX */
} > ram
.stack :
{