binutils-gdb/ld/scripttempl/elfd30v.sc

184 lines
5.6 KiB
Python
Raw Normal View History

1997-12-10 04:37:00 +08:00
cat <<EOF
OUTPUT_FORMAT("${OUTPUT_FORMAT}")
OUTPUT_ARCH(${ARCH})
MEMORY
{
text : ORIGIN = ${TEXT_START_ADDR}, LENGTH = ${TEXT_SIZE}
data : ORIGIN = ${DATA_START_ADDR}, LENGTH = ${DATA_SIZE}
emem : ORIGIN = ${EMEM_START_ADDR}, LENGTH = ${EMEM_SIZE}
}
SECTIONS
{
1998-01-02 04:00:36 +08:00
/* Read-only sections, merged into text segment: */
${TEXT_DYNAMIC+${DYNAMIC}}
.hash ${RELOCATING-0} : { *(.hash) }
.dynsym ${RELOCATING-0} : { *(.dynsym) }
.dynstr ${RELOCATING-0} : { *(.dynstr) }
.gnu.version ${RELOCATING-0} : { *(.gnu.version) }
.gnu.version_d ${RELOCATING-0} : { *(.gnu.version_d) }
.gnu.version_r ${RELOCATING-0} : { *(.gnu.version_r) }
.rela.text ${RELOCATING-0} : { *(.rela.text) *(.rela.gnu.linkonce.t*) }
.rela.data ${RELOCATING-0} : { *(.rela.data) *(.rela.gnu.linkonce.d*) }
.rela.rodata ${RELOCATING-0} : { *(.rela.rodata) *(.rela.gnu.linkonce.r*) }
.rela.stext ${RELOCATING-0} : { *(.rela.stest) }
.rela.etext ${RELOCATING-0} : { *(.rela.etest) }
.rela.sdata ${RELOCATING-0} : { *(.rela.sdata) }
.rela.edata ${RELOCATING-0} : { *(.rela.edata) }
.rela.sbss ${RELOCATING-0} : { *(.rela.sbss) }
.rela.ebss ${RELOCATING-0} : { *(.rela.ebss) }
.rela.srodata ${RELOCATING-0} : { *(.rela.srodata) }
.rela.erodata ${RELOCATING-0} : { *(.rela.erodata) }
.rela.got ${RELOCATING-0} : { *(.rela.got) }
.rela.ctors ${RELOCATING-0} : { *(.rela.ctors) }
.rela.dtors ${RELOCATING-0} : { *(.rela.dtors) }
.rela.init ${RELOCATING-0} : { *(.rela.init) }
.rela.fini ${RELOCATING-0} : { *(.rela.fini) }
.rela.bss ${RELOCATING-0} : { *(.rela.bss) }
.rela.plt ${RELOCATING-0} : { *(.rela.plt) }
.rel.data ${RELOCATING-0} : { *(.rel.data) *(.rel.gnu.linkonce.d*) }
.rel.rodata ${RELOCATING-0} : { *(.rel.rodata) *(.rel.gnu.linkonce.r*) }
.rel.stext ${RELOCATING-0} : { *(.rel.stest) }
.rel.etext ${RELOCATING-0} : { *(.rel.etest) }
.rel.sdata ${RELOCATING-0} : { *(.rel.sdata) }
.rel.edata ${RELOCATING-0} : { *(.rel.edata) }
.rel.sbss ${RELOCATING-0} : { *(.rel.sbss) }
.rel.ebss ${RELOCATING-0} : { *(.rel.ebss) }
.rel.srodata ${RELOCATING-0} : { *(.rel.srodata) }
.rel.erodata ${RELOCATING-0} : { *(.rel.erodata) }
.rel.got ${RELOCATING-0} : { *(.rel.got) }
.rel.ctors ${RELOCATING-0} : { *(.rel.ctors) }
.rel.dtors ${RELOCATING-0} : { *(.rel.dtors) }
.rel.init ${RELOCATING-0} : { *(.rel.init) }
.rel.fini ${RELOCATING-0} : { *(.rel.fini) }
.rel.bss ${RELOCATING-0} : { *(.rel.bss) }
.rel.plt ${RELOCATING-0} : { *(.rel.plt) }
.init ${RELOCATING-0} : { *(.init) } =${NOP-0}
${DATA_PLT-${PLT}}
1997-12-10 04:37:00 +08:00
/* Internal text space */
1998-01-02 04:00:36 +08:00
.stext ${RELOCATING-0} : { *(.stext) } ${RELOCATING+ > text}
1997-12-10 04:37:00 +08:00
/* Internal text space or external memory */
.text :
{
*(.text)
*(.gnu.linkonce.t*)
*(.init)
*(.fini)
${RELOCATING+ _etext = . ; }
} ${RELOCATING+ > ${TEXT_MEMORY}}
/* Internal data space */
1998-01-02 04:00:36 +08:00
.srodata ${RELOCATING-0} : { *(.srodata) } ${RELOCATING+ > data}
.sdata ${RELOCATING-0} : { *(.sdata) } ${RELOCATING+ > data}
1997-12-10 04:37:00 +08:00
/* Internal data space or external memory */
.rodata ${RELOCATING-0} : { *(.rodata) } ${RELOCATING+ > ${DATA_MEMORY}}
1998-01-02 04:00:36 +08:00
/* C++ exception support. */
.eh_frame ${RELOCATING-0} : { *(.eh_frame) } ${RELOCATING+ > ${DATA_MEMORY}}
1997-12-10 04:37:00 +08:00
.ctors ${RELOCATING-0} :
{
1998-01-02 04:00:36 +08:00
${CONSTRUCTING+ __CTOR_LIST__ = .; }
1997-12-10 04:37:00 +08:00
*(.ctors)
1998-01-02 04:00:36 +08:00
${CONSTRUCTING+ __CTOR_END__ = .; }
1997-12-10 04:37:00 +08:00
} ${RELOCATING+ > ${DATA_MEMORY}}
.dtors ${RELOCATING-0} :
{
1998-01-02 04:00:36 +08:00
${CONSTRUCTING+ __DTOR_LIST__ = .; }
1997-12-10 04:37:00 +08:00
*(.dtors)
1998-01-02 04:00:36 +08:00
${CONSTRUCTING+ __DTOR_END__ = .; }
1997-12-10 04:37:00 +08:00
} ${RELOCATING+ > ${DATA_MEMORY}}
.data ${RELOCATING-0} :
{
*(.data)
*(.gnu.linkonce.d*)
${CONSTRUCTING+CONSTRUCTORS}
${RELOCATING+ _edata = . ; }
} ${RELOCATING+ > ${DATA_MEMORY}}
1997-12-10 07:35:35 +08:00
/* External memory */
.etext ${RELOCATING-0} :
{
${RELOCATING+ PROVIDE (__etext_start = .) ; }
*(.etext)
${RELOCATING+ PROVIDE (__etext_end = .) ; }
} ${RELOCATING+ > emem}
1998-01-02 04:00:36 +08:00
.erodata ${RELOCATING-0} : { *(.erodata) } ${RELOCATING+ > emem}
.edata ${RELOCATING-0} : { *(.edata) } ${RELOCATING+ > emem}
1997-12-10 07:35:35 +08:00
1997-12-10 04:37:00 +08:00
.sbss ${RELOCATING-0} :
{
${RELOCATING+ PROVIDE (__sbss_start = .) ; }
*(.sbss)
${RELOCATING+ PROVIDE (__sbss_end = .) ; }
} ${RELOCATING+ > data}
.ebss ${RELOCATING-0} :
{
${RELOCATING+ PROVIDE (__ebss_start = .) ; }
*(.ebss)
${RELOCATING+ PROVIDE (__ebss_end = .) ; }
} ${RELOCATING+ > data}
.bss ${RELOCATING-0} :
{
${RELOCATING+ PROVIDE (__bss_start = .) ; }
*(.bss)
*(COMMON)
${RELOCATING+ PROVIDE (__bss_end = .) ; }
${RELOCATING+ _end = . ; }
} ${RELOCATING+ > ${DATA_MEMORY}}
/* Stabs debugging sections. */
.stab 0 : { *(.stab) }
.stabstr 0 : { *(.stabstr) }
.stab.excl 0 : { *(.stab.excl) }
.stab.exclstr 0 : { *(.stab.exclstr) }
.stab.index 0 : { *(.stab.index) }
.stab.indexstr 0 : { *(.stab.indexstr) }
.comment 0 : { *(.comment) }
/* DWARF debug sections.
Symbols in the DWARF debugging sections are relative to the beginning
of the section so we begin them at 0. */
/* DWARF 1 */
.debug 0 : { *(.debug) }
.line 0 : { *(.line) }
/* GNU DWARF 1 extensions */
.debug_srcinfo 0 : { *(.debug_srcinfo) }
.debug_sfnames 0 : { *(.debug_sfnames) }
/* DWARF 1.1 and DWARF 2 */
.debug_aranges 0 : { *(.debug_aranges) }
.debug_pubnames 0 : { *(.debug_pubnames) }
/* DWARF 2 */
.debug_info 0 : { *(.debug_info) }
.debug_abbrev 0 : { *(.debug_abbrev) }
.debug_line 0 : { *(.debug_line) }
.debug_frame 0 : { *(.debug_frame) }
.debug_str 0 : { *(.debug_str) }
.debug_loc 0 : { *(.debug_loc) }
.debug_macinfo 0 : { *(.debug_macinfo) }
PROVIDE (__stack = ${STACK_START_ADDR});
}
EOF