URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Go to most recent revision |
Only display areas with differences |
Details |
Blame |
View Log
Rev 156 |
Rev 816 |
TORS="
|
TORS="
|
___ctors = . ;
|
___ctors = . ;
|
*(.ctors)
|
*(.ctors)
|
___ctors_end = . ;
|
___ctors_end = . ;
|
___dtors = . ;
|
___dtors = . ;
|
*(.dtors)
|
*(.dtors)
|
___dtors_end = . ;"
|
___dtors_end = . ;"
|
|
|
cat <
|
cat <
|
OUTPUT_FORMAT("${OUTPUT_FORMAT}")
|
OUTPUT_FORMAT("${OUTPUT_FORMAT}")
|
OUTPUT_ARCH(${ARCH})
|
OUTPUT_ARCH(${ARCH})
|
|
|
/* Code and data, both larger than 64k */
|
/* Code and data, both larger than 64k */
|
|
|
SECTIONS
|
SECTIONS
|
{
|
{
|
.text ${RELOCATING+ 0x10000} :
|
.text ${RELOCATING+ 0x10000} :
|
{
|
{
|
*(.text)
|
*(.text)
|
${RELOCATING+ _etext = . ; }
|
${RELOCATING+ _etext = . ; }
|
}
|
}
|
|
|
.data ${RELOCATING+ 0x20000} :
|
.data ${RELOCATING+ 0x20000} :
|
{
|
{
|
*(.data)
|
*(.data)
|
${RELOCATING+ _edata = . ; }
|
${RELOCATING+ _edata = . ; }
|
}
|
}
|
|
|
.rdata ${RELOCATING+ . } :
|
.rdata ${RELOCATING+ . } :
|
{
|
{
|
*(.rdata);
|
*(.rdata);
|
*(.strings)
|
*(.strings)
|
|
|
${CONSTRUCTING+${TORS}}
|
${CONSTRUCTING+${TORS}}
|
}
|
}
|
|
|
.bss ${RELOCATING+ . } :
|
.bss ${RELOCATING+ . } :
|
{
|
{
|
${RELOCATING+ __start_bss = . ; }
|
${RELOCATING+ __start_bss = . ; }
|
*(.bss)
|
*(.bss)
|
*(COMMON)
|
*(COMMON)
|
${RELOCATING+ _end = . ; }
|
${RELOCATING+ _end = . ; }
|
}
|
}
|
|
|
.stack ${RELOCATING+ 0x2fff0} :
|
.stack ${RELOCATING+ 0x2fff0} :
|
{
|
{
|
${RELOCATING+ _stack = . ; }
|
${RELOCATING+ _stack = . ; }
|
*(.stack)
|
*(.stack)
|
}
|
}
|
|
|
.stab 0 ${RELOCATING+(NOLOAD)} :
|
.stab 0 ${RELOCATING+(NOLOAD)} :
|
{
|
{
|
[ .stab ]
|
[ .stab ]
|
}
|
}
|
|
|
.stabstr 0 ${RELOCATING+(NOLOAD)} :
|
.stabstr 0 ${RELOCATING+(NOLOAD)} :
|
{
|
{
|
[ .stabstr ]
|
[ .stabstr ]
|
}
|
}
|
}
|
}
|
EOF
|
EOF
|
|
|
© copyright 1999-2024
OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.