2002-06-06 Michael Snyder <msnyder@redhat.com>

* gdb.base/d10v.ld: Merge in several years worth of
        default linker script changes.
This commit is contained in:
Michael Snyder 2002-06-06 19:12:39 +00:00
parent c15b0d21ff
commit 99a8512bd1
2 changed files with 115 additions and 75 deletions

View File

@ -1,5 +1,7 @@
2002-06-06 Michael Snyder <msnyder@redhat.com> 2002-06-06 Michael Snyder <msnyder@redhat.com>
* gdb.base/d10v.ld: Merge in several years worth of
default linker script changes.
* gdb.base/long_long.exp: Add check for sizeof (long double). * gdb.base/long_long.exp: Add check for sizeof (long double).
2002-06-06 Michal Ludvig <mludvig@suse.cz> 2002-06-06 Michal Ludvig <mludvig@suse.cz>

View File

@ -2,54 +2,57 @@ OUTPUT_FORMAT("elf32-d10v", "elf32-d10v",
"elf32-d10v") "elf32-d10v")
OUTPUT_ARCH(d10v) OUTPUT_ARCH(d10v)
ENTRY(_start) ENTRY(_start)
SEARCH_DIR(/usr/cygnus/d10v-961230/H-sparc-sun-sunos4.1//lib);
/* Do we need any of these for elf? /* Do we need any of these for elf?
__DYNAMIC = 0; */ __DYNAMIC = 0; */
MEMORY
{
UNIFIED : org = 0, len = 0x1000000
INSN : org = 0x1014000, len = 0x40000
DATA : org = 0x2000004, len = 0x7FFC
STACK : org = 0x200BFFE, len = 4
}
SECTIONS SECTIONS
{ {
/* Overlay sections: */ /* Overlay sections: */
.ovly0 0x01010000 : AT (0x12010000) { foo.o(.text) } .ovly0 0x1001000 : AT (0x8000) { foo.o(.text) }
.ovly1 0x01010000 : AT (0x12011000) { bar.o(.text) } .ovly1 0x1001000 : AT (0x9000) { bar.o(.text) }
.ovly2 0x01011000 : AT (0x12012000) { baz.o(.text) } .ovly2 0x1002000 : AT (0xa000) { baz.o(.text) }
.ovly3 0x01011000 : AT (0x12013000) { grbx.o(.text) } .ovly3 0x1002000 : AT (0xb000) { grbx.o(.text) }
.data00 0x00001000 : AT (0x12014000) { foo.o(.data) } .data00 0x2001000 : AT (0xc000) { foo.o(.data) }
.data01 0x00001000 : AT (0x12015000) { bar.o(.data) } .data01 0x2001000 : AT (0xd000) { bar.o(.data) }
.data02 0x00002000 : AT (0x12016000) { baz.o(.data) } .data02 0x2002000 : AT (0xe000) { baz.o(.data) }
.data03 0x00002000 : AT (0x12017000) { grbx.o(.data) } .data03 0x2002000 : AT (0xf000) { grbx.o(.data) }
/* Read-only sections, merged into data segment: */
. = 0x00000004; .text :
.interp : { *(.interp) } {
.hash : { *(.hash) } KEEP (*(.init))
.dynsym : { *(.dynsym) } KEEP (*(.init.*))
.dynstr : { *(.dynstr) } KEEP (*(.fini))
.rel.text : { *(.rel.text) } KEEP (*(.fini.*))
.rela.text : { *(.rela.text) } *(.text)
.rel.data : { *(.rel.data) } *(.text.*)
.rela.data : { *(.rela.data) } /* .gnu.warning sections are handled specially by elf32.em. */
.rel.rodata : { *(.rel.rodata) } *(.gnu.warning)
.rela.rodata : { *(.rela.rodata) } *(.gnu.linkonce.t*)
.rel.got : { *(.rel.got) } _etext = .;
.rela.got : { *(.rela.got) } PROVIDE (etext = .);
.rel.ctors : { *(.rel.ctors) } } >INSN =0
.rela.ctors : { *(.rela.ctors) } .rodata : {
.rel.dtors : { *(.rel.dtors) } *(.rodata)
.rela.dtors : { *(.rela.dtors) } *(.gnu.linkonce.r*)
.rel.init : { *(.rel.init) } *(.rodata.*)
.rela.init : { *(.rela.init) } } >DATA
.rel.fini : { *(.rel.fini) } .rodata1 : {
.rela.fini : { *(.rela.fini) } *(.rodata1)
.rel.bss : { *(.rel.bss) } *(.rodata1.*)
.rela.bss : { *(.rela.bss) } } >DATA
.rel.plt : { *(.rel.plt) }
.rela.plt : { *(.rela.plt) }
.plt : { *(.plt) }
.rodata : { *(.rodata) *(.gnu.linkonce.r*) }
.rodata1 : { *(.rodata1) }
/* Adjust the address for the data segment. */
. = ALIGN(4);
.data : .data :
{ {
*(.data) *(.data)
*(.data.*)
*(.gnu.linkonce.d*) *(.gnu.linkonce.d*)
_ovly_table = .; _ovly_table = .;
LONG(ABSOLUTE(ADDR(.ovly0))); LONG(ABSOLUTE(ADDR(.ovly0)));
@ -87,34 +90,66 @@ SECTIONS
_novlys = .; _novlys = .;
LONG((_novlys - _ovly_table) / 16); LONG((_novlys - _ovly_table) / 16);
CONSTRUCTORS CONSTRUCTORS
} } >DATA
.data1 : { *(.data1) } .data1 : {
*(.data1)
*(.data1.*)
} >DATA
.ctors : .ctors :
{ {
*(.ctors) /* gcc uses crtbegin.o to find the start of
} the constructors, so we make sure it is
first. Because this is a wildcard, it
doesn't matter if the user does not
actually link against crtbegin.o; the
linker won't look for a file to match a
wildcard. The wildcard also means that it
doesn't matter which directory crtbegin.o
is in. */
KEEP (*crtbegin.o(.ctors))
/* We don't want to include the .ctor section from
from the crtend.o file until after the sorted ctors.
The .ctor section from the crtend file contains the
end of ctors marker and it must be last */
KEEP (*(EXCLUDE_FILE (*crtend.o) .ctors))
KEEP (*(SORT(.ctors.*)))
KEEP (*(.ctors))
} >DATA
.dtors : .dtors :
{ {
*(.dtors) KEEP (*crtbegin.o(.dtors))
} KEEP (*(EXCLUDE_FILE (*crtend.o) .dtors))
.got : { *(.got.plt) *(.got) } KEEP (*(SORT(.dtors.*)))
.dynamic : { *(.dynamic) } KEEP (*(.dtors))
} >DATA
/* We want the small data sections together, so single-instruction offsets /* We want the small data sections together, so single-instruction offsets
can access them all, and initialized data all before uninitialized, so can access them all, and initialized data all before uninitialized, so
we can shorten the on-disk segment size. */ we can shorten the on-disk segment size. */
.sdata : { *(.sdata) } .sdata : {
*(.sdata)
*(.sdata.*)
} >DATA
_edata = .; _edata = .;
PROVIDE (edata = .); PROVIDE (edata = .);
__bss_start = .; __bss_start = .;
.sbss : { *(.sbss) *(.scommon) } .sbss : { *(.sbss) *(.scommon) } >DATA
.bss : .bss :
{ {
*(.dynbss) *(.dynbss)
*(.dynbss.*)
*(.bss) *(.bss)
*(.bss.*)
*(COMMON) *(COMMON)
} } >DATA
_end = . ; _end = . ;
PROVIDE (end = .); PROVIDE (end = .);
.stack : { _stack = .; *(.stack) } >STACK
/* Stabs debugging sections. */ /* Stabs debugging sections. */
.stab 0 : { *(.stab) } .stab 0 : { *(.stab) }
.stabstr 0 : { *(.stabstr) } .stabstr 0 : { *(.stabstr) }
@ -122,34 +157,37 @@ SECTIONS
.stab.exclstr 0 : { *(.stab.exclstr) } .stab.exclstr 0 : { *(.stab.exclstr) }
.stab.index 0 : { *(.stab.index) } .stab.index 0 : { *(.stab.index) }
.stab.indexstr 0 : { *(.stab.indexstr) } .stab.indexstr 0 : { *(.stab.indexstr) }
.comment 0 : { *(.comment) } .comment 0 : { *(.comment) }
/* DWARF debug sections. /* DWARF debug sections.
Symbols in the .debug DWARF section are relative to the beginning of the Symbols in the DWARF debugging sections are relative to the beginning
section so we begin .debug at 0. It's not clear yet what needs to happen of the section so we begin them at 0. */
for the others. */
/* DWARF 1 */
.debug 0 : { *(.debug) } .debug 0 : { *(.debug) }
.debug_info 0 : { *(.debug_info) } .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) *(.gnu.linkonce.wi.*) }
.debug_abbrev 0 : { *(.debug_abbrev) } .debug_abbrev 0 : { *(.debug_abbrev) }
.debug_line 0 : { *(.debug_line) } .debug_line 0 : { *(.debug_line) }
.debug_frame 0 : { *(.debug_frame) } .debug_frame 0 : { *(.debug_frame) }
.debug_srcinfo 0 : { *(.debug_srcinfo) } .debug_str 0 : { *(.debug_str) }
.debug_aranges 0 : { *(.debug_aranges) } .debug_loc 0 : { *(.debug_loc) }
.debug_pubnames 0 : { *(.debug_pubnames) } .debug_macinfo 0 : { *(.debug_macinfo) }
.debug_sfnames 0 : { *(.debug_sfnames) }
.line 0 : { *(.line) } /* SGI/MIPS DWARF 2 extensions */
/* These must appear regardless of . */ .debug_weaknames 0 : { *(.debug_weaknames) }
/* Hmmm, there's got to be a better way. This sets the stack to the .debug_funcnames 0 : { *(.debug_funcnames) }
top of the simulator memory (i.e. top of 64K data space). */ .debug_typenames 0 : { *(.debug_typenames) }
.stack 0x00007FFE : { _stack = .; *(.stack) } .debug_varnames 0 : { *(.debug_varnames) }
.text 0x1000000 :
{
*(.init)
*(.fini)
*(.text)
/* .gnu.warning sections are handled specially by elf32.em. */
*(.gnu.warning)
*(.gnu.linkonce.t*)
} =0
_etext = .;
PROVIDE (etext = .);
} }