Config.in 501 B

123456789101112131415
  1. config BR2_PACKAGE_CRUN
  2. bool "crun"
  3. depends on BR2_USE_MMU # fork()
  4. depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # C11/stdatomic.h
  5. select BR2_PACKAGE_ARGP_STANDALONE if !BR2_TOOLCHAIN_USES_GLIBC
  6. select BR2_PACKAGE_YAJL # libocispec
  7. help
  8. crun is a fast and low-memory OCI Container Runtime in C.
  9. https://github.com/containers/crun
  10. comment "crun needs a glibc or musl toolchain, gcc >= 4.9"
  11. depends on BR2_USE_MMU
  12. depends on BR2_TOOLCHAIN_USES_UCLIBC || \
  13. !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9