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

13 lines
200 B
Perl
Raw Permalink Normal View History

2012-03-26 21:18:29 +02:00
SECTIONS
{
2022-10-27 20:45:45 +02:00
.text 0x00000000: { *(.text .pr) }
2012-03-26 21:18:29 +02:00
.data ALIGN(0x1000) + (. & (0x1000 - 1)):
{
__data_start = .;
*(.data)
}
__data_end = .;
2022-10-27 20:45:45 +02:00
.bss : { *(.bss) }
2012-03-26 21:18:29 +02:00
/DISCARD/ : { *(.*) }
}