1
0
mirror of https://github.com/containers/youki synced 2026-01-13 19:31:36 +01:00
youki/crates/libcontainer
dependabot[bot] ae19047cea
chore(deps): bump libc from 0.2.179 to 0.2.180 in the patch group
Bumps the patch group with 1 update: [libc](https://github.com/rust-lang/libc).


Updates `libc` from 0.2.179 to 0.2.180
- [Release notes](https://github.com/rust-lang/libc/releases)
- [Changelog](https://github.com/rust-lang/libc/blob/0.2.180/CHANGELOG.md)
- [Commits](https://github.com/rust-lang/libc/compare/0.2.179...0.2.180)

---
updated-dependencies:
- dependency-name: libc
  dependency-version: 0.2.180
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2026-01-09 01:00:59 +00:00
..
src refactor(hooks): pass OCI-compliant state to lifecycle hooks (#3346) 2026-01-05 21:11:18 +09:00
tests Add option to spawn processes as siblings (#3012) 2024-12-09 20:35:14 +09:00
Cargo.toml chore(deps): bump libc from 0.2.179 to 0.2.180 in the patch group 2026-01-09 01:00:59 +00: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