Config.in 872 B

12345678910111213141516171819202122232425
  1. config BR2_PACKAGE_LRZIP
  2. bool "lrzip"
  3. depends on BR2_USE_MMU # fork()
  4. depends on BR2_USE_WCHAR
  5. depends on BR2_TOOLCHAIN_HAS_THREADS
  6. depends on BR2_INSTALL_LIBSTDCPP
  7. select BR2_PACKAGE_ZLIB
  8. select BR2_PACKAGE_LZ4
  9. select BR2_PACKAGE_LZO
  10. select BR2_PACKAGE_BZIP2
  11. help
  12. A compression utility that excels at compressing large files
  13. (usually > 10-50 MB). Larger files and/or more free RAM means
  14. that the utility will be able to more effectively compress
  15. your files (ie: faster / smaller size), especially if the
  16. filesize(s) exceed 100 MB. You can either choose to optimise
  17. for speed (fast compression / decompression) or size,
  18. but not both.
  19. https://github.com/ckolivas/lrzip
  20. comment "lrzip needs a toolchain w/ wchar, threads, C++"
  21. depends on BR2_USE_MMU
  22. depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS || \
  23. !BR2_INSTALL_LIBSTDCPP