Config.in 620 B

12345678910111213141516
  1. config BR2_PACKAGE_RUNC
  2. bool "runc"
  3. depends on BR2_PACKAGE_HOST_GO_TARGET_ARCH_SUPPORTS
  4. depends on BR2_PACKAGE_HOST_GO_TARGET_CGO_LINKING_SUPPORTS
  5. depends on BR2_TOOLCHAIN_HAS_THREADS
  6. depends on !BR2_TOOLCHAIN_USES_UCLIBC # no fexecve
  7. help
  8. runC is a CLI tool for spawning and running containers
  9. according to the OCP specification.
  10. https://github.com/opencontainers/runc
  11. comment "runc needs a glibc or musl toolchain w/ threads"
  12. depends on BR2_PACKAGE_HOST_GO_TARGET_ARCH_SUPPORTS && \
  13. BR2_PACKAGE_HOST_GO_TARGET_CGO_LINKING_SUPPORTS
  14. depends on !BR2_TOOLCHAIN_HAS_THREADS || BR2_TOOLCHAN_USES_UCLIBC