1config BR2_PACKAGE_PYTHON_GREENLET_ARCH_SUPPORTS 2 bool 3 default y if BR2_arm || BR2_armeb 4 default y if BR2_aarch64 5 default y if BR2_m68k 6 default y if BR2_mips || BR2_mipsel || BR2_mips64 || BR2_mips64el 7 default y if BR2_powerpc || BR2_powerpc64 || BR2_powerpc64le 8 default y if BR2_riscv 9 default y if BR2_sparc || BR2_sparc64 10 default y if BR2_i386 || BR2_x86_64 11 12config BR2_PACKAGE_PYTHON_GREENLET 13 bool "python-greenlet" 14 depends on BR2_PACKAGE_PYTHON_GREENLET_ARCH_SUPPORTS 15 depends on BR2_INSTALL_LIBSTDCPP 16 help 17 Lightweight in-process concurrent programming. 18 19 https://github.com/python-greenlet/greenlet 20 21comment "python-greenlet needs a toolchain w/ C++" 22 depends on BR2_PACKAGE_PYTHON_GREENLET_ARCH_SUPPORTS 23 depends on !BR2_INSTALL_LIBSTDCPP 24