mirror of
https://github.com/checkpoint-restore/criu.git
synced 2026-07-20 01:54:28 +00:00
This cleans the assembly code, removing no more needed trick with the
register 2 (TOC pointer). As a consequence, the __export_restore_task_trampoline()
and __export_unmap_trampoline() are no more needed.
Thus, the changes introduced by the commit de9df91002 ("Per architecture restorer
trampolines") in cr-restore.c are no more used but are not impacting
runtime code anyway.
Signed-off-by: Laurent Dufour <ldufour@linux.vnet.ibm.com>
Signed-off-by: Cyrill Gorcunov <gorcunov@openvz.org>
Signed-off-by: Pavel Emelyanov <xemul@parallels.com>
17 lines
294 B
Makefile
17 lines
294 B
Makefile
CFLAGS += -iquote pie/piegen
|
|
|
|
obj-y += main.o
|
|
ifneq ($(filter i386 ia32 x86_64, $(ARCH)),)
|
|
obj-y += elf-x86-32.o
|
|
obj-y += elf-x86-64.o
|
|
endif
|
|
ifeq ($(SRCARCH),ppc64)
|
|
obj-y += elf-ppc64.o
|
|
endif
|
|
|
|
cleanup-y += $(obj)/piegen
|
|
cleanup-y += $(obj)/*.o
|
|
|
|
ifneq ($(MAKECMDGOALS),clean)
|
|
incdeps := y
|
|
endif
|