mirror of
https://github.com/checkpoint-restore/criu
synced 2025-08-22 01:51:51 +00:00
Two major highlights of this release: * LoongArch64 support * A lot of fixes and improvments form the Google backlog. The full changelog can be found here: https://criu.org/Download/criu/3.19. This marks the final release of the 3.x series. The upcoming version will be 4.0! Additionally, the naming pattern will be changed. Any ideas are welcome. Signed-off-by: Andrei Vagin <avagin@gmail.com>
32 lines
905 B
Makefile
32 lines
905 B
Makefile
#
|
|
# CRIU version.
|
|
CRIU_VERSION_MAJOR := 3
|
|
CRIU_VERSION_MINOR := 19
|
|
CRIU_VERSION_SUBLEVEL :=
|
|
CRIU_VERSION_EXTRA :=
|
|
CRIU_VERSION_NAME := Bronze Peacock
|
|
CRIU_VERSION := $(CRIU_VERSION_MAJOR)$(if $(CRIU_VERSION_MINOR),.$(CRIU_VERSION_MINOR))$(if $(CRIU_VERSION_SUBLEVEL),.$(CRIU_VERSION_SUBLEVEL))$(if $(CRIU_VERSION_EXTRA),.$(CRIU_VERSION_EXTRA))
|
|
|
|
export CRIU_VERSION_MAJOR CRIU_VERSION_MINOR CRIU_VERSION_SUBLEVEL
|
|
export CRIU_VERSION_EXTRA CRIU_VERSION_NAME CRIU_VERSION
|
|
|
|
#
|
|
# C library for CRIU.
|
|
CRIU_SO_VERSION_MAJOR := 2
|
|
CRIU_SO_VERSION_MINOR := 0
|
|
|
|
export CRIU_SO_VERSION_MAJOR CRIU_SO_VERSION_MINOR
|
|
|
|
#
|
|
# SOCCR library.
|
|
SOCCR_SO_VERSION_MAJOR := 1
|
|
SOCCR_SO_VERSION_MINOR := 0
|
|
|
|
export SOCCR_SO_VERSION_MAJOR SOCCR_SO_VERSION_MINOR
|
|
|
|
COMPEL_SO_VERSION_MAJOR := 1
|
|
COMPEL_SO_VERSION_MINOR := 0
|
|
COMPEL_SO_VERSION_SUBLEVEL := 0
|
|
|
|
export COMPEL_SO_VERSION_MAJOR COMPEL_SO_VERSION_MINOR COMPEL_SO_VERSION_SUBLEVEL
|