mirror of
https://github.com/checkpoint-restore/criu.git
synced 2026-07-19 01:26:22 +00:00
19 lines
222 B
ArmAsm
19 lines
222 B
ArmAsm
OUTPUT_FORMAT("binary")
|
|
OUTPUT_ARCH(i386:x86-64)
|
|
|
|
SECTIONS
|
|
{
|
|
. = 0;
|
|
.text : {
|
|
*(.parasite.head.text)
|
|
*(.text)
|
|
. = ALIGN(8);
|
|
}
|
|
.data : {
|
|
*(.data)
|
|
*(.rodata)
|
|
*(.bss)
|
|
*(.parasite.stack)
|
|
. = ALIGN(8);
|
|
}
|
|
}
|