Config.in 811 B

123456789101112131415161718192021
  1. config BR2_PACKAGE_PYTHON_SLOB
  2. bool "python-slob"
  3. depends on !BR2_BINFMT_FLAT # python-pyicu -> icu
  4. depends on BR2_INSTALL_LIBSTDCPP # python-pyicu -> icu
  5. depends on BR2_HOST_GCC_AT_LEAST_4_8 # python-pyicu -> icu
  6. depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_8 # python-pyicu -> icu
  7. depends on BR2_PACKAGE_PYTHON3
  8. select BR2_PACKAGE_PYTHON_PYICU # runtime
  9. # although optional, it is used as default compression
  10. select BR2_PACKAGE_PYTHON3_XZ # runtime
  11. help
  12. slob.py is a reference implementation of slob format reader
  13. and writer.
  14. https://github.com/itkach/slob
  15. comment "python-slob needs a toolchain w/ C++, gcc >= 4.8, host gcc >= 4.8"
  16. depends on BR2_PACKAGE_PYTHON3 && !BR2_BINFMT_FLAT
  17. depends on !BR2_INSTALL_LIBSTDCPP || \
  18. !BR2_HOST_GCC_AT_LEAST_4_8 || \
  19. !BR2_TOOLCHAIN_GCC_AT_LEAST_4_8