Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/checkpoint-restore/criu.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKir Kolyshkin <kir@openvz.org>2016-12-17 14:22:16 +0300
committerAndrei Vagin <avagin@virtuozzo.com>2017-03-15 00:09:57 +0300
commitad2e322204d91af104eccbb1f0e6ea24afa6a5d3 (patch)
treeb5653f1a65e4c01f64e419fe50d0795f86df9868 /compel/Makefile
parent7ad7ee4d6cd8fa3b5fc8057f85f0e3983cf6e97e (diff)
compel cli: add libs command, use it
Add "compel libs" that prints the list of libraries needed to link the parasite loader. Make compel/test/ and criu/ to use it. travis-ci: success for More polishing for compel cli Signed-off-by: Kir Kolyshkin <kir@openvz.org> Acked-by: Cyrill Gorcunov <gorcunov@openvz.org> Signed-off-by: Pavel Emelyanov <xemul@virtuozzo.com> Signed-off-by: Andrei Vagin <avagin@virtuozzo.com>
Diffstat (limited to 'compel/Makefile')
-rw-r--r--compel/Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/compel/Makefile b/compel/Makefile
index 8920281fb..204e19f0c 100644
--- a/compel/Makefile
+++ b/compel/Makefile
@@ -4,6 +4,9 @@ COMPEL_SO_VERSION := $(COMPEL_SO_VERSION_MAJOR)$(if $(COMPEL_SO_VERSION_MINOR),.
COMPEL_SO_VERSION_CODE := $(shell expr $(COMPEL_SO_VERSION_MAJOR) \* 65536 \+ $(COMPEL_SO_VERSION_MINOR) \* 256 \+ $(COMPEL_SO_VERSION_SUBLEVEL))
ccflags-y += -DINCLUDEDIR=\"$(INCLUDEDIR)\"
ccflags-y += -DLIBEXECDIR=\"$(LIBEXECDIR)\"
+ccflags-y += -DLIBDIR=\"$(LIBDIR)\"
+ccflags-y += -DSTATIC_LIB=\"$(LIBCOMPEL_A)\"
+ccflags-y += -DDYN_LIB=\"$(LIBCOMPEL_SO).$(COMPEL_SO_VERSION_MAJOR)\"
ccflags-y += -iquote compel/arch/$(ARCH)/src/lib/include
ccflags-y += -iquote compel/include
ccflags-y += -fno-strict-aliasing