Retro68/binutils/ld/testsuite/ld-elf/overlay.t

12 lines
168 B
Perl
Raw Normal View History

2012-03-26 19:18:29 +00:00
SECTIONS
{
2017-04-10 11:32:00 +00:00
. = SIZEOF_HEADERS;
2012-03-26 19:18:29 +00:00
.text : { *(.text) }
OVERLAY 0x1000 : AT (0x4000)
{
.text1 {*(.text1)}
.text2 {*(.text2)}
2017-04-10 11:32:00 +00:00
}
2012-03-26 19:18:29 +00:00
/DISCARD/ : { *(.*) }
}