Retro68/binutils/ld/testsuite/ld-scripts/empty-address-3b.t

12 lines
185 B
Perl
Raw Normal View History

2012-03-26 19:18:29 +00:00
SECTIONS
{
.text 0x00000000: { *(.text) }
.data ALIGN(0x1000) + (. & (0x1000 - 1)):
{
PROVIDE (__data_start = .);
*(.data)
}
__data_end = .;
/DISCARD/ : { *(.*) }
}