* ld-scripts/cross2.t: Support any type of text/data sections, not

just the canonical ones.
This commit is contained in:
DJ Delorie 2001-03-06 23:03:28 +00:00
parent 4f3c3dbb37
commit b536df83ee
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2001-03-06 DJ Delorie <dj@redhat.com>
* ld-scripts/cross2.t: Support any type of text/data sections, not
just the canonical ones.
2001-02-14 H.J. Lu <hjl@gnu.org>
* ld-bootstrap/bootstrap.exp: Rebuild tmpdir/ld2 with tmpdir/ld3

View File

@ -1,6 +1,6 @@
NOCROSSREFS ( .text .data )
SECTIONS
{
.text : { *(.text) *(.pr) }
.data : { *(.data) *(.sdata) *(.rw) *(.tc0) *(.tc) }
.text : { *(.text) *(.text.*) *(.pr) }
.data : { *(.data) *(.data.*) *(.sdata) *(.rw) *(.tc0) *(.tc) }
}