mirror of
https://github.com/checkpoint-restore/criu.git
synced 2026-01-23 02:14:37 +00:00
19 lines
260 B
ArmAsm
19 lines
260 B
ArmAsm
OUTPUT_FORMAT("elf64-x86-64", "elf64-x86-64", "elf64-x86-64")
|
|
OUTPUT_ARCH(i386:x86-64)
|
|
|
|
SECTIONS
|
|
{
|
|
. = 0;
|
|
.text : {
|
|
*(.parasite.head.text)
|
|
*(.text)
|
|
. = ALIGN(8);
|
|
}
|
|
.data : {
|
|
*(.data)
|
|
*(.rodata)
|
|
*(.bss)
|
|
*(.parasite.stack)
|
|
. = ALIGN(8);
|
|
}
|
|
}
|