1
0
mirror of https://github.com/containers/youki synced 2026-03-07 06:31:36 +01:00
youki/crates/libcontainer
Yashodhan 2e37d1ef0b
feat(checkpoint): add CRIU version check (>= 3.15.0) (#3438)
Add check_criu_version() to container_criu module which queries
the CRIU version via RPC and verifies it meets the minimum
requirement. The minimum version (3.15.0) matches crun's
LIBCRIU_MIN_VERSION. Call check_criu_version() in Container::checkpoint()
after the container running state check.

Signed-off-by: nayuta-ai <nayuta723@gmail.com>
2026-03-04 10:24:40 +05:30
..
src feat(checkpoint): add CRIU version check (>= 3.15.0) (#3438) 2026-03-04 10:24:40 +05:30
tests Add option to spawn processes as siblings (#3012) 2024-12-09 20:35:14 +09:00
Cargo.toml Release for v0.6.0 (#3291) 2026-02-25 21:20:42 +09:00
README.md podman rootless with dbus native (#2370) 2023-10-05 21:08:06 +09:00

libcontainer

Building with musl

In order to build with musl you must first remove the libseccomp dependency as it will reference shared libraries (libseccomp) which cannot be built with musl.

Do this by using adding flags to Cargo. Use the --no-default-features flag followed by -F and whatever features you intend to build with such as v2 as defined in Cargo.toml under features section.

Next you will also need the +nightly flags when building with rustup and cargo.

# Add rustup +nightly musl to toolchain
rustup +nightly target add $(uname -m)-unknown-linux-musl

# Build rustup +nightly stdlib with musl
rustup +nightly toolchain install nightly-$(uname -m)-unknown-linux-musl

# Build musl standard library
cargo +nightly build -Zbuild-std --target $(uname -m)-unknown-linux-musl --no-default-features -F v2

cargo +nightly build --target $(uname -m)-unknown-linux-musl --no-default-features -F v2