MochaPayload/source/ios_mcp/link.ld

26 lines
339 B
Plaintext
Raw Normal View History

2020-04-28 15:07:52 +02:00
OUTPUT_ARCH(arm)
SECTIONS
{
.text 0x05116000 : {
_text_start = .;
*(.text*)
*(.rodata*)
}
_text_end = .;
.bss 0x050BD000 : {
_bss_start = .;
*(.bss*);
}
_bss_end = .;
/DISCARD/ : {
*(*);
}
}
ASSERT((SIZEOF(.text)) < 0x3F00, "text section is too big");
ASSERT((SIZEOF(.bss)) < 0x3000, "bss section is too big");