xref: /OK3568_Linux_fs/buildroot/package/runc/Config.in (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1config 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
11	  https://github.com/opencontainers/runc
12
13comment "runc needs a glibc or musl toolchain w/ threads"
14	depends on BR2_PACKAGE_HOST_GO_TARGET_ARCH_SUPPORTS && \
15		BR2_PACKAGE_HOST_GO_TARGET_CGO_LINKING_SUPPORTS
16	depends on !BR2_TOOLCHAIN_HAS_THREADS || BR2_TOOLCHAIN_USES_UCLIBC
17