Commit b204b1e3 authored by Cyrill Gorcunov's avatar Cyrill Gorcunov Committed by Andrei Vagin

compel: criu -- Use sole syscalls object instead of std plugin

@std plugin known to fail when trying to execute,
investigating now. Meanwhile to not block tests
lets use syscalls object file.
Signed-off-by: 's avatarCyrill Gorcunov <gorcunov@openvz.org>
Signed-off-by: 's avatarPavel Emelyanov <xemul@virtuozzo.com>
Signed-off-by: 's avatarAndrei Vagin <avagin@virtuozzo.com>
parent 19fadee9
...@@ -13,7 +13,7 @@ restorer-obj-y += restorer.o ...@@ -13,7 +13,7 @@ restorer-obj-y += restorer.o
restorer-obj-y += ./$(ARCH_DIR)/restorer.o restorer-obj-y += ./$(ARCH_DIR)/restorer.o
ifeq ($(ARCH),x86) ifeq ($(ARCH),x86)
restorer-obj-e += ./compel/plugins/std.built-in.o restorer-obj-e += ./compel/arch/$(ARCH)/plugins/std/syscalls-64.o
ifeq ($(CONFIG_COMPAT),y) ifeq ($(CONFIG_COMPAT),y)
restorer-obj-y += ./$(ARCH_DIR)/call32.o restorer-obj-y += ./$(ARCH_DIR)/call32.o
...@@ -21,7 +21,7 @@ ifeq ($(ARCH),x86) ...@@ -21,7 +21,7 @@ ifeq ($(ARCH),x86)
endif endif
native-obj-y += ./$(ARCH_DIR)/parasite-head-64.o native-obj-y += ./$(ARCH_DIR)/parasite-head-64.o
native-obj-e += ./compel/plugins/std.built-in.o native-obj-e += ./compel/arch/$(ARCH)/plugins/std/syscalls-64.o
compat-obj-y += ./$(ARCH_DIR)/parasite-head-32.o compat-obj-y += ./$(ARCH_DIR)/parasite-head-32.o
compat-obj-e += ./compel/plugins/std-32.built-in.o compat-obj-e += ./compel/plugins/std-32.built-in.o
...@@ -32,8 +32,8 @@ ifeq ($(ARCH),x86) ...@@ -32,8 +32,8 @@ ifeq ($(ARCH),x86)
AFLAGS_parasite-head-32.d += -fno-pic -m32 -DCONFIG_X86_32 AFLAGS_parasite-head-32.d += -fno-pic -m32 -DCONFIG_X86_32
else else
native-obj-y += ./$(ARCH_DIR)/parasite-head.o native-obj-y += ./$(ARCH_DIR)/parasite-head.o
native-obj-e += ./compel/plugins/std.built-in.o native-obj-e += ./compel/arch/$(ARCH)/plugins/std/syscalls/syscalls.o
restorer-obj-e += ./compel/plugins/std.built-in.o restorer-obj-e += ./compel/arch/$(ARCH)/plugins/std/syscalls/syscalls.o
endif endif
target += $(parasite_target) restorer target += $(parasite_target) restorer
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment