2
0
mirror of https://sourceware.org/git/binutils-gdb.git synced 2025-03-07 13:39:43 +08:00
binutils-gdb/ld/testsuite/ld-scripts/sizeof.t
1999-05-03 07:29:11 +00:00

18 lines
243 B
Perl

SECTIONS {
.text :
{
text_start = .;
tmpdir/sizeof.o
text_end = .;
}
.data :
{
data_start = .;
. = . + SIZEOF(.text);
data_end = .;
}
}
sizeof_text = SIZEOF(.text);
sizeof_data = SIZEOF(.data);