blob: e637994943ef7dd62980659cf6bbfc573b043272 [file] [log] [blame]
SECTIONS {
.text :
{
text_start = .;
tmpdir/sizeof.o
text_end = .;
}
.data :
{
data_start = .;
. = . + SIZEOF(.text);
data_end = .;
}
.bss :
{
. = 8;
*(.bss)
}
}
sizeof_text = SIZEOF(.text);
sizeof_data = SIZEOF(.data);